ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
exMPI03.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file exMPI03.cc
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
26 //
28 
29 #include "G4MPImanager.hh"
30 #include "G4MPIsession.hh"
31 
32 #ifdef G4MULTITHREADED
33 #include "G4MTRunManager.hh"
34 #else
35 #include "G4RunManager.hh"
36 #endif
37 
38 #include "G4UImanager.hh"
39 
40 #include "G4VisExecutive.hh"
41 
42 #include "ActionInitialization.hh"
43 #include "DetectorConstruction.hh"
44 #include "FTFP_BERT.hh"
45 #include "G4ScoringManager.hh"
46 int main(int argc, char** argv)
47 {
48  // --------------------------------------------------------------------
49  // MPI session
50  // --------------------------------------------------------------------
51  // At first, G4MPImanager/G4MPIsession should be created.
52  G4MPImanager* g4MPI = new G4MPImanager(argc, argv);
53 
54  // MPI session (G4MPIsession) instead of G4UIterminal
55  // Terminal availability depends on your MPI implementation.
56  G4MPIsession* session = g4MPI-> GetMPIsession();
57 
58  // LAM/MPI users can use G4tcsh.
59  G4String prompt = "";
60  prompt += "G4MPI";
61  prompt += "(%s)[%/]:";
62  session-> SetPrompt(prompt);
63 
64  // --------------------------------------------------------------------
65  // user application setting
66  // --------------------------------------------------------------------
67 #ifdef G4MULTITHREADED
68  G4MTRunManager* runManager = new G4MTRunManager();
69  runManager-> SetNumberOfThreads(4);
70 #else
71  G4RunManager* runManager = new G4RunManager();
72 #endif
74  scManager->SetVerboseLevel(1);
75  // setup your application
76  runManager-> SetUserInitialization(new DetectorConstruction);
77  runManager-> SetUserInitialization(new FTFP_BERT);
78  runManager-> SetUserInitialization(new ActionInitialization);
79 
80  runManager-> Initialize();
81 
82  G4VisExecutive* visManager = new G4VisExecutive;
83  visManager-> Initialize();
84  G4cout << G4endl;
85 
86  // --------------------------------------------------------------------
87  // ready for go
88  // MPIsession treats both interactive and batch modes.
89  // Just start your session as below.
90  // --------------------------------------------------------------------
91  session-> SessionStart();
92 
93  // --------------------------------------------------------------------
94  // termination
95  // --------------------------------------------------------------------
96  delete visManager;
97 
98  delete g4MPI;
99 
100  delete runManager;
101 
102  return EXIT_SUCCESS;
103 }