Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
exMPI01.cc
Go to the documentation of this file.
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 // ********************************************************************
27 
28 #include "G4RunManager.hh"
29 #include "G4UImanager.hh"
30 
31 // my application
32 #include "DetectorConstruction.hh"
33 #include "PhysicsList.hh"
34 #include "PrimaryGeneratorAction.hh"
35 
36 // MPI session
37 #include "G4MPImanager.hh"
38 #include "G4MPIsession.hh"
39 
40 #ifdef G4VIS_USE
41 #include "G4VisExecutive.hh"
42 #endif
43 
44 int main(int argc, char** argv)
45 {
46  // random engine
47  //CLHEP::HepJamesRandom randomEngine;
48  CLHEP::Ranlux64Engine randomEngine;
49  CLHEP::HepRandom::setTheEngine(&randomEngine);
50 
51  // --------------------------------------------------------------------
52  // MPI session
53  // --------------------------------------------------------------------
54  // At first, G4MPImanager/G4MPIsession should be created.
55  G4MPImanager* g4MPI = new G4MPImanager(argc, argv);
56 
57  // MPI session (G4MPIsession) instead of G4UIterminal
58  // Terminal availability depends on your MPI implementation.
59  G4MPIsession* session = g4MPI-> GetMPIsession();
60 
61  // LAM/MPI users can use G4tcsh.
62  G4String prompt = "";
63  prompt += "G4MPI";
64  prompt += "(%s)[%/]:";
65  session-> SetPrompt(prompt);
66 
67  // --------------------------------------------------------------------
68  // user application setting
69  // --------------------------------------------------------------------
70  G4RunManager* runManager = new G4RunManager();
71 
72  // setup your application
73  runManager-> SetUserInitialization(new DetectorConstruction);
74  runManager-> SetUserInitialization(new PhysicsList);
75  runManager-> SetUserAction(new PrimaryGeneratorAction);
76 
77  runManager-> Initialize();
78 
79 #ifdef G4VIS_USE
80  G4VisExecutive* visManager = new G4VisExecutive;
81  visManager-> Initialize();
82  G4cout << G4endl;
83 #endif
84 
85  // --------------------------------------------------------------------
86  // ready for go
87  // MPIsession treats both interactive and batch modes.
88  // Just start your session as below.
89  // --------------------------------------------------------------------
90  session-> SessionStart();
91 
92  // --------------------------------------------------------------------
93  // termination
94  // --------------------------------------------------------------------
95 #ifdef G4VIS_USE
96  delete visManager;
97 #endif
98 
99  delete g4MPI;
100 
101  delete runManager;
102 
103  return 0;
104 }