CMS 3D CMS Logo

ZtoMMEventSelector.cc
Go to the documentation of this file.
9 #include "TLorentzVector.h"
10 
13 #include "TH1.h"
15 
16 using namespace std;
17 using namespace edm;
18 
20  verbose_(ps.getUntrackedParameter<bool>("verbose", false)),
21  muonTag_(ps.getUntrackedParameter<edm::InputTag>("muonInputTag", edm::InputTag("muons"))),
22  bsTag_(ps.getUntrackedParameter<edm::InputTag>("offlineBeamSpot", edm::InputTag("offlineBeamSpot"))),
23  muonToken_(consumes<reco::MuonCollection>(muonTag_)),
24  bsToken_(consumes<reco::BeamSpot>(bsTag_)),
25  maxEta_(ps.getUntrackedParameter<double>("maxEta", 2.1)),
26  minPt_(ps.getUntrackedParameter<double>("minPt", 5)),
27  maxNormChi2_(ps.getUntrackedParameter<double>("maxNormChi2", 10)),
28  maxD0_(ps.getUntrackedParameter<double>("maxD0", 0.02)),
29  maxDz_(ps.getUntrackedParameter<double>("maxDz", 20.)),
30  minPixelHits_(ps.getUntrackedParameter<uint32_t>("minPixelHits", 1)),
31  minStripHits_(ps.getUntrackedParameter<uint32_t>("minStripHits", 8)),
32  minChambers_(ps.getUntrackedParameter<uint32_t>("minChambers", 2)),
33  minMatches_(ps.getUntrackedParameter<uint32_t>("minMatches", 2)),
34  minMatchedStations_(ps.getUntrackedParameter<double>("minMatchedStations", 2)),
35  maxIso_(ps.getUntrackedParameter<double>("maxIso", 0.3)),
36  minPtHighest_(ps.getUntrackedParameter<double>("minPtHighest", 24)),
37  minInvMass_(ps.getUntrackedParameter<double>("minInvMass", 60)),
38  maxInvMass_(ps.getUntrackedParameter<double>("maxInvMass", 120))
39 {
40 }
42  // Read Muon Collection
44  iEvent.getByToken(muonToken_, muonColl);
45 
46  // and the beamspot
48  iEvent.getByToken(bsToken_, beamSpot);
49 
50  std::vector<TLorentzVector> list;
51  if (muonColl.isValid()) {
52  for (auto const& mu : *muonColl) {
53  if (!mu.isGlobalMuon()) continue;
54  if (!mu.isPFMuon()) continue;
55  if (std::fabs(mu.eta()) >= maxEta_) continue;
56  if (mu.pt() < minPt_) continue;
57 
58  reco::TrackRef gtk = mu.globalTrack();
59  double chi2 = gtk->chi2();
60  double ndof = gtk->ndof();
61  double chbyndof = (ndof > 0) ? chi2/ndof : 0;
62  if (chbyndof >= maxNormChi2_) continue;
63 
64  reco::TrackRef tk = mu.innerTrack();
65  double trkd0 = tk->d0();
66  double trkdz = tk->dz();
67  if (beamSpot.isValid()) {
68  trkd0 = -(tk->dxy(beamSpot->position()));
69  if (std::fabs(trkd0) >= maxD0_) continue;
70  trkdz = tk->dz(beamSpot->position());
71  if (std::fabs(trkdz) >= maxDz_) continue;
72  }
73  else {
74  edm::LogError("ZtoMMEventSelector") << "Error >> Failed to get BeamSpot for label: "
75  << bsTag_;
76  }
77 
78  const reco::HitPattern& hitp = gtk->hitPattern();
79  if (hitp.numberOfValidPixelHits() < minPixelHits_) continue;
80  if (hitp.numberOfValidStripHits() < minStripHits_) continue;
81 
82  // Hits/section in the muon chamber
83  if (mu.numberOfChambers() < minChambers_) continue;
84  if (mu.numberOfMatches() < minMatches_) continue;
85  if (mu.numberOfMatchedStations() < minMatchedStations_) continue;
87 
88  // PF Isolation
89  const reco::MuonPFIsolation& pfIso04 = mu.pfIsolationR04();
90  double absiso = pfIso04.sumChargedParticlePt + std::max(0.0, pfIso04.sumNeutralHadronEt + pfIso04.sumPhotonEt - 0.5 * pfIso04.sumPUPt);
91  if (absiso/mu.pt() > maxIso_) continue;
92 
93  TLorentzVector lv;
94  lv.SetPtEtaPhiE(mu.pt(), mu.eta(), mu.phi(), mu.energy());
95  list.push_back(lv);
96  }
97  }
98  else {
99  edm::LogError("ZtoMMEventSelector") << "Error >> Failed to get MuonCollection for label: " << muonTag_;
100  return false;
101  }
102 
103  if (list.size() < 2) return false;
104  if (list[0].Pt() < minPtHighest_) return false;
105  TLorentzVector zv = list[0] + list[1];
106  double mass = zv.M();
107  if (mass < minInvMass_ || mass > maxInvMass_) return false;
108 
109  return true;
110 }
111 
112 // Define this as a plug-in
const edm::InputTag muonTag_
const double maxNormChi2_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
int numberOfValidStripHits() const
Definition: HitPattern.h:854
float sumPhotonEt
sum pt of PF photons
const double minPtHighest_
std::vector< Muon > MuonCollection
collection of Muon objects
Definition: MuonFwd.h:9
float sumNeutralHadronEt
sum pt of neutral hadrons
float sumChargedParticlePt
sum-pt of charged Particles(inludes e/mu)
float sumPUPt
sum pt of charged Particles not from PV (for Pu corrections)
int iEvent
Definition: GenABIO.cc:230
const edm::EDGetTokenT< reco::MuonCollection > muonToken_
const int mu
Definition: Constants.h:22
bool isValid() const
Definition: HandleBase.h:74
bool isGoodMuon(const reco::Muon &muon, SelectionType type, reco::Muon::ArbitrationType arbitrationType=reco::Muon::SegmentAndTrackArbitration)
main GoodMuon wrapper call
ZtoMMEventSelector(const edm::ParameterSet &)
const edm::InputTag bsTag_
const edm::EDGetTokenT< reco::BeamSpot > bsToken_
bool filter(edm::Event &, edm::EventSetup const &) override
fixed size matrix
HLT enums.
int numberOfValidPixelHits() const
Definition: HitPattern.h:839
const Point & position() const
position
Definition: BeamSpot.h:62
const double maxInvMass_
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run