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 eventgenerator/pythia/py8decayer/pyt 28 /// \brief Main program of the pythia8_decayer 29 30 #include "ActionInitialization.hh" 31 #include "DetConstruction.hh" 32 #include "FTFP_BERT.hh" 33 #include "Py8DecayerPhysics.hh" 34 #include "SingleParticleGun.hh" 35 36 #include "G4GeometryManager.hh" 37 #include "G4PhysListFactoryAlt.hh" 38 #include "G4PhysListRegistry.hh" 39 #include "G4RunManagerFactory.hh" 40 #include "G4SystemOfUnits.hh" 41 #include "Randomize.hh" 42 43 // allow ourselves to extend the short names f 44 // along the same lines as EMX, EMY, etc 45 #include "G4PhysListRegistry.hh" 46 47 // allow ourselves to give the user extra info 48 #include "G4PhysicsConstructorFactory.hh" 49 50 // forward declaration 51 void PrintAvailable(G4int verb = 1); 52 53 int main(int argc, char** argv) 54 { 55 // pick physics list 56 std::string physListName = "FTFP_BERT+PY8DK" 57 58 for (G4int i = 1; i < argc; i = i + 2) { 59 G4String g4argv(argv[i]); // convert only 60 if (g4argv == "-p") physListName = argv[i 61 } 62 63 // Choose the Random engine 64 // 65 G4Random::setTheEngine(new CLHEP::RanecuEngi 66 67 // Construct the default run manager; 68 // it'll operate in the Tasking mode, and wi 69 // 70 // If one wishes to operate in the so called 71 // one can use G4RunManagerType::SerialOnly 72 // 73 auto runManager = G4RunManagerFactory::Creat 74 75 // Set mandatory initialization classes 76 // 77 // Geometry 78 // 79 runManager->SetUserInitialization(new DetCon 80 // 81 // Physics 82 // 83 // G4VModularPhysicsList* physicsList = new 84 // physicsList->RegisterPhysics(new Py8Decay 85 86 g4alt::G4PhysListFactory plFactory; 87 G4VModularPhysicsList* physicsList = nullptr 88 plFactory.SetDefaultReferencePhysList("NO_DE 89 90 // set a short name for the plugin 91 G4PhysListRegistry* plReg = G4PhysListRegist 92 plReg->AddPhysicsExtension("PY8DK", "Py8Deca 93 94 physicsList = plFactory.GetReferencePhysList 95 96 if (!physicsList) { 97 PrintAvailable(1); 98 99 // if we can't get what the user asked for 100 // don't go on to use something else, t 101 G4ExceptionDescription ed; 102 ed << "The factory for the physicslist [" 103 G4Exception("extensibleFactory", "extensib 104 exit(42); 105 } 106 107 runManager->SetUserInitialization(physicsLis 108 // 109 // Set user action classes, e.g. prim.genera 110 // NOTE: setting particle gun (prim. generat 111 // ActionInit class (see src/ActionIni 112 // 113 runManager->SetUserInitialization(new Action 114 // 115 // General initialization for the run 116 // 117 runManager->Initialize(); 118 119 // 120 // Run 5 events 121 // NOTE: they will run on 5 different thread 122 // 123 runManager->BeamOn(5); 124 125 // Job termination 126 // Free the store: user actions, physics_lis 127 // owned and deleted by the 128 // be deleted in the main() 129 delete runManager; 130 131 return 0; 132 } 133 134 //....oooOO0OOooo........oooOO0OOooo........oo 135 136 void PrintAvailable(G4int verbosity) 137 { 138 G4cout << G4endl; 139 G4cout << "extensibleFactory: here are the a 140 g4alt::G4PhysListFactory factory; 141 factory.PrintAvailablePhysLists(); 142 143 // if user asked for extra verbosity then pr 144 if (verbosity > 1) { 145 G4cout << G4endl; 146 G4cout << "extensibleFactory: " 147 << "here are the available physics 148 G4PhysicsConstructorRegistry* g4pctorFacto 149 g4pctorFactory->PrintAvailablePhysicsConst 150 } 151 } 152 153 //....oooOO0OOooo........oooOO0OOooo........oo 154