Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:27

0001 #ifndef LaserAlignmentSimulation_LaserTrackingAction_H
0002 #define LaserAlignmentSimulation_LaserTrackingAction_H
0003 
0004 /** \class LaserTrackingAction
0005  *  the Laser Tracking Action
0006  *
0007  *  $Date: 2007/06/11 14:44:28 $
0008  *  $Revision: 1.3 $
0009  *  \author Maarten Thomas
0010  */
0011 
0012 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0013 
0014 #include "G4TrackingManager.hh"
0015 
0016 class LaserTrackingAction : public G4UserTrackingAction {
0017 public:
0018   /// constructor
0019   LaserTrackingAction(edm::ParameterSet const &theConf);
0020   /// destructor
0021   ~LaserTrackingAction() override;
0022 
0023   /// pre tracking action
0024   void PreUserTrackingAction(const G4Track *theTrack) override;
0025   /// post tracking action
0026   void PostUserTrackingAction(const G4Track *theTrack) override;
0027 
0028 protected:
0029 };
0030 #endif