mirror of
https://github.com/gwm17/catima.git
synced 2024-11-22 18:28:51 -05:00
13 lines
327 B
C++
13 lines
327 B
C++
#ifndef GWM_INTEGRATORS_H
|
|
#define GWM_INTEGRATORS_H
|
|
|
|
#include "catima/catima.h"
|
|
|
|
namespace catima {
|
|
|
|
double integrate_energyloss(Projectile& proj, const Material& mat, const Config& c=default_config);
|
|
|
|
double reverse_integrate_energyloss(Projectile& proj, const Material& mat, const Config& c=default_config);
|
|
}
|
|
|
|
#endif |