|
[Rivet-svn] r3403 - in trunk: . src/Analysesblackhole at projects.hepforge.org blackhole at projects.hepforge.orgFri Sep 30 13:35:47 BST 2011
Author: jmonk Date: Fri Sep 30 13:35:47 2011 New Revision: 3403 Log: jets had been mis-labelled Modified: trunk/ChangeLog trunk/src/Analyses/ATLAS_2010_S8817804.cc Modified: trunk/ChangeLog ============================================================================== --- trunk/ChangeLog Fri Sep 30 10:00:53 2011 (r3402) +++ trunk/ChangeLog Fri Sep 30 13:35:47 2011 (r3403) @@ -1,3 +1,6 @@ +2011-09-30 James Monk <jmonk at cern.ch> + * fix bug in ATLAS_2010_S8817804 that misidentified the akt4 jets as akt6 + 2011-09-29 Andy Buckley <andy at insectnation.org> * Converting FinalStateHCM to a slightly more general Modified: trunk/src/Analyses/ATLAS_2010_S8817804.cc ============================================================================== --- trunk/src/Analyses/ATLAS_2010_S8817804.cc Fri Sep 30 10:00:53 2011 (r3402) +++ trunk/src/Analyses/ATLAS_2010_S8817804.cc Fri Sep 30 13:35:47 2011 (r3403) @@ -56,8 +56,8 @@ void analyze(const Event& evt) { Jets jetAr[2]; - jetAr[AKT4] = applyProjection<FastJets>(evt, "AntiKT06").jetsByPt(30*GeV); - jetAr[AKT6] = applyProjection<FastJets>(evt, "AntiKT04").jetsByPt(30*GeV); + jetAr[AKT6] = applyProjection<FastJets>(evt, "AntiKT06").jetsByPt(30*GeV); + jetAr[AKT4] = applyProjection<FastJets>(evt, "AntiKT04").jetsByPt(30*GeV); // Identify the dijets for (size_t alg = 0; alg < 2; ++alg) {
More information about the Rivet-svn mailing list |