1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#ifndef HeavyFlavorAnalysis_SpecificDecay_BPHParticleEtaSelect_h
#define HeavyFlavorAnalysis_SpecificDecay_BPHParticleEtaSelect_h
/** \class BPHParticleEtaSelect
*
* Descrietaion:
* Class for particle selection by eta
*
* \author Paolo Ronchese INFN Padova
*
*/
//----------------------
// Base Class Headers --
//----------------------
#include "HeavyFlavorAnalysis/RecoDecay/interface/BPHRecoSelect.h"
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
#include "DataFormats/RecoCandidate/interface/RecoCandidate.h"
//---------------
// C++ Headers --
//---------------
// ---------------------
// -- Class Interface --
// ---------------------
class BPHParticleEtaSelect : public BPHRecoSelect {
public:
/** Constructor
*/
BPHParticleEtaSelect(double eta) : etaMax(eta) {}
// deleted copy constructor and assignment operator
BPHParticleEtaSelect(const BPHParticleEtaSelect& x) = delete;
BPHParticleEtaSelect& operator=(const BPHParticleEtaSelect& x) = delete;
/** Destructor
*/
~BPHParticleEtaSelect() override = default;
/** Operations
*/
/// select particle
bool accept(const reco::Candidate& cand) const override { return (fabs(cand.p4().eta()) <= etaMax); }
/// set eta max
void setEtaMax(double eta) {
etaMax = eta;
return;
}
/// get current eta max
double getEtaMax() const { return etaMax; }
private:
double etaMax;
};
#endif
|