blob: f3a38d899fe86b4fc8e9afb44bb9bfee185d281c (
plain)
1
2
3
4
5
6
7
8
|
#ifndef SCATTERING_H
#define SCATTERING_H
void init_interpolation(void);
double get_probability(double beta, double cos_theta, double theta0);
void free_interpolation(void);
#endif
|