Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // 26 // 27 /// \file medical/GammaTherapy/GammaTherapy.cc << 28 /// \brief Main program of the medical/GammaTh << 29 // << 30 // << 31 // ------------------------------------------- 27 // ------------------------------------------------------------- 32 // GEANT4 ibrem 28 // GEANT4 ibrem 33 // 29 // 34 // History: based on object model of 30 // History: based on object model of 35 // 2nd December 1995, G.Cosmo 31 // 2nd December 1995, G.Cosmo 36 // ---------- ibrem --------------------- 32 // ---------- ibrem ---------------------------- 37 // 33 // 38 // Modified: 05.04.01 Vladimir Ivanchenko new 34 // Modified: 05.04.01 Vladimir Ivanchenko new design of ibrem 39 // 35 // 40 // ------------------------------------------- 36 // ------------------------------------------------------------- 41 37 42 //....oooOO0OOooo........oooOO0OOooo........oo 38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 43 //....oooOO0OOooo........oooOO0OOooo........oo 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 44 40 45 #include "ActionInitialization.hh" << 41 #include "G4RunManager.hh" 46 #include "DetectorConstruction.hh" << 47 #include "PhysicsList.hh" << 48 << 49 #include "G4RunManagerFactory.hh" << 50 #include "G4Types.hh" << 51 #include "G4UIExecutive.hh" << 52 #include "G4UImanager.hh" 42 #include "G4UImanager.hh" >> 43 #include "G4UIterminal.hh" >> 44 #include "G4UItcsh.hh" >> 45 #include "Randomize.hh" >> 46 53 #include "G4VisExecutive.hh" 47 #include "G4VisExecutive.hh" 54 48 >> 49 #include "DetectorConstruction.hh" >> 50 #include "PhysicsList.hh" >> 51 #include "PrimaryGeneratorAction.hh" >> 52 #include "EventAction.hh" >> 53 #include "TrackingAction.hh" >> 54 #include "RunAction.hh" >> 55 #include "Histo.hh" >> 56 55 //....oooOO0OOooo........oooOO0OOooo........oo 57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 56 //....oooOO0OOooo........oooOO0OOooo........oo 58 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 57 59 58 int main(int argc, char** argv) << 60 int main(int argc,char** argv) { 59 { << 61 60 // detect interactive mode (if no arguments) << 62 G4int verbose = 1; 61 G4UIExecutive* ui = nullptr; << 63 //choose the Random engine 62 if (argc == 1) ui = new G4UIExecutive(argc, << 64 CLHEP::HepRandom::setTheEngine(new CLHEP::RanecuEngine); >> 65 >> 66 // G4String fName = argv[1]; >> 67 // (Histo::GetInstance)->LoadParameters(fName); 63 68 64 // Construct the default run manager 69 // Construct the default run manager 65 auto* runManager = G4RunManagerFactory::Crea << 70 G4RunManager * runManager = new G4RunManager(); 66 G4int nThreads = std::min(G4Threading::G4Get << 67 if (argc == 3) nThreads = G4UIcommand::Conve << 68 runManager->SetNumberOfThreads(nThreads); << 69 G4cout << "===== GammaTherapy is started wit << 70 << " threads =====" << G4endl; << 71 71 72 // set mandatory initialization classes 72 // set mandatory initialization classes 73 DetectorConstruction* det = new DetectorCons 73 DetectorConstruction* det = new DetectorConstruction(); 74 runManager->SetUserInitialization(det); 74 runManager->SetUserInitialization(det); 75 75 76 runManager->SetUserInitialization(new Physic 76 runManager->SetUserInitialization(new PhysicsList()); 77 77 78 // set user action classes << 78 // visualization manager 79 runManager->SetUserInitialization(new Action << 79 G4VisManager* visManager = 0; 80 80 81 // initialize visualization << 81 // set user action classes 82 G4VisManager* visManager = nullptr; << 82 runManager->SetUserAction(new PrimaryGeneratorAction(det)); >> 83 runManager->SetUserAction(new RunAction()); >> 84 runManager->SetUserAction(new EventAction()); >> 85 runManager->SetUserAction(new TrackingAction()); 83 86 84 // get the pointer to the User Interface man 87 // get the pointer to the User Interface manager 85 G4UImanager* UImanager = G4UImanager::GetUIp << 88 G4UImanager* UI = G4UImanager::GetUIpointer(); >> 89 if(1 < verbose) UI->ListCommands("/testem/"); 86 90 87 if (ui) { << 91 if (argc==1) // Define UI terminal for interactive mode 88 // interactive mode << 92 { 89 visManager = new G4VisExecutive; << 93 visManager = new G4VisExecutive(); 90 visManager->Initialize(); << 94 visManager->Initialize(); 91 UImanager->ApplyCommand("/control/execute << 95 G4UIsession * session; 92 ui->SessionStart(); << 96 #ifdef G4UI_USE_TCSH 93 delete ui; << 97 session = new G4UIterminal(new G4UItcsh); 94 } << 98 #else 95 else { << 99 session = new G4UIterminal(); 96 // batch mode << 100 #endif 97 G4String command = "/control/execute "; << 101 session->SessionStart(); 98 G4String fileName = argv[1]; << 102 delete session; 99 UImanager->ApplyCommand(command + fileName << 103 } 100 } << 104 else if (argc>1) // Batch mode with 1 or more files >> 105 { >> 106 if(verbose >0) G4cout << "UI interface is started" << G4endl; >> 107 G4String command = "/control/execute "; >> 108 G4String fileName = argv[1]; >> 109 UI->ApplyCommand(command+fileName); >> 110 } 101 111 102 // job termination 112 // job termination 103 delete visManager; 113 delete visManager; 104 delete runManager; 114 delete runManager; >> 115 >> 116 return 0; 105 } 117 } 106 118 107 //....oooOO0OOooo........oooOO0OOooo........oo << 119 108 120