203 lines
5.3 KiB
C++
203 lines
5.3 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: EXPO.cc,v 1.8 2000/03/17 08:56:10 barrand Exp $
|
|
// GEANT4 tag $Name: geant4-03-01 $
|
|
//
|
|
#include <stdlib.h>
|
|
|
|
/*Geant4*/
|
|
#include <G4RunManager.hh>
|
|
|
|
#ifdef __sun
|
|
#include "EXPO_Templates.hh"
|
|
// This :
|
|
/*
|
|
template class G4RWTValOrderedVector<MyTrackerHit>;
|
|
template class G4RWTValOrderedVector<MyCalorimeterHit>;
|
|
template class G4RWTValVector<MyTrackerHit>;
|
|
template class G4RWTValVector<MyCalorimeterHit>;
|
|
template class G4Allocator<MyCalorimeterHit>;
|
|
template class G4Allocator<MyTrackerHit>;
|
|
*/
|
|
#endif
|
|
|
|
|
|
/*OPACS*/
|
|
/*begin Want_h*/
|
|
#include <WoWo.h>
|
|
#include <WoXtw.h>
|
|
#include <WoXm.h>
|
|
#include <WoXo.h>
|
|
#include <WoHTML.h>
|
|
#include <WoXz.h>
|
|
#include <WoDeX.h>
|
|
#include <WoCi.h>
|
|
#include <WoPacksCi.h>
|
|
#include <Wotcl.h>
|
|
#include <WoHoXz.h>
|
|
#include <WoXaw.h>
|
|
#include <WoG3o.h>
|
|
#include <WoG4o.h>
|
|
#include <WoFNAL.h>
|
|
#include <WoPAW.h> /*Need HAS_XZ and HAS_PAW flags.*/
|
|
/*end Want_h*/
|
|
|
|
#include <OHistogram.h>
|
|
|
|
/*G4o*/
|
|
#include <G4oState.hh>
|
|
|
|
/***************************************************************************/
|
|
/***** G4 EXPO customization ***********************************************/
|
|
/***************************************************************************/
|
|
#include <EXPO_Detector.icc>
|
|
#include <EXPO_Primary.icc>
|
|
#include <EXPO_PhysicsList.icc>
|
|
|
|
#include <G4UserRunAction.hh>
|
|
#include <G4Run.hh>
|
|
#include <G4Timer.hh>
|
|
class EXPO_RunAction : public G4UserRunAction {
|
|
private:
|
|
G4Timer* timer;
|
|
G4int runIDcounter;
|
|
#ifdef HAS_HO
|
|
static OHistogram myHisto1D;
|
|
static OHistogram myHisto2D;
|
|
#endif /*HAS_HO*/
|
|
public:
|
|
EXPO_RunAction() {
|
|
timer = new G4Timer;
|
|
runIDcounter = 0;
|
|
}
|
|
~EXPO_RunAction() {
|
|
delete timer;
|
|
}
|
|
void BeginOfRunAction(const G4Run* aRun) {
|
|
CWarnF ("### Run %d start.\n",aRun->GetRunID());
|
|
timer->Start();
|
|
#ifdef HAS_HO
|
|
// Histo are created in an osh script somewhere (G4oRunBegin.osh).
|
|
myHisto1D = OHistogramGetIdentifier("HepJamesRandom1");
|
|
myHisto2D = OHistogramGetIdentifier("HepJamesVsDRand48");
|
|
#endif /*HAS_HO*/
|
|
}
|
|
void EndOfRunAction(const G4Run* aRun) {
|
|
timer->Stop();
|
|
if (timer->IsValid()) {
|
|
CWarnF ("number of event = %d User=%gs Real=%gs Sys=%gs\n",
|
|
aRun->GetNumberOfEvent(),
|
|
timer->GetUserElapsed(),
|
|
timer->GetRealElapsed(),
|
|
timer->GetSystemElapsed());
|
|
} else {
|
|
CWarnF ("number of event = %d User=****s Real=****s Sys=****s\n",
|
|
aRun->GetNumberOfEvent());
|
|
}
|
|
#ifdef HAS_HO
|
|
myHisto1D = NULL;
|
|
myHisto2D = NULL;
|
|
#endif /*HAS_HO*/
|
|
}
|
|
#ifdef HAS_HO
|
|
static OHistogram get_1d(){return myHisto1D; }
|
|
static OHistogram Get2d(){return myHisto2D; }
|
|
#endif /*HAS_HO*/
|
|
};
|
|
#ifdef HAS_HO
|
|
OHistogram EXPO_RunAction::myHisto1D = NULL;
|
|
OHistogram EXPO_RunAction::myHisto2D = NULL;
|
|
#endif /*HAS_HO*/
|
|
|
|
#include <G4UserEventAction.hh>
|
|
class EXPO_EventAction : public G4UserEventAction {
|
|
public:
|
|
EXPO_EventAction() {
|
|
}
|
|
~EXPO_EventAction() {
|
|
}
|
|
void BeginOfEventAction(const G4Event*) {
|
|
}
|
|
void EndOfEventAction(const G4Event*) {
|
|
}
|
|
};
|
|
|
|
#include "G4UserSteppingAction.hh"
|
|
class EXPO_SteppingAction : public G4UserSteppingAction {
|
|
private:
|
|
HepJamesRandom theJamesEngine;
|
|
DRand48Engine theDRand48Engine;
|
|
public:
|
|
EXPO_SteppingAction(){};
|
|
~EXPO_SteppingAction(){};
|
|
void UserSteppingAction(const G4Step*) {
|
|
#ifdef HAS_HO
|
|
OHistogram h1 = EXPO_RunAction::get_1d();
|
|
OHistogram h2 = EXPO_RunAction::Get2d();
|
|
|
|
HepRandom::setTheEngine (&theJamesEngine);
|
|
double james = RandGauss::shoot(0.3,0.1);
|
|
OHistogramFillOneDimensional(h1,james,0.01);
|
|
|
|
HepRandom::setTheEngine(&theDRand48Engine);
|
|
double d48 = RandGauss::shoot(0.7,0.1);
|
|
OHistogramFillTwoDimensional(h2,james,d48,0.01);
|
|
#endif /*HAS_HO*/
|
|
}
|
|
};
|
|
|
|
static char what[] = "@(#)EXPO v3";
|
|
/***************************************************************************/
|
|
int main (
|
|
int a_argn
|
|
,char** a_args
|
|
)
|
|
/***************************************************************************/
|
|
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
|
|
{
|
|
/*.........................................................................*/
|
|
what[0] = '@'; /*c++ no warning.*/
|
|
/*begin Want_c*/
|
|
#include <WoWo.ic>
|
|
#include <WoXtw.ic>
|
|
#include <WoXm.ic>
|
|
#include <WoXo.ic>
|
|
#include <WoHTML.ic>
|
|
#include <WoXz.ic>
|
|
#include <WoDeX.ic>
|
|
#include <WoCi.ic>
|
|
#include <WoPacksCi.ic>
|
|
#include <Wotcl.ic>
|
|
#include <WoHoXz.ic>
|
|
#include <WoXaw.ic>
|
|
#include <WoG3o.ic>
|
|
#include <WoG4o.ic>
|
|
#include <WoFNAL.ic>
|
|
#include <WoPAW.ic>
|
|
/*end Want_c*/
|
|
|
|
G4RunManager* runManager = new G4RunManager;
|
|
runManager->SetUserInitialization (new EXPO_DetectorConstruction);
|
|
runManager->SetUserInitialization (new EXPO_PhysicsList);
|
|
runManager->SetUserAction (new EXPO_RunAction);
|
|
runManager->SetUserAction (new EXPO_PrimaryGeneratorAction);
|
|
runManager->SetUserAction (new EXPO_EventAction);
|
|
runManager->SetUserAction (new EXPO_SteppingAction);
|
|
|
|
G4oState* state = new G4oState("EXPO_");
|
|
|
|
WoStartup (a_argn,a_args);
|
|
WoProcessEvents ();
|
|
WoClearClass ();
|
|
|
|
delete state;
|
|
delete runManager;
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|