Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /// \file hadronic/Hadr01/Hadr01.cc 27 /// \brief Main program of the hadronic/Hadr01 28 // 29 // 30 // 31 // ------------------------------------------- 32 // GEANT4 Hadr01 33 // 34 // Application demonstrating Geant4 hadronic 35 // beam interaction with a target 36 // 37 // Authors: A.Bagulya, I.Gudowska, V.Ivanchen 38 // 39 // Modified: 40 // 29.12.2009 V.Ivanchenko introduced access 41 // 42 // ------------------------------------------- 43 // 44 // 45 //....oooOO0OOooo........oooOO0OOooo........oo 46 //....oooOO0OOooo........oooOO0OOooo........oo 47 48 #include "DetectorConstruction.hh" 49 #include "EventAction.hh" 50 #include "PhysicsList.hh" 51 #include "PrimaryGeneratorAction.hh" 52 #include "RunAction.hh" 53 #include "StackingAction.hh" 54 55 #include "G4HadronicParameters.hh" 56 #include "G4PhysListFactory.hh" 57 #include "G4RunManagerFactory.hh" 58 #include "G4UIExecutive.hh" 59 #include "G4UImanager.hh" 60 #include "G4VModularPhysicsList.hh" 61 #include "G4VisExecutive.hh" 62 63 //....oooOO0OOooo........oooOO0OOooo........oo 64 65 int main(int argc, char** argv) 66 { 67 // detect interactive mode (if no arguments) 68 G4UIExecutive* ui = nullptr; 69 if (argc == 1) { 70 ui = new G4UIExecutive(argc, argv); 71 } 72 73 // Construct a serial run manager 74 auto* runManager = G4RunManagerFactory::Crea 75 76 // set mandatory initialization classes 77 runManager->SetUserInitialization(new Detect 78 79 G4PhysListFactory factory; 80 G4VModularPhysicsList* phys = nullptr; 81 G4String physName = ""; 82 83 // Physics List name defined via 3nd argumen 84 if (argc >= 3) { 85 physName = argv[2]; 86 } 87 88 // Physics List name defined via environment 89 if ("" == physName) { 90 char* path = std::getenv("PHYSLIST"); 91 if (nullptr != path) { 92 physName = G4String(path); 93 } 94 } 95 96 G4cout << "PhysicsList: " << physName << G4e 97 98 // reference PhysicsList via its name 99 if ("" != physName && factory.IsReferencePhy 100 phys = factory.GetReferencePhysList(physNa 101 } 102 103 // local Physics List 104 if (nullptr == phys) { 105 phys = new PhysicsList(); 106 } 107 108 // optional change of overlap cascade/string 109 if (argc >= 5) { 110 auto param = G4HadronicParameters::Instanc 111 G4double e1 = CLHEP::GeV * std::strtod(arg 112 G4double e2 = CLHEP::GeV * std::strtod(arg 113 G4cout << "### Bertini/FTFP limits: e1(GeV 114 << " e2(GeV)=" << e2 / CLHEP::GeV 115 param->SetMinEnergyTransitionFTF_Cascade(e 116 param->SetMaxEnergyTransitionFTF_Cascade(e 117 } 118 119 if (argc >= 6) { 120 auto param = G4HadronicParameters::Instanc 121 param->SetEnableNUDEX(true); 122 } 123 124 // define physics 125 runManager->SetUserInitialization(phys); 126 runManager->SetUserAction(new PrimaryGenerat 127 128 // set user action classes 129 runManager->SetUserAction(new RunAction()); 130 runManager->SetUserAction(new EventAction()) 131 runManager->SetUserAction(new StackingAction 132 133 // initialize visualization 134 G4VisManager* visManager = nullptr; 135 136 // get the pointer to the User Interface man 137 G4UImanager* UImanager = G4UImanager::GetUIp 138 139 if (ui) { 140 // interactive mode 141 visManager = new G4VisExecutive; 142 visManager->Initialize(); 143 ui->SessionStart(); 144 delete ui; 145 } 146 else { 147 // batch mode 148 G4String command = "/control/execute "; 149 G4String fileName = argv[1]; 150 UImanager->ApplyCommand(command + fileName 151 } 152 153 // job termination 154 delete visManager; 155 delete runManager; 156 } 157 158 //....oooOO0OOooo........oooOO0OOooo........oo 159