Garfield++ 4.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
PolLeg.h
Go to the documentation of this file.
1#ifndef POLLEG_H
2#define POLLEG_H
3
4/*
5Copyright (c) 2003 I. B. Smirnov
6
7Permission to use, copy, modify, distribute and sell this file
8and its documentation for any purpose is hereby granted without fee,
9provided that the above copyright notice, this permission notice,
10and notices about any modifications of the original text
11appear in all copies and in supporting documentation.
12It is provided "as is" without express or implied warranty.
13*/
14
15namespace Heed {
16
17/// Simple function for Legendre polynomials.
18/// Implemented only l = 0, 1, 2, 3, 4, 5, 6.
19double polleg(const int l, const double x);
20}
21
22#endif
Definition: BGMesh.cpp:6
double polleg(const int l, const double x)
Definition: PolLeg.cpp:17