Import Geant4 0.1.0 source tree
This commit is contained in:
@@ -9,11 +9,11 @@ class ExE02EventAction : public G4UserEventAction
|
||||
{
|
||||
public:
|
||||
ExE02EventAction();
|
||||
~ExE02EventAction();
|
||||
virtual ~ExE02EventAction();
|
||||
|
||||
public:
|
||||
void BeginOfEventAction();
|
||||
void EndOfEventAction();
|
||||
virtual void BeginOfEventAction(const G4Event*);
|
||||
virtual void EndOfEventAction(const G4Event*);
|
||||
|
||||
private:
|
||||
G4int colID1;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// $Id: ExE02PhysicsList.hh,v 1.1 1998/10/14 15:25:44 allison Exp $
|
||||
// $Id: ExE02PhysicsList.hh,v 1.2 1999/04/17 04:50:02 kurasige Exp $
|
||||
// ------------------------------------------------------------
|
||||
// GEANT 4 class header file
|
||||
//
|
||||
@@ -26,7 +26,7 @@ class ExE02PhysicsList: public G4VUserPhysicsList
|
||||
virtual void ConstructProcess();
|
||||
|
||||
//
|
||||
virtual void SetCuts(G4double aCut);
|
||||
virtual void SetCuts();
|
||||
|
||||
protected:
|
||||
// these methods Construct particles
|
||||
|
||||
@@ -11,14 +11,13 @@ class ExE02RunAction : public G4UserRunAction
|
||||
{
|
||||
public:
|
||||
ExE02RunAction();
|
||||
~ExE02RunAction();
|
||||
virtual ~ExE02RunAction();
|
||||
|
||||
public:
|
||||
void BeginOfRunAction(G4Run* aRun);
|
||||
void EndOfRunAction(G4Run* aRun);
|
||||
virtual void BeginOfRunAction(const G4Run* aRun);
|
||||
virtual void EndOfRunAction(const G4Run* aRun);
|
||||
|
||||
private:
|
||||
G4int runIDcounter;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -13,12 +13,12 @@ class ExE02StackingAction : public G4UserStackingAction
|
||||
{
|
||||
public:
|
||||
ExE02StackingAction();
|
||||
~ExE02StackingAction();
|
||||
virtual ~ExE02StackingAction();
|
||||
|
||||
public:
|
||||
G4ClassificationOfNewTrack ClassifyNewTrack(G4Track *const aTrack);
|
||||
void NewStage();
|
||||
void PrepareNewEvent();
|
||||
virtual G4ClassificationOfNewTrack ClassifyNewTrack(const G4Track* aTrack);
|
||||
virtual void NewStage();
|
||||
virtual void PrepareNewEvent();
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user