File indexing completed on 2024-04-06 12:04:51
0001 #ifndef DataFormats_ParticleFlowReco_PFBrem_h
0002 #define DataFormats_ParticleFlowReco_PFBrem_h
0003
0004
0005
0006 #include "DataFormats/ParticleFlowReco/interface/PFRecTrack.h"
0007
0008 namespace reco {
0009
0010 class PFBrem : public PFRecTrack {
0011 public:
0012 PFBrem() {}
0013 PFBrem(double DP, double SigmaDP, unsigned int PointInd)
0014 : deltaP_(DP), sigmadeltaP_(SigmaDP), indPoint_(PointInd) {}
0015
0016 double DeltaP() const { return deltaP_; }
0017 double SigmaDeltaP() const { return sigmadeltaP_; }
0018 unsigned int indTrajPoint() const { return indPoint_; }
0019
0020 private:
0021 double deltaP_;
0022 double sigmadeltaP_;
0023 unsigned int indPoint_;
0024 };
0025
0026 }
0027
0028 #endif