ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
icsd.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file icsd.cc
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 // This example is provided by the Geant4-DNA collaboration
27 // Any report or published results obtained using the Geant4-DNA software
28 // shall cite the following Geant4-DNA collaboration publication:
29 // Med. Phys. 37 (2010) 4692-4708
30 // J. Comput. Phys. 274 (2014) 841-882
31 // The Geant4-DNA web site is available at http://geant4-dna.org
32 //
33 //
36 
37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
38 #include "G4Types.hh"
39 
40 #ifdef G4MULTITHREADED
41  #include "G4MTRunManager.hh"
42 #else
43  #include "G4RunManager.hh"
44 #endif
45 
46 #include "G4UImanager.hh"
47 #include "G4UIterminal.hh"
48 #include "G4UItcsh.hh"
49 #include "G4UIExecutive.hh"
50 
51 #include "G4VisExecutive.hh"
52 
53 #include "ActionInitialization.hh"
54 #include "DetectorConstruction.hh"
55 #include "PhysicsList.hh"
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
58 
59 int main(int argc,char** argv)
60 {
61  G4String macroName ("");
62 
63  // Detect if the user gave an argument (or not)
64  if(argc == 1) // Only the name of the program was used (no argument)
65  {
66  // We set the name of the macro to be used by default
67  macroName = "icsd.mac";
68  }
69  else if(argc == 2) // One argument was supplied
70  {
71  // The first argument is the name if the macro file to be used
72  macroName = argv[1];
73  }
74  else // More than one argument was supplied
75  {
76  G4Exception("main", "WRONG ARGUMENT NUMBER", FatalException,
77  "To many argument were provided.");
78  return 0;
79  }
80 
81  // Construct the default run manager
82 
83 #ifdef G4MULTITHREADED
84  G4MTRunManager* runManager = new G4MTRunManager;
85  runManager->SetNumberOfThreads(2); // Is equal to 2 by default
86 #else
87  G4RunManager* runManager = new G4RunManager;
88 #endif
89 
90  // Set mandatory user initialization classes
92  runManager->SetUserInitialization(detector);
93  runManager->SetUserInitialization(new PhysicsList);
94 
95  // User action initialization
97 
98  // Initialize G4 kernel
99  runManager->Initialize();
100 
101  // Get the pointer to the User Interface manager
102  G4UImanager* UImanager = G4UImanager::GetUIpointer();
103  G4String command = "/control/execute ";
104  UImanager->ApplyCommand(command+macroName);
105 
106  delete runManager;
107 
108  return 0;
109 }
110