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 // 27 /// \file field/field02/field02.cc 28 /// \brief Main program of the field/field02 e 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 33 #include "G4Types.hh" 34 35 #include "G4RunManagerFactory.hh" 36 #include "F02SteppingVerbose.hh" 37 38 #include "F02ActionInitialization.hh" 39 #include "F02DetectorConstruction.hh" 40 #include "FTFP_BERT.hh" 41 42 #include "G4StepLimiterPhysics.hh" 43 #include "G4UIExecutive.hh" 44 #include "G4UImanager.hh" 45 #include "G4VisExecutive.hh" 46 #include "Randomize.hh" 47 48 //....oooOO0OOooo........oooOO0OOooo........oo 49 50 int main(int argc, char** argv) 51 { 52 // Instantiate G4UIExecutive if there are no 53 // 54 G4UIExecutive* ui = nullptr; 55 if (argc == 1) { 56 ui = new G4UIExecutive(argc, argv); 57 } 58 59 // Setting the application-specific Stepping 60 // 61 auto verbosity = new F02SteppingVerbose; 62 63 // Construct the default run manager 64 // 65 auto runManager = G4RunManagerFactory::Creat 66 67 // Set mandatory initialization classes 68 // 69 // Detector construction 70 auto detector = new F02DetectorConstruction( 71 runManager->SetUserInitialization(detector); 72 // Physics list 73 G4VModularPhysicsList* physicsList = new FTF 74 physicsList->RegisterPhysics(new G4StepLimit 75 runManager->SetUserInitialization(physicsLis 76 // User action initialization 77 runManager->SetUserInitialization(new F02Act 78 79 // Initialize G4 kernel 80 // 81 runManager->Initialize(); 82 83 // Initialize visualization 84 // 85 G4VisManager* visManager = new G4VisExecutiv 86 // G4VisExecutive can take a verbosity argum 87 // G4VisManager* visManager = new G4VisExecu 88 visManager->Initialize(); 89 90 // Get the pointer to the User Interface man 91 // 92 G4UImanager* UImanager = G4UImanager::GetUIp 93 94 if (!ui) // batch mode 95 { 96 G4String command = "/control/execute "; 97 G4String fileName = argv[1]; 98 UImanager->ApplyCommand(command + fileName 99 } 100 else { // interactive mode : define UI sess 101 UImanager->ApplyCommand("/control/execute 102 if (ui->IsGUI()) UImanager->ApplyCommand(" 103 ui->SessionStart(); 104 delete ui; 105 } 106 107 // Job termination 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; 114 delete runManager; 115 116 return 0; 117 } 118 119 //....oooOO0OOooo........oooOO0OOooo........oo 120