00001 // $Header: /cvs/lcd/slic/src/SteppingAction.cc,v 1.12 2006/07/06 22:07:30 jeremy Exp $ 00002 #include "SteppingAction.hh" 00003 00004 // slic 00005 #include "TrajectoryManager.hh" 00006 00007 // lcdd 00008 #include "G4UserRegionInformation.hh" 00009 #include "TrackInformation.hh" 00010 00011 #include "G4UserSteppingAction.hh" 00012 00013 namespace slic 00014 { 00015 00016 SteppingAction::SteppingAction() 00017 {} 00018 00019 SteppingAction::~SteppingAction() 00020 {} 00021 00022 void SteppingAction::UserSteppingAction(const G4Step* aStep) 00023 { 00024 // TrajectoryManager's stepping action 00025 TrajectoryManager::instance()->stepping( aStep ); 00026 } 00027 } 00028
1.5.4