Import Geant4 11.0.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2021-06-25 16:12:29 +02:00
parent c968e26a39
commit 6399a014b6
4200 changed files with 207479 additions and 237366 deletions
@@ -62,7 +62,6 @@
// Process options
#include "G4LossTableManager.hh"
#include "G4EmProcessOptions.hh"
// Physics List Helper
#include "G4PhysicsListHelper.hh"
@@ -85,18 +84,9 @@
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
TSPhysicsList* TSPhysicsList::fgInstance = 0;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
TSPhysicsList* TSPhysicsList::Instance() { return fgInstance; }
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
TSPhysicsList::TSPhysicsList()
: fDefaultCutValue(1. * CLHEP::mm)
{
fgInstance = this;
defaultCutValue = 1. * CLHEP::mm;
fConstructors.push_back(new G4EmStandardPhysics_option4);
fConstructors.push_back(new G4DecayPhysics);
@@ -113,8 +103,6 @@ TSPhysicsList::~TSPhysicsList()
{
for(auto ite : fConstructors)
delete ite;
fgInstance = 0;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -174,13 +162,3 @@ void TSPhysicsList::ConstructProcess()
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void TSPhysicsList::SetCuts()
{
SetCutValue(fDefaultCutValue, "e-");
SetCutValue(fDefaultCutValue, "e+");
SetCutValue(fDefaultCutValue, "gamma");
SetCutValue(fDefaultCutValue, "proton");
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......