Import Geant4 1.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:28:20 +02:00
parent aaa409b6ee
commit ca1c8cb059
2995 changed files with 106830 additions and 299600 deletions
@@ -0,0 +1,30 @@
#include "PersEx01StackingAction.hh"
#include "G4Track.hh"
#include "G4TrackStatus.hh"
#include "G4ParticleDefinition.hh"
#include "G4ParticleTypes.hh"
#include "G4ios.hh"
PersEx01StackingAction::PersEx01StackingAction()
{;}
PersEx01StackingAction::~PersEx01StackingAction()
{;}
G4ClassificationOfNewTrack
PersEx01StackingAction::ClassifyNewTrack(const G4Track * aTrack)
{
G4ClassificationOfNewTrack classification = fKill;
if(aTrack->GetParentID()==0)
{ classification = fUrgent; }
return classification;
}
void PersEx01StackingAction::NewStage()
{;}
void PersEx01StackingAction::PrepareNewEvent()
{;}