blob: 008f835f13ada81a9970eba9949071cca4ee8e60 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef PROTON_H
#define PROTON_H
#include <stddef.h> /* for size_t */
double proton_get_range(double T, double rho);
double proton_get_dEdx_rad(double T, double rho);
double proton_get_dEdx(double T, double rho);
#endif
|