IAP GITLAB

Skip to content
Snippets Groups Projects

Sibyll

Merged Ralf Ulrich requested to merge sibyll into master
1 file
+ 19
0
Compare changes
  • Side-by-side
  • Inline
@@ -333,6 +333,25 @@ double s_rndm_(int&) {
return rmng() / (double)rmng.max();
}
class ProcessDecay : public corsika::process::BaseProcess<ProcessDecay> {
public:
ProcessDecay() {}
void Init() {}
template <typename Particle>
double MinStepLength(Particle& p) const {
}
template <typename Particle, typename Stack>
void DoDiscrete(Particle& p, Stack& s) const {
}
template <typename Particle, typename Trajectory, typename Stack>
EProcessReturn DoContinuous(Particle&, Trajectory&, Stack&) const {
return EProcessReturn::eOk;
}
};
int main() {
CoordinateSystem& rootCS = RootCoordinateSystem::GetInstance().GetRootCS();
Loading