CMS 3D CMS Logo

BPHParticleEtaSelect.h
Go to the documentation of this file.
1 #ifndef HeavyFlavorAnalysis_SpecificDecay_BPHParticleEtaSelect_h
2 #define HeavyFlavorAnalysis_SpecificDecay_BPHParticleEtaSelect_h
3 
12 //----------------------
13 // Base Class Headers --
14 //----------------------
16 
17 //------------------------------------
18 // Collaborating Class Declarations --
19 //------------------------------------
21 
22 //---------------
23 // C++ Headers --
24 //---------------
25 
26 // ---------------------
27 // -- Class Interface --
28 // ---------------------
29 
31 public:
35 
36  // deleted copy constructor and assignment operator
39 
42  ~BPHParticleEtaSelect() override = default;
43 
46  bool accept(const reco::Candidate& cand) const override { return (fabs(cand.p4().eta()) <= etaMax); }
48 
50  void setEtaMax(double eta) {
51  etaMax = eta;
52  return;
53  }
54 
56  double getEtaMax() const { return etaMax; }
57 
58 private:
59  double etaMax;
60 };
61 
62 #endif
BPHParticleEtaSelect & operator=(const BPHParticleEtaSelect &x)=delete
bool accept(const reco::Candidate &cand) const override
select particle
~BPHParticleEtaSelect() override=default
void setEtaMax(double eta)
set eta max
double getEtaMax() const
get current eta max