Files
geant4/source/event/src/G4UserStackingAction.cc
T
2016-06-08 16:03:00 +02:00

35 lines
753 B
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: G4UserStackingAction.cc,v 1.3 1999/12/15 14:49:42 gunter Exp $
// GEANT4 tag $Name: geant4-03-01 $
//
#include "G4UserStackingAction.hh"
#include "G4Track.hh"
#include "G4ios.hh"
G4UserStackingAction::G4UserStackingAction()
{;}
G4UserStackingAction::~G4UserStackingAction()
{;}
G4ClassificationOfNewTrack G4UserStackingAction::ClassifyNewTrack
(const G4Track* aTrack)
{
return fUrgent;
}
void G4UserStackingAction::NewStage()
{;}
void G4UserStackingAction::PrepareNewEvent()
{;}