Garfield++ v1r0
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/*
4Simple function for Polinomials of Legendre
5Implemented only l = 0,1,2,3,4,5,6
6
7Copyright (c) 2003 I. B. Smirnov
8
9Permission to use, copy, modify, distribute and sell this file
10and its documentation for any purpose is hereby granted without fee,
11provided that the above copyright notice, this permission notice,
12and notices about any modifications of the original text
13appear in all copies and in supporting documentation.
14It is provided "as is" without express or implied warranty.
15*/
16
17double polleg(int l, double x);
18
19#endif
double polleg(int l, double x)
Definition: PolLeg.cpp:14