|
[Rivet-svn] r4063 - branches/2012-06-aidarivet/src/Analysesblackhole at projects.hepforge.org blackhole at projects.hepforge.orgThu Dec 6 21:38:55 GMT 2012
Author: hoeth Date: Thu Dec 6 21:38:55 2012 New Revision: 4063 Log: fix jet definition in CMS_2012_I1184941 Modified: branches/2012-06-aidarivet/src/Analyses/CMS_2012_I1184941.cc Modified: branches/2012-06-aidarivet/src/Analyses/CMS_2012_I1184941.cc ============================================================================== --- branches/2012-06-aidarivet/src/Analyses/CMS_2012_I1184941.cc Thu Dec 6 21:24:58 2012 (r4062) +++ branches/2012-06-aidarivet/src/Analyses/CMS_2012_I1184941.cc Thu Dec 6 21:38:55 2012 (r4063) @@ -34,8 +34,9 @@ double xiM = 0.; double xiP = 0.; - const Jets jets = applyProjection<FastJets>(event, "AntiKtJets05").jetsByPt(20.*GeV, MAXDOUBLE, -4.4, 4.4); + const Jets jets = applyProjection<FastJets>(event, "AntiKtJets05").jetsByPt(20.*GeV); if (jets.size() < 2) vetoEvent; // require a dijet system with a 20 GeV cut on both jets + if (fabs(jets[0].momentum().eta()) > 4.4 || fabs(jets[1].momentum().eta()) > 4.4) vetoEvent; const FinalState& fsp = applyProjection<FinalState>(event, "FS");
More information about the Rivet-svn mailing list |