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