Geant4  10.02.p02
lArCal.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 // ********************************************************************
25 //
26 // $Id: lArCal.cc 89572 2015-04-20 07:18:15Z gcosmo $
27 //
28 //
29 // --------------------------------------------------------------
30 // GEANT 4 - exampleN03
31 //
32 // For information related to this code contact:
33 // CERN, IT Division, ASD Group
34 // --------------------------------------------------------------
35 // Comments
36 //
37 // --------------------------------------------------------------
38 
39 #ifdef G4MULTITHREADED
40 #include "G4MTRunManager.hh"
41 #else
42 #include "G4RunManager.hh"
43 #endif
44 #include "G4UImanager.hh"
45 
46 #include "Randomize.hh"
47 
48 #ifdef G4VIS_USE
49 #include "G4VisExecutive.hh"
50 #endif
51 
52 #ifdef G4UI_USE
53 #include "G4UIExecutive.hh"
54 #endif
55 
56 #include "FCALTestbeamSetup.hh"
57 #include "G4PhysListFactory.hh"
59 
60 
61 int main(int argc,char** argv) {
62 
63  // choose the Random engine
64  G4Random::setTheEngine(new CLHEP::RanecuEngine);
65 
66  // Construct the default run manager
67 #ifdef G4MULTITHREADED
68  G4MTRunManager* runManager = new G4MTRunManager;
69 #else
70  G4RunManager* runManager = new G4RunManager;
71 #endif
72 
73  // set mandatory initialization classes
74  FCALTestbeamSetup* detector = new FCALTestbeamSetup;
75  runManager->SetUserInitialization(detector);
76 
77  G4PhysListFactory factory;
78  runManager->SetUserInitialization(factory.ReferencePhysList());
79 
81 
82  // get the pointer to the User Interface manager
83  G4UImanager* UImanager = G4UImanager::GetUIpointer();
84 
85 #ifdef G4VIS_USE
86  // visualization manager
87  G4VisManager* visManager = new G4VisExecutive;
88  visManager->Initialize();
89 #endif
90 
91  if (argc==1) // Define UI session for interactive mode.
92  {
93 #ifdef G4UI_USE
94  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
95 #ifdef G4VIS_USE
96  UImanager->ApplyCommand("/control/execute prerunlArcal.mac");
97 #endif
98  if (ui->IsGUI())
99  UImanager->ApplyCommand("/control/execute gui.mac");
100  ui->SessionStart();
101  delete ui;
102 #endif
103  }
104  else // Batch mode
105  {
106  G4String command = "/control/execute ";
107  G4String fileName = argv[1];
108  UImanager->ApplyCommand(command+fileName);
109  }
110 
111  // job termination
112 #ifdef G4VIS_USE
113  delete visManager;
114 #endif
115  delete runManager;
116 
117  return 0;
118 }
119 
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
Definition of the FCALActionInitialization class.
int main(int argc, char **argv)
Definition: lArCal.cc:61
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
Action initialization class.
void Initialize()
G4VModularPhysicsList * ReferencePhysList()
G4bool IsGUI() const
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:446