Geant4  10.02.p01
PurgMag.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 // Code developed by:
27 // S.Larsson
28 //
29 // *********************
30 // * *
31 // * PurgMag.cc *
32 // * *
33 // *********************
34 //
35 // $Id: PurgMag.cc 84477 2014-10-16 08:44:04Z gcosmo $
36 //
37 // Comments: Main program for the Purgin Magnet example.
38 //
39 
40 #ifdef G4MULTITHREADED
41 #include "G4MTRunManager.hh"
42 #else
43 #include "G4RunManager.hh"
44 #endif
45 
46 #include "G4UImanager.hh"
47 #include "Randomize.hh"
48 
49 #ifdef G4VIS_USE
50 #include "G4VisExecutive.hh"
51 #endif
52 
53 #ifdef G4UI_USE
54 #include "G4UIExecutive.hh"
55 #endif
56 
58 #include "PurgMagPhysicsList.hh"
60 
61 int main(int argc,char** argv) {
62 
63  //choose the Random engine
64  G4Random::setTheEngine(new CLHEP::RanecuEngine);
65 
66  // Construct the default run manager
67 #ifdef G4MULTITHREADED
68  G4MTRunManager* runManager = new G4MTRunManager;
69  //runManager->SetNumberOfThreads(2);
70 #else
71  G4RunManager* runManager = new G4RunManager;
72 #endif
73 
74  // set mandatory initialization classes
76  runManager->SetUserInitialization(new PurgMagPhysicsList);
78 
79 
80 #ifdef G4VIS_USE
81  // visualization manager
82  G4VisManager* visManager = new G4VisExecutive;
83  visManager->Initialize();
84 #endif
85 
86  //Initialize G4 kernel
87  runManager->Initialize();
88 
89  // get the pointer to the User Interface manager
90  G4UImanager* UImanager = G4UImanager::GetUIpointer();
91 
92 
93  if (argc==1) // Define UI session for interactive mode.
94  {
95 #ifdef G4UI_USE
96  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
97 #ifdef G4VIS_USE
98  UImanager->ApplyCommand("/control/execute vis.mac");
99 #endif
100  ui->SessionStart();
101  delete ui;
102 #endif
103  }
104  else // Batch mode
105  {
106  G4String command = "/control/execute ";
107  G4String fileName = argv[1];
108  UImanager->ApplyCommand(command+fileName);
109  }
110 
111  // job termination
112 #ifdef G4VIS_USE
113  delete visManager;
114 #endif
115  delete runManager;
116 
117  return 0;
118 }
119 
int main(int argc, char **argv)
Definition: PurgMag.cc:61
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
void Initialize()
virtual void Initialize()
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:446