88 lines
2.6 KiB
C++
88 lines
2.6 KiB
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: AnaEx01.cc,v 1.6 2000/11/15 13:46:23 barrand Exp $
|
|
// GEANT4 tag $Name: geant4-03-01 $
|
|
//
|
|
//
|
|
// --------------------------------------------------------------
|
|
// GEANT 4 - exampleN03
|
|
//
|
|
// For information related to this code contact:
|
|
// CERN, IT Division, ASD Group
|
|
// --------------------------------------------------------------
|
|
// Comments
|
|
//
|
|
// --------------------------------------------------------------
|
|
|
|
#include "G4RunManager.hh"
|
|
#include "G4UImanager.hh"
|
|
#include "G4UIterminal.hh"
|
|
|
|
#include "Randomize.hh"
|
|
|
|
#ifdef G4ANALYSIS_USE
|
|
#include "AnaEx01AnalysisManager.hh"
|
|
#endif
|
|
|
|
#include "AnaEx01DetectorConstruction.hh"
|
|
#include "AnaEx01PhysicsList.hh"
|
|
#include "AnaEx01PrimaryGeneratorAction.hh"
|
|
#include "AnaEx01RunAction.hh"
|
|
#include "AnaEx01EventAction.hh"
|
|
#include "AnaEx01SteppingAction.hh"
|
|
#include "AnaEx01SteppingVerbose.hh"
|
|
|
|
int main(int argc,char** argv) {
|
|
|
|
// choose the Random engine
|
|
HepRandom::setTheEngine(new RanecuEngine);
|
|
|
|
//my Verbose output class
|
|
G4VSteppingVerbose::SetInstance(new AnaEx01SteppingVerbose);
|
|
|
|
// Construct the default run manager
|
|
G4RunManager * runManager = new G4RunManager;
|
|
|
|
// set mandatory initialization classes
|
|
AnaEx01DetectorConstruction* detector = new AnaEx01DetectorConstruction;
|
|
runManager->SetUserInitialization(detector);
|
|
runManager->SetUserInitialization(new AnaEx01PhysicsList);
|
|
|
|
#ifdef G4ANALYSIS_USE
|
|
AnaEx01AnalysisManager* analysisManager =
|
|
new AnaEx01AnalysisManager(argc==1?"Lab":argv[1]);
|
|
runManager->SetUserAction(new AnaEx01PrimaryGeneratorAction(detector));
|
|
runManager->SetUserAction(new AnaEx01RunAction(analysisManager));
|
|
runManager->SetUserAction(new AnaEx01EventAction(analysisManager));
|
|
runManager->SetUserAction(new AnaEx01SteppingAction(analysisManager));
|
|
#else
|
|
runManager->SetUserAction(new AnaEx01PrimaryGeneratorAction(detector));
|
|
runManager->SetUserAction(new AnaEx01RunAction());
|
|
runManager->SetUserAction(new AnaEx01EventAction());
|
|
runManager->SetUserAction(new AnaEx01SteppingAction());
|
|
#endif
|
|
|
|
//Initialize G4 kernel
|
|
runManager->Initialize();
|
|
|
|
// get the pointer to the User Interface manager
|
|
G4UImanager* UI = G4UImanager::GetUIpointer();
|
|
|
|
// Batch mode
|
|
UI->ApplyCommand("/control/execute run.mac");
|
|
|
|
// job termination
|
|
#ifdef G4ANALYSIS_USE
|
|
delete analysisManager;
|
|
#endif
|
|
delete runManager;
|
|
|
|
return 0;
|
|
}
|
|
|