Geant4  10.02
ExGflash.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: ExGflash.cc 94396 2015-11-13 13:37:16Z gcosmo $
27 //
30 //
31 // Created by Joanna Weng 26.11.2004
32 
33 // G4 includes
34 #include "G4Timer.hh"
35 #include "G4ios.hh"
36 #include "G4Timer.hh"
37 #include "G4UImanager.hh"
38 
39 #ifdef G4MULTITHREADED
40 #include "G4MTRunManager.hh"
41 #else
42 #include "G4RunManager.hh"
43 #endif
44 
45 // my project
47 #include "ExGflashPhysics.hh"
49 
50 #include "FTFP_BERT.hh"
51 #include "G4VModularPhysicsList.hh"
52 
53 #ifdef G4VIS_USE
54 #include "G4VisExecutive.hh"
55 #endif
56 
57 #ifdef G4UI_USE
58 #include "G4UIExecutive.hh"
59 #endif
60 
61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62 
63 int main(int argc,char** argv)
64 {
65  // timer to see GFlash performance
66  G4Timer timer;
67  timer.Start();
68 
69  G4cout<<"+-------------------------------------------------------+"<<G4endl;
70  G4cout<<"| |"<<G4endl;
71  G4cout<<"| This is an example of Shower |"<<G4endl;
72  G4cout<<"| Parameterization with GFLASH |"<<G4endl;
73  G4cout<<"+-------------------------------------------------------+"<<G4endl;
74 
75 
76 
77 #ifdef G4MULTITHREADED
78  G4MTRunManager * runManager = new G4MTRunManager;
79  runManager->SetNumberOfThreads(4);
80  G4cout<<"+-------------------------------------------------------+"<<G4endl;
81  G4cout<<"| Constructing MT run manager |"<<G4endl;
82  G4cout<<"+-------------------------------------------------------+"<<G4endl;
83 #else
84  G4RunManager * runManager = new G4RunManager;
85  G4cout<<"+-------------------------------------------------------+"<<G4endl;
86  G4cout<<"| Constructing sequential run manager |"<<G4endl;
87  G4cout<<"+-------------------------------------------------------+"<<G4endl;
88 #endif
89 
90  // UserInitialization classes (mandatory)
91  G4cout<<"# GFlash Example: Detector Construction"<<G4endl;
93 
94  // G4cout<<"# GFlash Example: Physics "<<G4endl;
95  G4VModularPhysicsList* physicsList = new FTFP_BERT();
96  physicsList->RegisterPhysics(new ExGflashPhysics());
97  runManager->SetUserInitialization(physicsList);
98 
99  // Action initialization:
101 
102 #ifdef G4VIS_USE
103  G4VisManager* visManager = new G4VisExecutive;
104  visManager->Initialize();
105 #endif
106 
107  G4UImanager* UImanager = G4UImanager::GetUIpointer();
108  UImanager->ApplyCommand("/run/verbose 0");
109  runManager->Initialize();
110  UImanager->ApplyCommand("/Step/Verbose 0");
111 
112  if (argc==1) // Define UI terminal for interactive mode
113  {
114 #ifdef G4UI_USE
115  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
116 #ifdef G4VIS_USE
117  UImanager->ApplyCommand("/control/execute vis.mac");
118 #endif
119  ui->SessionStart();
120  delete ui;
121 #endif
122  }
123  else // Batch mode
124  {
125  G4String s=*(argv+1);
126  UImanager->ApplyCommand("/control/execute "+s);
127  }
128 
129  #ifdef G4VIS_USE
130  delete visManager;
131  #endif
132  delete runManager;
133 
134  timer.Stop();
135  G4cout << G4endl;
136  G4cout << "******************************************";
137  G4cout << G4endl;
138  G4cout << "Total Real Elapsed Time is: "<< timer.GetRealElapsed();
139  G4cout << G4endl;
140  G4cout << "Total System Elapsed Time: " << timer.GetSystemElapsed();
141  G4cout << G4endl;
142  G4cout << "Total GetUserElapsed Time: " << timer.GetUserElapsed();
143  G4cout << G4endl;
144  G4cout << "******************************************";
145  G4cout << G4endl;
146 
147  return 0;
148 }
149 
150 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
void RegisterPhysics(G4VPhysicsConstructor *)
G4double GetSystemElapsed() const
Definition: G4Timer.cc:119
void SetNumberOfThreads(G4int n)
Definition of the ExGflashPhysics class.
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
static const double s
Definition: G4SIunits.hh:168
G4GLOB_DLL std::ostream G4cout
G4double GetUserElapsed() const
Definition: G4Timer.cc:130
void Initialize()
TFTFP_BERT< G4VModularPhysicsList > FTFP_BERT
Definition: FTFP_BERT.hh:63
G4double GetRealElapsed() const
Definition: G4Timer.cc:107
void Stop()
virtual void Initialize()
#define G4endl
Definition: G4ios.hh:61
Definition of the ExGflashActionInitialization class.
void Start()
int main(int argc, char **argv)
Definition: ExGflash.cc:63
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:446