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:
34  BPHParticleEtaSelect(double eta) : etaMax(eta) {}
35 
38  ~BPHParticleEtaSelect() override {}
39 
42  bool accept(const reco::Candidate& cand) const override { return (fabs(cand.p4().eta()) < etaMax); }
44 
46  void setEtaMax(double eta) {
47  etaMax = eta;
48  return;
49  }
50 
52  double getEtaMax() const { return etaMax; }
53 
54 private:
55  // private copy and assigment constructors
58 
59  double etaMax;
60 };
61 
62 #endif
BPHParticleEtaSelect & operator=(const BPHParticleEtaSelect &x)=delete
bool accept(const reco::Candidate &cand) const override
select particle
virtual const LorentzVector & p4() const =0
four-momentum Lorentz vector
void setEtaMax(double eta)
set eta max
double getEtaMax() const
get current eta max