LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
Brachy.cc File Reference
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "G4UIExecutive.hh"
#include "BrachyActionInitialization.hh"
#include "BrachyDetectorConstruction.hh"
#include "BrachyPhysicsList.hh"
#include "BrachyPrimaryGeneratorAction.hh"
#include "G4SDManager.hh"
#include "Randomize.hh"
#include "G4UImessenger.hh"
#include "G4ScoringManager.hh"
#include "BrachyUserScoreWriter.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 79 of file Brachy.cc.

References Initialize(), and seed.

81 {
82 #ifdef G4MULTITHREADED
83  G4MTRunManager* pRunManager = new G4MTRunManager;
84  pRunManager->SetNumberOfThreads(4); // Is equal to 2 by default
85 #else
86  G4RunManager* pRunManager = new G4RunManager;
87 #endif
88 
89  G4int seed = 0;
90 
91  G4Random::setTheSeed(seed);
92 
93  G4cout << "***********************" << G4endl;
94  G4cout << "*** " << seed << " ***" << G4endl;
95  G4cout << "***********************" << G4endl;
96  // Access to the Scoring Manager pointer
97 
98  G4ScoringManager* scoringManager = G4ScoringManager::GetScoringManager();
99 
100  // Overwrite the default output file with user-defined one
101  scoringManager->SetScoreWriter(new BrachyUserScoreWriter());
102 
103  // Initialize the physics component
104  pRunManager -> SetUserInitialization(new BrachyPhysicsList);
105 
106  // Initialize the detector component
107  BrachyDetectorConstruction *pDetectorConstruction = new BrachyDetectorConstruction();
108  pRunManager -> SetUserInitialization(pDetectorConstruction);
109 
110 // Analysis Manager
111 #ifdef ANALYSIS_USE
112  BrachyAnalysisManager* analysis = BrachyAnalysisManager::GetInstance();
113  analysis -> book();
114 #endif
115 
116  // User action initialization
117 
118  BrachyActionInitialization* actions = new BrachyActionInitialization();
119  pRunManager->SetUserInitialization(actions);
120 
121  //Initialize G4 kernel
122  pRunManager -> Initialize();
123 
125 #ifdef G4VIS_USE
126  // Visualization manager
127  G4VisManager* visManager = new G4VisExecutive;
128  visManager->Initialize();
129 #endif
130 
131  // get the pointer to the User Interface manager
132  G4UImanager* UImanager = G4UImanager::GetUIpointer();
133  if (argc == 1) // Define UI session for interactive mode.
134  {
135 #ifdef G4UI_USE
136  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
137  G4cout << " UI session starts ..." << G4endl;
138  UImanager -> ApplyCommand("/control/execute VisualisationMacro.mac");
139  ui -> SessionStart();
140  delete ui;
141 #endif
142  }
143  else // Batch mode
144  {
145  G4String command = "/control/execute ";
146  G4String fileName = argv[1];
147  UImanager -> ApplyCommand(command+fileName);
148  }
149 
150  // Job termination
151 #ifdef G4VIS_USE
152  delete visManager;
153 #endif
154 
155 #ifdef ANALYSIS_USE
156 // Close the output ROOT file with the results
157  analysis -> save();
158  delete analysis;
159 #endif
160 
161  delete pRunManager;
162 
163  return 0;
164 }
void Initialize()
Definition: errprop.cc:101
long seed
Definition: chem4.cc:68