LArSoft  v06_85_00
Liquid Argon Software toolkit - http://larsoft.org/
testCommon.cc File Reference
#include "ExG4DetectorConstruction01.hh"
#include "ExG4DetectorConstruction02.hh"
#include "ExG4PhysicsList00.hh"
#include "ExG4PrimaryGeneratorAction01.hh"
#include "ExG4PrimaryGeneratorAction02.hh"
#include "ExG4EventAction01.hh"
#include "ExG4RunAction01.hh"
#include "G4RunManager.hh"
#include "FTFP_BERT.hh"

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

int main ( )

Definition at line 46 of file testCommon.cc.

47 {
48  // First construct necessary classes
49  //
50  G4RunManager * runManager = new G4RunManager;
51  G4VModularPhysicsList* physicsList = new FTFP_BERT;
52  runManager->SetUserInitialization(physicsList);
53 
54  // Instantiate all detector construction classes
55  ExG4DetectorConstruction01* detectorConstruction01
56  = new ExG4DetectorConstruction01;
57  ExG4DetectorConstruction02* detectorConstruction02
58  = new ExG4DetectorConstruction02;
59 
60  // Instantiate all physics list classes
61  ExG4PhysicsList00* physicsList00 = new ExG4PhysicsList00();
62 
63  // Instantiate all primary generator actions classes
64  ExG4PrimaryGeneratorAction01* primaryGeneratorAction01
65  = new ExG4PrimaryGeneratorAction01();
66  ExG4PrimaryGeneratorAction02* primaryGeneratorAction02
67  = new ExG4PrimaryGeneratorAction02();
68 
69  // Instantiate all user actions classes
70  ExG4EventAction01* eventAction01 = new ExG4EventAction01();
71  ExG4RunAction01* runAction01 = new ExG4RunAction01();
72 
73  // delete all
74  delete detectorConstruction01;
75  delete detectorConstruction02;
76  delete physicsList00;
77  delete primaryGeneratorAction01;
78  delete primaryGeneratorAction02;
79  delete eventAction01;
80  delete runAction01;
81 
82  return 0;
83 }