#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
#include "ActionInitialization.hh"
#include "G4RunManager.hh"
#include "G4DNAChemistryManager.hh"
#include "G4UImanager.hh"
#include "G4UIExecutive.hh"
#include "G4VisExecutive.hh"
#include "CommandLineParser.hh"
Go to the source code of this file.
◆ main()
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 59 of file clustering.cc.
71 #ifdef G4MULTITHREADED 76 if(commandLine->GetOption() ==
"NMAX")
84 G4cout <<
"===== clustering is started with " 86 <<
" threads =====" <<
G4endl;
116 ui =
new G4UIExecutive(argc, argv, commandLine->GetOption());
118 if (ui->IsGUI()) UImanager->
ApplyCommand(
"/control/execute gui.mac");
127 G4String(
"/vis/open ") + commandLine->GetOption());
145 G4String(
"/vis/open ") + commandLine->GetOption());
152 G4String command =
"/control/execute ";
153 UImanager->
ApplyCommand(command + commandLine->GetOption());
174 CommandLineParser::DeleteInstance();
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
void SetNumberOfThreads(G4int n)
Command * GetCommandIfActive(const G4String &marker)
static G4UImanager * GetUIpointer()
G4GLOB_DLL std::ostream G4cout
G4int G4GetNumberOfCores()
CommandLineParser * parser(0)
G4int GetNumberOfThreads() const
static G4int ConvertToInt(const char *st)
void Parse(int &argc, char **argv)
virtual void Initialize()
Detector construction class to define materials and geometry.
G4int ApplyCommand(const char *aCommand)
◆ Parse()
void Parse |
( |
int & |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 179 of file clustering.cc.
184 parser = CommandLineParser::GetParser();
187 "-gui", Command::OptionNotCompulsory,
188 "Select geant4 UI or just launch a geant4 terminal session",
"qt");
190 parser->
AddCommand(
"-mac", Command::WithOption,
"Give a mac file to execute",
199 #ifdef G4MULTITHREADED 202 "Launch in MT mode (events computed in parallel," 203 " NOT RECOMMENDED WITH CHEMISTRY)",
"2");
207 "Select a visualization driver",
"OGL 600x600-0+0");
210 "Deactivate visualization when using GUI");
219 CommandLineParser::DeleteInstance();
int Parse(int &argc, char **argv)
void AddCommand(const G4String &marker, Command::Type, const G4String &description="", const G4String &defaultOption="", const G4String &optionName="")
bool CheckIfNotHandledOptionsExists(int &argc, char **argv)
CommandLineParser * parser(0)
◆ parser()