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 /// \file analysis/AnaEx01/AnaEx01.cc << 27 /// \brief Main program of the analysis/AnaEx0 << 28 // 26 // >> 27 // $Id: AnaEx01.cc,v 1.14 2006/06/29 16:33:13 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-09-01-patch-03 $ 29 // 29 // >> 30 // >> 31 // -------------------------------------------------------------- >> 32 // GEANT 4 - AnaEx01 30 // 33 // 31 // << 34 // -------------------------------------------------------------- 32 //....oooOO0OOooo........oooOO0OOooo........oo << 35 // Comments 33 //....oooOO0OOooo........oooOO0OOooo........oo << 36 // Example of histogram and tuple manipulations using an AIDA compliant 34 << 37 // system. All analysis manipulations (hooking an AIDA implementation, 35 #include "ActionInitialization.hh" << 38 // histo booking, filling, etc...) are concentrated in one 36 #include "DetectorConstruction.hh" << 39 // class : AnaEx01AnalysisManager. 37 #include "FTFP_BERT.hh" << 40 // See the README file within the same directory to have more infos. >> 41 // -------------------------------------------------------------- 38 42 39 #include "G4RunManagerFactory.hh" << 43 // Geant4 : 40 #include "G4UIExecutive.hh" << 44 #include "G4RunManager.hh" 41 #include "G4UImanager.hh" 45 #include "G4UImanager.hh" 42 #include "G4VisExecutive.hh" << 43 << 44 //....oooOO0OOooo........oooOO0OOooo........oo << 45 46 46 int main(int argc, char** argv) << 47 #include "Randomize.hh" 47 { << 48 // Detect interactive mode (if no arguments) << 49 // << 50 G4UIExecutive* ui = nullptr; << 51 if (argc == 1) { << 52 ui = new G4UIExecutive(argc, argv); << 53 } << 54 48 >> 49 // AIDA : >> 50 #ifdef G4ANALYSIS_USE >> 51 #include <AIDA/IAnalysisFactory.h> >> 52 #endif >> 53 >> 54 // AnaEx01 : >> 55 #include "AnaEx01AnalysisManager.hh" >> 56 #include "AnaEx01DetectorConstruction.hh" >> 57 #include "AnaEx01PhysicsList.hh" >> 58 #include "AnaEx01PrimaryGeneratorAction.hh" >> 59 #include "AnaEx01RunAction.hh" >> 60 #include "AnaEx01EventAction.hh" >> 61 #include "AnaEx01SteppingAction.hh" >> 62 #include "AnaEx01SteppingVerbose.hh" >> 63 >> 64 int main(int,char**) { >> 65 >> 66 // choose the Random engine >> 67 CLHEP::HepRandom::setTheEngine(new CLHEP::RanecuEngine); >> 68 >> 69 //my Verbose output class >> 70 G4VSteppingVerbose::SetInstance(new AnaEx01SteppingVerbose); >> 71 55 // Construct the default run manager 72 // Construct the default run manager 56 // << 73 G4RunManager * runManager = new G4RunManager; 57 auto* runManager = G4RunManagerFactory::Crea << 74 58 G4int nThreads = 4; << 75 // set mandatory initialization classes 59 runManager->SetNumberOfThreads(nThreads); << 76 AnaEx01DetectorConstruction* detector = new AnaEx01DetectorConstruction; 60 << 61 // Set mandatory initialization classes << 62 // << 63 auto detector = new DetectorConstruction; << 64 runManager->SetUserInitialization(detector); 77 runManager->SetUserInitialization(detector); 65 runManager->SetUserInitialization(new FTFP_B << 78 runManager->SetUserInitialization(new AnaEx01PhysicsList); 66 runManager->SetUserInitialization(new Action << 67 79 68 // Initialize visualization << 80 runManager->SetUserAction(new AnaEx01PrimaryGeneratorAction(detector)); 69 // << 70 G4VisManager* visManager = new G4VisExecutiv << 71 visManager->Initialize(); << 72 << 73 // Get the pointer to the User Interface man << 74 // << 75 G4UImanager* UImanager = G4UImanager::GetUIp << 76 << 77 if (ui == nullptr) { << 78 // batch mode << 79 G4String command = "/control/execute "; << 80 G4String fileName = argv[1]; << 81 UImanager->ApplyCommand("/control/alias de << 82 // define the default value for alias used << 83 UImanager->ApplyCommand(command + fileName << 84 } << 85 else { << 86 // interactive mode << 87 UImanager->ApplyCommand("/control/execute << 88 ui->SessionStart(); << 89 delete ui; << 90 } << 91 81 92 // Job termination << 82 AnaEx01AnalysisManager* analysisManager = 0; 93 delete visManager; << 83 #ifdef G4ANALYSIS_USE >> 84 AIDA::IAnalysisFactory* aida = AIDA_createAnalysisFactory(); >> 85 analysisManager = new AnaEx01AnalysisManager(aida); >> 86 #endif >> 87 runManager->SetUserAction(new AnaEx01RunAction(analysisManager)); >> 88 runManager->SetUserAction(new AnaEx01EventAction(analysisManager)); >> 89 runManager->SetUserAction(new AnaEx01SteppingAction(analysisManager)); >> 90 >> 91 //Initialize G4 kernel >> 92 runManager->Initialize(); >> 93 >> 94 // get the pointer to the User Interface manager >> 95 G4UImanager* UI = G4UImanager::GetUIpointer(); >> 96 >> 97 // Batch mode >> 98 UI->ApplyCommand("/control/execute run.mac"); >> 99 >> 100 // job termination >> 101 #ifdef G4ANALYSIS_USE >> 102 delete analysisManager; >> 103 #endif 94 delete runManager; 104 delete runManager; 95 105 >> 106 #ifdef G4ANALYSIS_USE >> 107 delete aida; >> 108 #endif >> 109 96 return 0; 110 return 0; 97 } 111 } 98 112 99 //....oooOO0OOooo........oooOO0OOooo........oo << 100 113