|
[Rivet-svn] r4232 - trunk/src/Analysesblackhole at projects.hepforge.org blackhole at projects.hepforge.orgThu Mar 28 13:35:16 GMT 2013
Author: dgrell Date: Thu Mar 28 13:35:16 2013 New Revision: 4232 Log: Fixed out-of-bounds error. Modified: trunk/src/Analyses/ATLAS_2012_I1188891.cc Modified: trunk/src/Analyses/ATLAS_2012_I1188891.cc ============================================================================== --- trunk/src/Analyses/ATLAS_2012_I1188891.cc Fri Mar 22 21:26:31 2013 (r4231) +++ trunk/src/Analyses/ATLAS_2012_I1188891.cc Thu Mar 28 13:35:16 2013 (r4232) @@ -150,12 +150,12 @@ void finalize() { - divide(_h_temp[0], _h_temp[6], _h_results[1]); - divide(_h_temp[1], _h_temp[6], _h_results[2]); - divide(_h_temp[2], _h_temp[6], _h_results[3]); - divide(_h_temp[3], _h_temp[6], _h_results[4]); - divide(_h_temp[4], _h_temp[6], _h_results[5]); - divide(_h_temp[5], _h_temp[6], _h_results[6]); + divide(_h_temp[0], _h_temp[6], _h_results[0]); + divide(_h_temp[1], _h_temp[6], _h_results[1]); + divide(_h_temp[2], _h_temp[6], _h_results[2]); + divide(_h_temp[3], _h_temp[6], _h_results[3]); + divide(_h_temp[4], _h_temp[6], _h_results[4]); + divide(_h_temp[5], _h_temp[6], _h_results[5]); } private:
More information about the Rivet-svn mailing list |