File indexing completed on 2024-04-06 11:56:27
0001 #ifndef LaserAlignmentSimulation_LaserTrackingAction_H
0002 #define LaserAlignmentSimulation_LaserTrackingAction_H
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0013
0014 #include "G4TrackingManager.hh"
0015
0016 class LaserTrackingAction : public G4UserTrackingAction {
0017 public:
0018
0019 LaserTrackingAction(edm::ParameterSet const &theConf);
0020
0021 ~LaserTrackingAction() override;
0022
0023
0024 void PreUserTrackingAction(const G4Track *theTrack) override;
0025
0026 void PostUserTrackingAction(const G4Track *theTrack) override;
0027
0028 protected:
0029 };
0030 #endif