Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 67976 2013-03-13 10:23:17Z 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 #include "G4RunManager.hh"
40 #include "G4UImanager.hh"
41 
42 #include "Randomize.hh"
43 
44 #ifdef G4VIS_USE
45 #include "G4VisExecutive.hh"
46 #endif
47 
48 #ifdef G4UI_USE
49 #include "G4UIExecutive.hh"
50 #endif
51 
52 #include "FCALTestbeamSetup.hh"
53 #include "FCALSteppingVerbose.hh"
55 #include "G4PhysListFactory.hh"
56 #include "FCALRunAction.hh"
57 #include "FCALTBEventAction.hh"
58 #include "FCALSteppingAction.hh"
59 
60 
61 
62 int main(int argc,char** argv) {
63 
64  // choose the Random engine
66 
67  //my Verbose output class
69 
70  // Construct the default run manager
71  G4RunManager * runManager = new G4RunManager;
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 
80 #ifdef G4VIS_USE
81  // visualization manager
82  G4VisManager* visManager = new G4VisExecutive;
83  visManager->Initialize();
84 #endif
85 
86  // set user action classes
87  runManager->SetUserAction(new FCALPrimaryGeneratorAction());
88 
90  runManager ->SetUserAction(RunAction);
91 
92  FCALSteppingAction* StepAction = new FCALSteppingAction;
93  runManager->SetUserAction(StepAction);
94 
95  // runManager->SetUserAction(new FCALRunAction);
96 
97  runManager->SetUserAction(new FCALTBEventAction(StepAction));
98 
99 
100  //Initialize G4 kernel
101  runManager->Initialize();
102 
103  // get the pointer to the User Interface manager
104  G4UImanager* UImanager = G4UImanager::GetUIpointer();
105 
106  if (argc==1) // Define UI session for interactive mode.
107  {
108 #ifdef G4UI_USE
109  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
110 #ifdef G4VIS_USE
111  UImanager->ApplyCommand("/control/execute prerunlArcal.mac");
112 #endif
113  if (ui->IsGUI())
114  UImanager->ApplyCommand("/control/execute gui.mac");
115  ui->SessionStart();
116  delete ui;
117 #endif
118  }
119  else // Batch mode
120  {
121  G4String command = "/control/execute ";
122  G4String fileName = argv[1];
123  UImanager->ApplyCommand(command+fileName);
124  }
125 
126  // job termination
127 #ifdef G4VIS_USE
128  delete visManager;
129 #endif
130  delete runManager;
131 
132  return 0;
133 }
134 
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
int main(int argc, char **argv)
Definition: lArCal.cc:62
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
void Initialize()
static void SetInstance(G4VSteppingVerbose *Instance)
virtual void Initialize()
static void setTheEngine(HepRandomEngine *theNewEngine)
Definition: Random.cc:170
G4VModularPhysicsList * ReferencePhysList()
G4bool IsGUI() const
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419
virtual void SetUserAction(G4UserRunAction *userAction)