[Rivet-svn] r4104 - branches/2012-06-aidarivet/src/Analyses

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Wed Jan 23 09:17:39 GMT 2013


Author: hoeth
Date: Wed Jan 23 09:17:39 2013
New Revision: 4104

Log:
fix double to int casting bug in ATLAS_2012_I1119557

Modified:
   branches/2012-06-aidarivet/src/Analyses/ATLAS_2012_I1119557.cc

Modified: branches/2012-06-aidarivet/src/Analyses/ATLAS_2012_I1119557.cc
==============================================================================
--- branches/2012-06-aidarivet/src/Analyses/ATLAS_2012_I1119557.cc	Tue Jan 22 15:07:30 2013	(r4103)
+++ branches/2012-06-aidarivet/src/Analyses/ATLAS_2012_I1119557.cc	Wed Jan 23 09:17:39 2013	(r4104)
@@ -66,8 +66,8 @@
         /// @todo Commented eccentricity out for now: reinstate
         // if (fabs(eta) < 0.7 && m > 100*GeV) _hs_eccentricity[alg]->fill(getEcc(jet), weight);
 
-        if (alg == 1 && fabs(eta) < 0.7 && inRange(m/GeV, 130, 210)) _h_planarFlow->fill(getPFlow(jet), weight);
-        if (alg == 0 && fabs(eta) < 0.7 && inRange(m/GeV, 100, 130)) _h_angularity->fill(getAngularity(jet), weight);
+        if (alg == 1 && fabs(eta) < 0.7 && inRange(m/GeV, 130., 210.)) _h_planarFlow->fill(getPFlow(jet), weight);
+        if (alg == 0 && fabs(eta) < 0.7 && inRange(m/GeV, 100., 130.)) _h_angularity->fill(getAngularity(jet), weight);
       }
     }
 


More information about the Rivet-svn mailing list