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