Geant4  9.6.p02
 All Classes 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 69896 2013-05-17 09:57:59Z 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 
57 
58 #ifdef G4ANALYSIS_USE
59 
60 #include "FCALRunAction.hh"
61 #include "FCALTBEventAction.hh"
62 #include "FCALSteppingAction.hh"
63 
64 #endif
65 
66 
67 int main(int argc,char** argv) {
68 
69  // choose the Random engine
71 
72  //my Verbose output class
74 
75  // Construct the default run manager
76  G4RunManager * runManager = new G4RunManager;
77 
78  // set mandatory initialization classes
79  FCALTestbeamSetup* detector = new FCALTestbeamSetup;
80  runManager->SetUserInitialization(detector);
81 
82  G4PhysListFactory factory;
83  runManager->SetUserInitialization(factory.ReferencePhysList());
84 
85 #ifdef G4VIS_USE
86  // visualization manager
87  G4VisManager* visManager = new G4VisExecutive;
88  visManager->Initialize();
89 #endif
90 
91  // set user action classes
92  runManager->SetUserAction(new FCALPrimaryGeneratorAction());
93 
94 #ifdef G4ANALYSIS_USE
95 
97  runManager ->SetUserAction(RunAction);
98 
99  FCALSteppingAction* StepAction = new FCALSteppingAction;
100  runManager->SetUserAction(StepAction);
101 
102  // runManager->SetUserAction(new FCALRunAction);
103 
104  runManager->SetUserAction(new FCALTBEventAction(StepAction));
105 
106 
107 #endif
108 
109  //Initialize G4 kernel
110  runManager->Initialize();
111 
112  // get the pointer to the User Interface manager
113  G4UImanager* UImanager = G4UImanager::GetUIpointer();
114 
115  if (argc==1) // Define UI session for interactive mode.
116  {
117 #ifdef G4UI_USE
118  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
119 #ifdef G4VIS_USE
120  UImanager->ApplyCommand("/control/execute prerunlArcal.mac");
121 #endif
122  if (ui->IsGUI())
123  UImanager->ApplyCommand("/control/execute gui.mac");
124  ui->SessionStart();
125  delete ui;
126 #endif
127  }
128  else // Batch mode
129  {
130  G4String command = "/control/execute ";
131  G4String fileName = argv[1];
132  UImanager->ApplyCommand(command+fileName);
133  }
134 
135  // job termination
136 #ifdef G4VIS_USE
137  delete visManager;
138 #endif
139  delete runManager;
140 
141  return 0;
142 }
143