|
[Rivet-svn] r1950 - trunk/src/Analysesblackhole at projects.hepforge.org blackhole at projects.hepforge.orgWed Oct 21 22:03:55 BST 2009
Author: fsiegert Date: Wed Oct 21 22:03:55 2009 New Revision: 1950 Log: Rather important bugfix for CDF_1996_S3108457 Modified: trunk/src/Analyses/CDF_1996_S3108457.cc Modified: trunk/src/Analyses/CDF_1996_S3108457.cc ============================================================================== --- trunk/src/Analyses/CDF_1996_S3108457.cc Wed Oct 21 21:30:24 2009 (r1949) +++ trunk/src/Analyses/CDF_1996_S3108457.cc Wed Oct 21 22:03:55 2009 (r1950) @@ -80,7 +80,7 @@ double mass = jetsystem.mass(); double costheta0 = fabs(cos(jet0boosted.theta())); - if (costheta0 > 2.0/3.0) { + if (costheta0 < 2.0/3.0) { _h_m[jets.size()-2]->fill(mass, weight); } @@ -88,7 +88,7 @@ _h_costheta[jets.size()-2]->fill(costheta0, weight); } - if (costheta0 > 2.0/3.0 && mass < 600.0*GeV) { + if (costheta0 < 2.0/3.0 && mass < 600.0*GeV) { foreach (const Jet jet, jets) { _h_pT[jets.size()-2]->fill(jet.momentum().pT(), weight); }
More information about the Rivet-svn mailing list |