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 field/field02/field02.cc << 27 // $Id: field02.cc,v 1.9 2006/06/29 17:17:02 gunter Exp $ 28 /// \brief Main program of the field/field02 e << 28 // GEANT4 tag $Name: geant4-08-03-patch-01 $ 29 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo << 30 // 31 //....oooOO0OOooo........oooOO0OOooo........oo << 31 // -------------------------------------------------------------- 32 << 32 // GEANT 4 - TestF02 33 #include "G4Types.hh" << 33 // 34 << 34 // -------------------------------------------------------------- 35 #include "G4RunManagerFactory.hh" << 35 // Comments 36 #include "F02SteppingVerbose.hh" << 36 // 37 << 37 // 38 #include "F02ActionInitialization.hh" << 38 // -------------------------------------------------------------- 39 #include "F02DetectorConstruction.hh" << 40 #include "FTFP_BERT.hh" << 41 39 42 #include "G4StepLimiterPhysics.hh" << 40 #include "G4RunManager.hh" 43 #include "G4UIExecutive.hh" << 44 #include "G4UImanager.hh" 41 #include "G4UImanager.hh" 45 #include "G4VisExecutive.hh" << 42 #include "G4UIterminal.hh" 46 #include "Randomize.hh" 43 #include "Randomize.hh" 47 44 48 //....oooOO0OOooo........oooOO0OOooo........oo << 45 #ifdef G4VIS_USE >> 46 #include "G4VisExecutive.hh" >> 47 #endif >> 48 >> 49 #include "F02DetectorConstruction.hh" >> 50 #include "F02ElectricFieldSetup.hh" >> 51 #include "F02PhysicsList.hh" >> 52 #include "F02PrimaryGeneratorAction.hh" >> 53 #include "F02RunAction.hh" >> 54 #include "F02EventAction.hh" >> 55 #include "F02SteppingAction.hh" >> 56 #include "F02SteppingVerbose.hh" 49 57 50 int main(int argc, char** argv) << 58 int main(int argc,char** argv) 51 { 59 { 52 // Instantiate G4UIExecutive if there are no << 53 // << 54 G4UIExecutive* ui = nullptr; << 55 if (argc == 1) { << 56 ui = new G4UIExecutive(argc, argv); << 57 } << 58 60 59 // Setting the application-specific Stepping << 61 //choose the Random engine 60 // << 62 61 auto verbosity = new F02SteppingVerbose; << 63 CLHEP::HepRandom::setTheEngine(new CLHEP::RanecuEngine); >> 64 >> 65 //my Verbose output class 62 66 >> 67 G4VSteppingVerbose::SetInstance(new F02SteppingVerbose); >> 68 63 // Construct the default run manager 69 // Construct the default run manager 64 // << 65 auto runManager = G4RunManagerFactory::Creat << 66 70 >> 71 G4RunManager * runManager = new G4RunManager; >> 72 >> 73 // Construct the helper class to manage the electric field & >> 74 // the parameters for the propagation of particles in it. >> 75 >> 76 F02ElectricFieldSetup* field = new F02ElectricFieldSetup() ; >> 77 67 // Set mandatory initialization classes 78 // Set mandatory initialization classes 68 // << 79 69 // Detector construction << 80 F02DetectorConstruction* detector; 70 auto detector = new F02DetectorConstruction( << 81 detector = new F02DetectorConstruction; 71 runManager->SetUserInitialization(detector); 82 runManager->SetUserInitialization(detector); 72 // Physics list << 83 runManager->SetUserInitialization(new F02PhysicsList(detector)); 73 G4VModularPhysicsList* physicsList = new FTF << 84 74 physicsList->RegisterPhysics(new G4StepLimit << 85 #ifdef G4VIS_USE 75 runManager->SetUserInitialization(physicsLis << 76 // User action initialization << 77 runManager->SetUserInitialization(new F02Act << 78 86 79 // Initialize G4 kernel << 87 // visualization manager 80 // << 81 runManager->Initialize(); << 82 88 83 // Initialize visualization << 84 // << 85 G4VisManager* visManager = new G4VisExecutiv 89 G4VisManager* visManager = new G4VisExecutive; 86 // G4VisExecutive can take a verbosity argum << 87 // G4VisManager* visManager = new G4VisExecu << 88 visManager->Initialize(); 90 visManager->Initialize(); 89 91 90 // Get the pointer to the User Interface man << 92 #endif 91 // << 93 92 G4UImanager* UImanager = G4UImanager::GetUIp << 94 // Set user action classes 93 << 95 94 if (!ui) // batch mode << 96 runManager->SetUserAction(new F02PrimaryGeneratorAction(detector)); 95 { << 97 96 G4String command = "/control/execute "; << 98 F02RunAction* runAction = new F02RunAction; 97 G4String fileName = argv[1]; << 99 98 UImanager->ApplyCommand(command + fileName << 100 runManager->SetUserAction(runAction); >> 101 >> 102 F02EventAction* eventAction = new F02EventAction(runAction); >> 103 >> 104 runManager->SetUserAction(eventAction); >> 105 >> 106 F02SteppingAction* steppingAction = new F02SteppingAction(); >> 107 runManager->SetUserAction(steppingAction); >> 108 >> 109 // Initialize G4 kernel, physics tables ... >> 110 >> 111 runManager->Initialize(); >> 112 >> 113 // get the pointer to the User Interface manager >> 114 >> 115 G4UImanager* UI = G4UImanager::GetUIpointer(); >> 116 >> 117 if (argc==1) // Define UI terminal for interactive mode >> 118 { >> 119 G4UIsession * session = new G4UIterminal; >> 120 session->SessionStart(); >> 121 delete session; 99 } 122 } 100 else { // interactive mode : define UI sess << 123 else // Batch mode 101 UImanager->ApplyCommand("/control/execute << 124 { 102 if (ui->IsGUI()) UImanager->ApplyCommand(" << 125 G4String command = "/control/execute "; 103 ui->SessionStart(); << 126 G4String fileName = argv[1]; 104 delete ui; << 127 UI->ApplyCommand(command+fileName); 105 } 128 } >> 129 >> 130 // job termination 106 131 107 // Job termination << 132 #ifdef G4VIS_USE 108 // Free the store: user actions, physics_lis << 109 // owned and deleted by the << 110 // be deleted in the main() << 111 << 112 delete verbosity; << 113 delete visManager; 133 delete visManager; >> 134 #endif >> 135 delete field; 114 delete runManager; 136 delete runManager; 115 137 116 return 0; 138 return 0; 117 } 139 } 118 140 119 //....oooOO0OOooo........oooOO0OOooo........oo << 120 141