Geant4  10.02.p03
common/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"
Include dependency graph for common/testCommon.cc:

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 47 of file common/testCommon.cc.

48 {
49  // First construct necessary classes
50  //
51  G4RunManager * runManager = new G4RunManager;
52  G4VModularPhysicsList* physicsList = new FTFP_BERT;
53  runManager->SetUserInitialization(physicsList);
54 
55  // Instantiate all detector construction classes
56  ExG4DetectorConstruction01* detectorConstruction01
58  ExG4DetectorConstruction02* detectorConstruction02
60 
61  // Instantiate all physics list classes
62  ExG4PhysicsList00* physicsList00 = new ExG4PhysicsList00();
63 
64  // Instantiate all primary generator actions classes
65  ExG4PrimaryGeneratorAction01* primaryGeneratorAction01
67  ExG4PrimaryGeneratorAction02* primaryGeneratorAction02
69 
70  // Instantiate all user actions classes
71  ExG4EventAction01* eventAction01 = new ExG4EventAction01();
72  ExG4RunAction01* runAction01 = new ExG4RunAction01();
73 
74  // delete all
75  delete detectorConstruction01;
76  delete detectorConstruction02;
77  delete physicsList00;
78  delete primaryGeneratorAction01;
79  delete primaryGeneratorAction02;
80  delete eventAction01;
81  delete runAction01;
82 
83  return 0;
84 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
The primary generator class with general particle source.
Simple detector construction with only a world volume.
Physics list with geantino and charged geantino only.
Simple detector construction with a box volume placed in a world.
TFTFP_BERT< G4VModularPhysicsList > FTFP_BERT
Definition: FTFP_BERT.hh:63
The primary generator class with particle gun.
Here is the call graph for this function: