Geant4  10.02.p03
exampleGB02.cc File Reference
Include dependency graph for exampleGB02.cc:

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 68 of file exampleGB02.cc.

69 {
70  // Evaluate arguments
71  //
72  if ( argc > 5 ) {
73  PrintUsage();
74  return 1;
75  }
76 
77  G4String macro("");
78  G4String onOffBiasing("");
79  if ( argc == 2 ) macro = argv[1];
80  else
81  {
82  for ( G4int i=1; i<argc; i=i+2 )
83  {
84  if ( G4String(argv[i]) == "-m" ) macro = argv[i+1];
85  else if ( G4String(argv[i]) == "-b" ) onOffBiasing = argv[i+1];
86  else
87  {
88  PrintUsage();
89  return 1;
90  }
91  }
92  }
93 
94  if ( onOffBiasing == "" ) onOffBiasing = "on";
95 
96  // -- Construct the run manager : MT or sequential one
97 #ifdef G4MULTITHREADED
98  G4MTRunManager * runManager = new G4MTRunManager;
99  G4cout << " ********** Run Manager constructed in MT mode ************ " << G4endl;
100  // -- Choose 4 threads:
101  runManager->SetNumberOfThreads(4);
102 #else
103  G4RunManager * runManager = new G4RunManager;
104  G4cout << " ********** Run Manager constructed in sequential mode ************ " << G4endl;
105 #endif
106 
107 
108  // -- Set mandatory initialization classes
110  runManager->SetUserInitialization(detector);
111  // -- Select a physics list
112  FTFP_BERT* physicsList = new FTFP_BERT;
113  // -- And augment it with biasing facilities:
114  G4GenericBiasingPhysics* biasingPhysics = new G4GenericBiasingPhysics();
115  if ( onOffBiasing == "on" )
116  {
117  biasingPhysics->Bias("gamma");
118  biasingPhysics->Bias("neutron");
119  physicsList->RegisterPhysics(biasingPhysics);
120  G4cout << " ********************************************************* " << G4endl;
121  G4cout << " ********** processes are wrapped for biasing ************ " << G4endl;
122  G4cout << " ********************************************************* " << G4endl;
123  }
124  else
125  {
126  G4cout << " ************************************************* " << G4endl;
127  G4cout << " ********** processes are not wrapped ************ " << G4endl;
128  G4cout << " ************************************************* " << G4endl;
129  }
130  runManager->SetUserInitialization(physicsList);
131  // -- Action initialization:
133 
134  // Initialize G4 kernel
135  runManager->Initialize();
136 
137 
138 #ifdef G4VIS_USE
139  // Initialize visualization
140  G4VisManager* visManager = new G4VisExecutive;
141  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
142  visManager->Initialize();
143 #endif
144 
145  // Get the pointer to the User Interface manager
146  G4UImanager* UImanager = G4UImanager::GetUIpointer();
147 
148  if ( macro != "" ) // batch mode
149  {
150  G4String command = "/control/execute ";
151  UImanager->ApplyCommand(command+macro);
152  }
153  else
154  { // interactive mode : define UI session
155 #ifdef G4UI_USE
156  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
157 #ifdef G4VIS_USE
158  // UImanager->ApplyCommand("/control/execute vis.mac");
159 #endif
160  // if (ui->IsGUI())
161  // UImanager->ApplyCommand("/control/execute gui.mac");
162  ui->SessionStart();
163  delete ui;
164 #endif
165  }
166 
167 
168 #ifdef G4VIS_USE
169  delete visManager;
170 #endif
171  delete runManager;
172 
173 
174  return 0;
175 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
void SetNumberOfThreads(G4int n)
int G4int
Definition: G4Types.hh:78
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
G4GLOB_DLL std::ostream G4cout
void Initialize()
TFTFP_BERT< G4VModularPhysicsList > FTFP_BERT
Definition: FTFP_BERT.hh:63
virtual void Initialize()
#define G4endl
Definition: G4ios.hh:61
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:446
void Bias(const G4String &particleName)
Here is the call graph for this function: