Geant4  10.03.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
microdosimetry.cc File Reference

Implementation of the microdosimetry example. More...

#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "G4UIExecutive.hh"
#include "G4UIterminal.hh"
#include "G4UItcsh.hh"
#include "G4VisExecutive.hh"
#include "ActionInitialization.hh"
#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
#include "CommandLineParser.hh"
#include "G4UIQt.hh"
Include dependency graph for microdosimetry.cc:

Go to the source code of this file.

Functions

CommandLineParserparser (0)
 
void Parse (int &argc, char **argv)
 
int main (int argc, char **argv)
 
void GetNameAndPathOfExecutable (char **argv, G4String &executable, G4String &path)
 

Detailed Description

Implementation of the microdosimetry example.

Definition in file microdosimetry.cc.

Function Documentation

void GetNameAndPathOfExecutable ( char **  argv,
G4String executable,
G4String path 
)

Definition at line 193 of file microdosimetry.cc.

196 {
197  // Get the last position of '/'
198  std::string aux(argv[0]);
199 
200  // get '/' or '\\' depending on unix/mac or windows.
201 #if defined(_WIN32) || defined(WIN32)
202  int pos = aux.rfind('\\');
203 #else
204  int pos = aux.rfind('/');
205 #endif
206 
207  // Get the path and the name
208  path = aux.substr(0, pos + 1);
209  executable = aux.substr(pos + 1);
210 }
static const G4double pos
int main ( int  argc,
char **  argv 
)

Definition at line 63 of file microdosimetry.cc.

64 {
65  // Choose the Random engine
66  G4Random::setTheEngine(new CLHEP::RanecuEngine);
67 
69  // Parse options given in commandLine
70  //
71  Parse(argc, argv);
72 
74  // Construct the run manager according to whether MT is activated or not
75  //
76  Command* commandLine(0);
77 
78 #ifdef G4MULTITHREADED
79  G4MTRunManager* runManager= new G4MTRunManager;
80  if ((commandLine = parser->GetCommandIfActive("-mt")))
81  {
82  int nThreads = 2;
83  if(commandLine->GetOption() == "NMAX")
84  {
86  }
87  else
88  {
89  nThreads = G4UIcommand::ConvertToInt(commandLine->GetOption());
90  }
91  G4cout << "===== Microdosimetry is started with "
92  << runManager->GetNumberOfThreads()
93  << " threads =====" << G4endl;
94 
95  runManager->SetNumberOfThreads(nThreads);
96  }
97 #else
98  G4RunManager* runManager = new G4RunManager();
99 #endif
100 
101  // Set mandatory user initialization classes
103  runManager->SetUserInitialization(detector);
104 
105  runManager->SetUserInitialization(new PhysicsList);
106 
107  // User action initialization
108 
109  runManager->SetUserInitialization(new ActionInitialization());
110 
111  // Initialize G4 kernel
112 
113  runManager->Initialize();
114 
115  // Initialize visualization
116  G4VisManager* visManager = new G4VisExecutive;
117  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
118  // G4VisManager* visManager = new G4VisExecutive("Quiet");
119  visManager->Initialize();
120 
121  // Get the pointer to the User Interface manager
122  G4UImanager* UImanager = G4UImanager::GetUIpointer();
123  G4UIExecutive* ui(0);
124 
125  // interactive mode : define UI session
126  if ((commandLine = parser->GetCommandIfActive("-gui")))
127  {
128  ui = new G4UIExecutive(argc, argv,
129  commandLine->GetOption());
130 
131  if(ui->IsGUI())
132  UImanager->ApplyCommand("/control/execute gui.mac");
133 
134  if(parser->GetCommandIfActive("-novis") == 0)
135  // visualization is used by default
136  {
137  if((commandLine = parser->GetCommandIfActive("-vis")))
138  // select a visualization driver if needed (e.g. HepFile)
139  {
140  UImanager->ApplyCommand(G4String("/vis/open ")+
141  commandLine->GetOption());
142  }
143  else
144  // by default OGL is used
145  {
146  UImanager->ApplyCommand("/vis/open OGL 800x600-0+0");
147  }
148  UImanager->ApplyCommand("/control/execute vis.mac");
149  }
150  }
151  else
152  // to be use visualization file (= store the visualization into
153  // an external file:
154  // ASCIITree ; DAWNFILE ; HepRepFile ; VRML(1,2)FILE ; gMocrenFile ...
155  {
156  if ((commandLine = parser->GetCommandIfActive("-vis")))
157  {
158  UImanager->ApplyCommand(G4String("/vis/open ")+commandLine->GetOption());
159  UImanager->ApplyCommand("/control/execute vis.mac");
160  }
161  }
162 
163  if ((commandLine = parser->GetCommandIfActive("-mac")))
164  {
165  G4String command = "/control/execute ";
166  UImanager->ApplyCommand(command + commandLine->GetOption());
167  }
168  else
169  {
170  UImanager->ApplyCommand("/control/execute microdosimetry.in");
171  }
172 
173  if ((commandLine = parser->GetCommandIfActive("-gui")))
174  {
175 #ifdef G4UI_USE_QT
176  G4UIQt* UIQt = static_cast<G4UIQt*> (UImanager->GetG4UIWindow());
177  if ( UIQt) {
178  UIQt->AddViewerTabFromFile("README", "README from "+ G4String(argv[0]));
179  }
180 #endif
181  ui->SessionStart();
182  delete ui;
183  }
184 
185  delete visManager;
186  delete runManager;
187 
188  return 0;
189 }
void Parse(int &argc, char **argv)
Definition: chem1.cc:193
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
void SetNumberOfThreads(G4int n)
Command * GetCommandIfActive(const G4String &marker)
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:59
G4GLOB_DLL std::ostream G4cout
G4int G4GetNumberOfCores()
Definition: G4Threading.cc:143
G4int GetNumberOfThreads() const
CommandLineParser * parser(0)
static G4int ConvertToInt(const char *st)
Definition: G4UIcommand.cc:447
void Initialize()
G4UIsession * GetG4UIWindow() const
Definition: G4UImanager.hh:210
virtual void Initialize()
Detector construction class to define materials and geometry.
#define G4endl
Definition: G4ios.hh:61
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:447
Physics list class.
Definition: PhysicsList.hh:47

Here is the call graph for this function:

void Parse ( int argc,
char **  argv 
)
CommandLineParser* parser ( )