blob: 1004e30fd4680dd4f16460d63020f9aa5c81c60f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef SNO_CHARGE_H
#define SNO_CHARGE_H
void init_charge(void);
double pq(double q, int n);
double get_log_pmiss(int n);
double spe_pol2exp(double q);
void free_charge(void);
#endif
|