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/field01/field01.cc << 27 // $Id: field01.cc,v 1.9 2010/05/12 16:30:59 allison Exp $ 28 /// \brief Main program of the field/field01 e << 28 // GEANT4 tag $Name: geant4-09-04-beta-01 $ 29 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo << 30 // 31 //....oooOO0OOooo........oooOO0OOooo........oo << 31 // -------------------------------------------------------------- >> 32 // GEANT 4 - TestF01 >> 33 // >> 34 // -------------------------------------------------------------- >> 35 // Comments >> 36 // >> 37 // >> 38 // -------------------------------------------------------------- >> 39 >> 40 #include "G4RunManager.hh" >> 41 #include "G4UImanager.hh" >> 42 #include "Randomize.hh" 32 43 33 #include "F01ActionInitialization.hh" << 34 #include "F01DetectorConstruction.hh" 44 #include "F01DetectorConstruction.hh" >> 45 // #include "F01FieldSetup.hh" >> 46 #include "F01PhysicsList.hh" >> 47 #include "F01PrimaryGeneratorAction.hh" 35 #include "F01RunAction.hh" 48 #include "F01RunAction.hh" >> 49 #include "F01EventAction.hh" >> 50 #include "F01SteppingAction.hh" 36 #include "F01SteppingVerbose.hh" 51 #include "F01SteppingVerbose.hh" 37 52 38 #include "G4RunManagerFactory.hh" << 53 #ifdef G4VIS_USE 39 #include "G4Types.hh" << 54 #include "G4VisExecutive.hh" 40 #include "G4UImanager.hh" << 55 #endif 41 << 42 #include "FTFP_BERT.hh" << 43 56 44 #include "G4EmParameters.hh" << 57 #ifdef G4UI_USE 45 #include "G4HadronicParameters.hh" << 46 #include "G4PhysicsListHelper.hh" << 47 #include "G4StepLimiterPhysics.hh" << 48 #include "G4UIExecutive.hh" 58 #include "G4UIExecutive.hh" 49 #include "G4VisExecutive.hh" << 59 #endif 50 #include "Randomize.hh" << 51 60 52 // For Printing statistic from Transporation p << 61 int main(int argc,char** argv) 53 #include "G4CoupledTransportation.hh" << 62 { 54 #include "G4Electron.hh" << 55 #include "G4Transportation.hh" << 56 #include "G4TransportationParameters.hh" << 57 63 58 //....oooOO0OOooo........oooOO0OOooo........oo << 64 //choose the Random engine 59 65 60 int main(int argc, char** argv) << 66 CLHEP::HepRandom::setTheEngine(new CLHEP::RanecuEngine); 61 { << 67 62 // Instantiate G4UIExecutive if there are no << 68 //my Verbose output class 63 // << 64 G4UIExecutive* ui = nullptr; << 65 if (argc == 1) { << 66 ui = new G4UIExecutive(argc, argv); << 67 } << 68 << 69 // Setting the application-specific Stepping << 70 // << 71 auto verbosity = new F01SteppingVerbose; << 72 69 >> 70 G4VSteppingVerbose::SetInstance(new F01SteppingVerbose); >> 71 73 // Construct the default run manager 72 // Construct the default run manager 74 auto runManager = G4RunManagerFactory::Creat << 75 73 76 // G4TransportationWithMscType: fDisabled, f << 74 G4RunManager * runManager = new G4RunManager; 77 // G4EmParameters::Instance()->SetTransporta << 75 >> 76 // Create class that constructs & messages the magnetic field >> 77 // *** F01FieldSetup* field = new F01FieldSetup() ; >> 78 // --> Now done in detector construction 78 79 79 // Set mandatory initialization classes 80 // Set mandatory initialization classes 80 // << 81 // Detector construction << 82 auto detector = new F01DetectorConstruction( << 83 // detector->SetUseFSALstepper(); // Uncomm << 84 81 >> 82 F01DetectorConstruction* detector; >> 83 detector = new F01DetectorConstruction; 85 runManager->SetUserInitialization(detector); 84 runManager->SetUserInitialization(detector); >> 85 runManager->SetUserInitialization(new F01PhysicsList(detector)); >> 86 >> 87 // Set user action classes >> 88 >> 89 runManager->SetUserAction(new F01PrimaryGeneratorAction(detector)); >> 90 >> 91 F01RunAction* runAction = new F01RunAction; >> 92 >> 93 runManager->SetUserAction(runAction); 86 94 87 // Configure the use of low thresholds for l << 95 F01EventAction* eventAction = new F01EventAction(runAction); 88 // ( appropriate for typical applications u << 96 89 // auto plHelper = G4PhysicsListHelper::GetP << 97 runManager->SetUserAction(eventAction); 90 // plHelper->UseLowLooperThresholds(); << 98 91 // plHelper->UseHighLooperThresholds(); << 99 F01SteppingAction* steppingAction = new F01SteppingAction(); 92 // Request a set of pre-selected values of t << 100 runManager->SetUserAction(steppingAction); 93 // particles: << 101 94 // - High for collider HEP application << 102 // Initialize G4 kernel, physics tables ... 95 // - Low for 'low-E' applications, me << 96 // Note: If helper is used select low or hig << 97 // values from TransportationParameter << 98 << 99 // They are currently applied in the followi << 100 // 1. Transportation Parameters - fine grain << 101 // 2. Physics List Helper - impose a f << 102 // 3. Run Action (F01RunAction) - revise val << 103 // 4. Tracking Action - could revi << 104 // Note that this also could customise b << 105 // to mu-/mu+ , e-/e+ vs others) << 106 // If multiple are present, later methods ov << 107 << 108 // Physics list << 109 G4VModularPhysicsList* physicsList = new FTF << 110 physicsList->RegisterPhysics(new G4StepLimit << 111 runManager->SetUserInitialization(physicsLis << 112 << 113 // User action initialization << 114 runManager->SetUserInitialization(new F01Act << 115 << 116 G4double warningE = 10.0 * CLHEP::keV; << 117 G4double importantE = 0.1 * CLHEP::MeV; << 118 G4int numTrials = 30; << 119 << 120 G4bool useTransportParams = true; // Use th << 121 << 122 if (useTransportParams) { << 123 auto transportParams = G4TransportationPar << 124 transportParams->SetWarningEnergy(warningE << 125 transportParams->SetImportantEnergy(import << 126 transportParams->SetNumberOfTrials(numTria << 127 G4cout << "field01: Using G4Transportation << 128 } << 129 else { << 130 // Fine grained control of thresholds for << 131 auto runAction = new F01RunAction(); << 132 runAction->SetWarningEnergy(warningE); << 133 // Looping particles with E < 10 keV will << 134 // with warning. << 135 // Looping particles with E > 10 keV will << 136 runAction->SetImportantEnergy(importantE); << 137 runAction->SetNumberOfTrials(numTrials); << 138 // Looping particles with E > 0.1 MeV will << 139 // 30 'tracking' steps, and only be kille << 140 << 141 G4cout << "field01: Using F01RunAction to << 142 runManager->SetUserAction(runAction); << 143 } << 144 << 145 // Note: this mechanism overwrites the thres << 146 // the call to UseLowLooperThresholds( << 147 << 148 // Suppress large verbosity from EM & hadron << 149 G4EmParameters::Instance()->SetVerbose(0); << 150 G4HadronicParameters::Instance()->SetVerbose << 151 103 152 // Initialize G4 kernel << 153 // << 154 runManager->Initialize(); 104 runManager->Initialize(); >> 105 >> 106 #ifdef G4VIS_USE 155 107 156 // Initialize visualization << 108 // visualization manager 157 // << 109 158 // G4VisExecutive can take a verbosity argum << 110 G4VisManager* visManager = new G4VisExecutive; 159 G4VisManager* visManager = new G4VisExecutiv << 160 visManager->Initialize(); 111 visManager->Initialize(); 161 112 162 // Get the pointer to the User Interface man << 113 #endif 163 // << 114 164 G4UImanager* UImanager = G4UImanager::GetUIp << 115 // Get the pointer to the User Interface manager 165 << 116 166 if (!ui) // batch mode << 117 G4UImanager* UImanager = G4UImanager::GetUIpointer(); 167 { << 118 168 G4String command = "/control/execute "; << 119 if (argc!=1) // batch mode 169 G4String fileName = argv[1]; << 120 { 170 UImanager->ApplyCommand(command + fileName << 121 G4String command = "/control/execute "; 171 } << 122 G4String fileName = argv[1]; 172 else { // interactive mode : define UI sess << 123 UImanager->ApplyCommand(command+fileName); 173 UImanager->ApplyCommand("/control/execute << 124 } 174 if (ui->IsGUI()) UImanager->ApplyCommand(" << 125 else 175 ui->SessionStart(); << 126 { // interactive mode : define UI session 176 delete ui; << 127 #ifdef G4UI_USE 177 } << 128 G4UIExecutive* ui = new G4UIExecutive(argc, argv); 178 << 129 ui->SessionStart(); 179 // Statistics of tracks killed by G4Transpor << 130 delete ui; 180 // printed in the RunAction's EndOfEvent ac << 131 #endif 181 // ( Eventually a summary could be provided << 132 } >> 133 >> 134 // job termination 182 135 183 delete verbosity; << 136 #ifdef G4VIS_USE 184 delete visManager; 137 delete visManager; >> 138 #endif >> 139 // delete field; 185 delete runManager; 140 delete runManager; 186 141 187 return 0; 142 return 0; 188 } 143 } 189 144 190 //....oooOO0OOooo........oooOO0OOooo........oo << 191 145