File indexing completed on 2023-03-17 11:24:23
0001 #ifndef Forward_PltSD_h
0002 #define Forward_PltSD_h
0003
0004 #include "SimG4CMS/Forward/interface/TimingSD.h"
0005 #include "FWCore/Framework/interface/Frameworkfwd.h"
0006 #include "FWCore/ParameterSet/interface/ParameterSetfwd.h"
0007
0008 #include <string>
0009
0010 class G4Step;
0011 class SimTrackManager;
0012
0013 class PltSD : public TimingSD {
0014 public:
0015 PltSD(const std::string &, const SensitiveDetectorCatalog &, edm::ParameterSet const &, const SimTrackManager *);
0016 ~PltSD() override;
0017
0018 uint32_t setDetUnitId(const G4Step *) override;
0019
0020 protected:
0021 bool checkHit(const G4Step *, BscG4Hit *) override;
0022
0023 private:
0024 double energyCut;
0025 double energyHistoryCut;
0026 };
0027
0028 #endif