47 genToken = consumes<GenParticleCollection>(
edm::InputTag(
"genParticles"));
51 stiffMinPt = pset.
getParameter<
double>(
"stiffMinimumPt");
53 nStiffLeptonMin = pset.
getParameter<
int>(
"nStiffLeptonMinimum");
57 nSelFourE = nSelFourM = nSelTwoETwoM = nSelFourL = nSelTau = 0;
58 nFourE = nFourM = nTwoETwoM = nFourL = nTau = 0;
67 std::cout <<
"*** Efficiency for the various subsamples *** " << endl;
71 <<
" kept " << nSelFourL
72 <<
" eff " << ((double)nSelFourL)/((double) nFourL + 0.0001) << std::endl;
75 <<
" kept " << nSelFourM
76 <<
" eff " << ((double)nSelFourM)/((double) nFourM + 0.0001) << std::endl;
79 <<
" kept " << nSelFourE
80 <<
" eff " << ((double)nSelFourE)/((double) nFourE + 0.0001) << std::endl;
82 <<
" pres " << nTwoETwoM
83 <<
" kept " << nSelTwoETwoM
84 <<
" eff " << ((double)nSelTwoETwoM)/((double) nTwoETwoM + 0.0001) << std::endl;
87 <<
" kept " << nSelTau
88 <<
" eff " << ((double)nSelTau)/((double) nTau + 0.0001) << std::endl;
101 bool keepEvent =
false;
108 bool isFourE =
false;
109 bool isFourM =
false;
110 bool isTwoETwoM =
false;
111 bool isFourL =
false;
116 event.getByToken(genToken, genCandidates);
121 if ( mcIter->pdgId() == 13 || mcIter->pdgId() == -13) {
123 if ( mcIter->mother()->pdgId() == 23 ) {
125 if ( mcIter->eta() > -2.4 && mcIter->eta() < 2.4 ) nMuon++;
129 if ( mcIter->pdgId() == 11 || mcIter->pdgId() == -11) {
131 if ( mcIter->mother()->pdgId() == 23 ) {
133 if ( mcIter->eta() > -2.5 && mcIter->eta() < 2.5 ) nElec++;
137 if ( mcIter->pdgId() == 15 || mcIter->pdgId() == -15) {
139 if ( mcIter->mother()->pdgId() == 23 ) {
141 if ( mcIter->eta() > -2.5 && mcIter->eta() < 2.5 ) nTau++;
155 if (nMuon > 1 && nElec > 1) {
159 if ( isFourE || isFourM || isTwoETwoM ) {
175 int nStiffLeptons = 0;
182 event.getByToken(theGLBMuonToken, muTracks);
185 reco::TrackCollection::const_iterator
muons;
189 for ( muons = muTracks->begin(); muons != muTracks->end(); ++
muons ) {
190 float pt_mu = muons->pt();
191 if ( pt_mu > stiffMinPt ) nStiffLeptons++;
192 if ( pt_mu > softMinPt ) nLeptons++;
201 event.getByToken(theGsfEToken,pTracks);
207 reco::GsfElectronCollection::const_iterator
electrons;
211 for ( electrons = eTracks->begin(); electrons != eTracks->end(); ++
electrons ) {
212 float pt_e = electrons->pt();
213 if ( pt_e > stiffMinPt ) nStiffLeptons++;
214 if ( pt_e > softMinPt ) nLeptons++;
220 if ( nStiffLeptons >= nStiffLeptonMin && nLeptons >= nLeptonMin) {
227 if (isFourE) nSelFourE++;
228 if (isFourM) nSelFourM++;
229 if (isTwoETwoM) nSelTwoETwoM++;
230 if (isFourL) nSelFourL++;
231 if (isTau) nSelTau++;
T getParameter(std::string const &) const
void analyze(const edm::Event &, const edm::EventSetup &) override
Get event properties to send to builder to fill seed collection.
std::vector< Track > TrackCollection
collection of Tracks
def setup(process, global_tag, zero_tesla=False)
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
HiggsToZZ4LeptonsSkimEff(const edm::ParameterSet &)
T const * product() const
~HiggsToZZ4LeptonsSkimEff() override
bool isTau(const Candidate &part)