Geant4  10.02.p01
LXe.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: LXe.cc 77782 2013-11-28 08:12:12Z gcosmo $
27 //
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 
33 #ifdef G4MULTITHREADED
34 #include "G4MTRunManager.hh"
35 #else
36 #include "G4RunManager.hh"
37 #endif
38 
39 #include "G4UImanager.hh"
40 #include "G4String.hh"
41 
42 #include "LXePhysicsList.hh"
44 
46 
47 #include "LXeRecorderBase.hh"
48 
49 #ifdef G4VIS_USE
50 #include "G4VisExecutive.hh"
51 #endif
52 
53 #ifdef G4UI_USE
54 #include "G4UIExecutive.hh"
55 #endif
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58 
59 int main(int argc, char** argv)
60 {
61 #ifdef G4MULTITHREADED
62  G4MTRunManager * runManager = new G4MTRunManager;
63 #else
64  G4RunManager * runManager = new G4RunManager;
65 #endif
66 
68  runManager->SetUserInitialization(new LXePhysicsList());
69 
70  LXeRecorderBase* recorder = NULL; //No recording is done in this example
71 
72  runManager->SetUserInitialization(new LXeActionInitialization(recorder));
73 
74 #ifdef G4VIS_USE
75  G4VisManager* visManager = new G4VisExecutive;
76  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
77  // G4VisManager* visManager = new G4VisExecutive("Quiet");
78  visManager->Initialize();
79 #endif
80 
81  // runManager->Initialize();
82 
83  // get the pointer to the UI manager and set verbosities
85 
86  if(argc==1){
87 #ifdef G4UI_USE
88  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
89 #ifdef G4VIS_USE
90  UImanager->ApplyCommand("/control/execute vis.mac");
91 #endif
92  if (ui->IsGUI())
93  UImanager->ApplyCommand("/control/execute gui.mac");
94  ui->SessionStart();
95  delete ui;
96 #endif
97  }
98  else{
99  G4String command = "/control/execute ";
100  G4String filename = argv[1];
101  UImanager->ApplyCommand(command+filename);
102  }
103 
104 // if(recorder)delete recorder;
105 
106 #ifdef G4VIS_USE
107  delete visManager;
108 #endif
109 
110  // job termination
111  delete runManager;
112  return 0;
113 }
114 
115 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
Definition of the LXeRecorderBase class.
Definition of the LXePhysicsList class.
Definition of the LXeDetectorConstruction class.
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
void Initialize()
int main(int argc, char **argv)
Definition: LXe.cc:59
Action initialization class.
G4bool IsGUI() const
Definition of the LXeActionInitialization class.
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:446