Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 testCommon.cc:

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
57  ExG4DetectorConstruction02* detectorConstruction02
59 
60  // Instantiate all physics list classes
61  ExG4PhysicsList00* physicsList00 = new ExG4PhysicsList00();
62 
63  // Instantiate all primary generator actions classes
64  ExG4PrimaryGeneratorAction01* primaryGeneratorAction01
66  ExG4PrimaryGeneratorAction02* primaryGeneratorAction02
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 }
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: