Import Geant4 11.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2024-12-06 11:11:40 +01:00
parent e58e650b32
commit 32390e802b
1984 changed files with 98713 additions and 83996 deletions
@@ -39,36 +39,30 @@
// Author: Joanna Weng - 9.11.04
//---------------------------------------------------------------
#ifndef GFlashParticleBounds_h
#define GFlashParticleBounds_h
#define GFlashParticleBounds_h
#include "G4ParticleDefinition.hh"
#include "G4ParticleDefinition.hh"
class GFlashParticleBounds
class GFlashParticleBounds
{
public: // with description
GFlashParticleBounds();
~GFlashParticleBounds();
// methods to get/set ELE/Gamma max & min energy bounds
G4double GetMinEneToParametrise(G4ParticleDefinition &particleType);
G4double GetMaxEneToParametrise(G4ParticleDefinition &particleType);
G4double GetEneToKill(G4ParticleDefinition &particleType) ;
void SetMinEneToParametrise(G4ParticleDefinition &particleType,
G4double enemin);
void SetMaxEneToParametrise(G4ParticleDefinition &particleType,
G4double enemax);
void SetEneToKill(G4ParticleDefinition &particleType,
G4double enekill);
G4double GetMinEneToParametrise(G4ParticleDefinition& particleType);
G4double GetMaxEneToParametrise(G4ParticleDefinition& particleType);
G4double GetEneToKill(G4ParticleDefinition& particleType);
void SetMinEneToParametrise(G4ParticleDefinition& particleType, G4double enemin);
void SetMaxEneToParametrise(G4ParticleDefinition& particleType, G4double enemax);
void SetEneToKill(G4ParticleDefinition& particleType, G4double enekill);
private:
// electron and positron
G4double EMinEneToParametrise;
G4double EMaxEneToParametrise;
G4double EEneToKill;
};
#endif