45 stiffMinPt = pset.
getParameter<
double>(
"stiffMinimumPt");
47 nStiffLeptonMin = pset.
getParameter<
int>(
"nStiffLeptonMinimum");
60 <<
" Number_events_read " <<
nEvents
61 <<
" Number_events_kept " << nSelectedEvents
62 <<
" Efficiency " << ((double)nSelectedEvents)/((double)
nEvents + 0.01) << std::endl;
74 bool keepEvent =
false;
75 int nStiffLeptons = 0;
83 event.getByLabel(theGLBMuonLabel.label(), muTracks);
87 reco::TrackCollection::const_iterator
muons;
91 for ( muons = muTracks->begin(); muons != muTracks->end(); ++
muons ) {
92 if ( muons->pt() > stiffMinPt) nStiffLeptons++;
93 if ( muons->pt() > softMinPt) nLeptons++;
102 event.getByLabel(theGsfELabel.label(),pTracks);
108 reco::GsfElectronCollection::const_iterator
electrons;
112 for ( electrons = eTracks->begin(); electrons != eTracks->end(); ++
electrons ) {
113 float pt_e = electrons->pt();
114 if ( pt_e > stiffMinPt) nStiffLeptons++;
115 if ( pt_e > softMinPt) nLeptons++;
120 if ( nStiffLeptons >= nStiffLeptonMin && nLeptons >= nLeptonMin) keepEvent =
true;
122 if (keepEvent) nSelectedEvents++;
T getParameter(std::string const &) const
std::vector< Track > TrackCollection
collection of Tracks
HiggsToZZ4LeptonsSkim(const edm::ParameterSet &)
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
virtual bool filter(edm::Event &, const edm::EventSetup &)
Get event properties to send to builder to fill seed collection.
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 but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
T const * product() const
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")