LArSoft  v06_85_00
Liquid Argon Software toolkit - http://larsoft.org/
TestEm7.cc File Reference

Main program of the electromagnetic/TestEm7 example. More...

#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
#include "PrimaryGeneratorAction.hh"
#include "RunAction.hh"
#include "TrackingAction.hh"
#include "SteppingAction.hh"
#include "SteppingVerbose.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the electromagnetic/TestEm7 example.

Definition in file TestEm7.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 57 of file TestEm7.cc.

References track.

57  {
58 
59  //choose the Random engine
60  CLHEP::HepRandom::setTheEngine(new CLHEP::RanecuEngine);
61 
62  //my Verbose output class
63  G4VSteppingVerbose::SetInstance(new SteppingVerbose);
64 
65  //Construct the default run manager
66  G4RunManager * runManager = new G4RunManager;
67 
68  //set mandatory initialization classes
69  //
71  PhysicsList* phys = new PhysicsList();
72 
73  runManager->SetUserInitialization(det);
74  runManager->SetUserInitialization(phys);
75 
76  //set user action classes
77  //
79  RunAction* run = new RunAction(det,phys,kin);
80  TrackingAction* track = new TrackingAction(det,run);
81  SteppingAction* step = new SteppingAction(det,run);
82 
83  runManager->SetUserAction(kin);
84  runManager->SetUserAction(run);
85  runManager->SetUserAction(track);
86  runManager->SetUserAction(step);
87 
88  //get the pointer to the User Interface manager
89  G4UImanager* UI = G4UImanager::GetUIpointer();
90 
91  if (argc!=1) // batch mode
92  {
93  G4String command = "/control/execute ";
94  G4String fileName = argv[1];
95  UI->ApplyCommand(command+fileName);
96  }
97 
98  else //define visualization and UI terminal for interactive mode
99  {
100 #ifdef G4VIS_USE
101  G4VisManager* visManager = new G4VisExecutive;
102  visManager->Initialize();
103 #endif
104 
105 #ifdef G4UI_USE
106  G4UIExecutive * ui = new G4UIExecutive(argc,argv);
107  ui->SessionStart();
108  delete ui;
109 #endif
110 
111 #ifdef G4VIS_USE
112  delete visManager;
113 #endif
114  }
115 
116  //job termination
117  //
118  delete runManager;
119 
120  return 0;
121 }
TConfigurablePhysicsList< ModularPhysicsList > PhysicsList
Definition: PhysicsList.h:86
Float_t track
Definition: plot.C:34