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
|
#ifndef HeavyFlavorAnalysis_SpecificDecay_BPHMuonEtaSelect_h
#define HeavyFlavorAnalysis_SpecificDecay_BPHMuonEtaSelect_h
/** \class BPHMuonEtaSelect
*
* Descrietaion:
* Class for muon selection by eta
*
* \author Paolo Ronchese INFN Padova
*
*/
//----------------------
// Base Class Headers --
//----------------------
#include "HeavyFlavorAnalysis/SpecificDecay/interface/BPHParticleEtaSelect.h"
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
#include "DataFormats/PatCandidates/interface/Muon.h"
//---------------
// C++ Headers --
//---------------
// ---------------------
// -- Class Interface --
// ---------------------
class BPHMuonEtaSelect : public BPHParticleEtaSelect {
public:
/** Constructor
*/
BPHMuonEtaSelect(double eta) : BPHParticleEtaSelect(eta) {}
// deleted copy constructor and assignment operator
BPHMuonEtaSelect(const BPHMuonEtaSelect& x) = delete;
BPHMuonEtaSelect& operator=(const BPHMuonEtaSelect& x) = delete;
/** Destructor
*/
~BPHMuonEtaSelect() override = default;
/** Operations
*/
/// select muon
bool accept(const reco::Candidate& cand) const override {
if (dynamic_cast<const pat::Muon*>(&cand) == nullptr)
return false;
return BPHParticleEtaSelect::accept(cand);
}
};
#endif
|