9 #include "TLorentzVector.h" 20 verbose_(ps.getUntrackedParameter<
bool>(
"verbose",
false)),
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))
50 std::vector<TLorentzVector>
list;
52 for (
auto const&
mu : *muonColl) {
53 if (!
mu.isGlobalMuon())
continue;
54 if (!
mu.isPFMuon())
continue;
55 if (std::fabs(
mu.eta()) >=
maxEta_)
continue;
59 double chi2 = gtk->chi2();
60 double ndof = gtk->ndof();
61 double chbyndof = (ndof > 0) ? chi2/ndof : 0;
65 double trkd0 = tk->d0();
66 double trkdz = tk->dz();
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;
74 edm::LogError(
"ZtoMMEventSelector") <<
"Error >> Failed to get BeamSpot for label: " 94 lv.SetPtEtaPhiE(
mu.pt(),
mu.eta(),
mu.phi(),
mu.energy());
99 edm::LogError(
"ZtoMMEventSelector") <<
"Error >> Failed to get MuonCollection for label: " <<
muonTag_;
103 if (list.size() < 2)
return false;
105 TLorentzVector zv = list[0] + list[1];
106 double mass = zv.M();
107 if (mass < minInvMass_ || mass >
maxInvMass_)
return false;
const edm::InputTag muonTag_
const double maxNormChi2_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
#define DEFINE_FWK_MODULE(type)
int numberOfValidStripHits() const
float sumPhotonEt
sum pt of PF photons
const int minMatchedStations_
const double minPtHighest_
std::vector< Muon > MuonCollection
collection of Muon objects
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)
const edm::EDGetTokenT< reco::MuonCollection > muonToken_
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
int numberOfValidPixelHits() const
const Point & position() const
position
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