|
[Rivet-svn] r3810 - branches/2012-06-aidarivet/src/Analysesblackhole at projects.hepforge.org blackhole at projects.hepforge.orgWed Jul 4 15:02:30 BST 2012
Author: hoeth Date: Wed Jul 4 15:02:30 2012 New Revision: 3810 Log: off-by-one error in CDF_2005_S6217184 fixed (merge from trunk) Modified: branches/2012-06-aidarivet/src/Analyses/CDF_2005_S6217184.cc Modified: branches/2012-06-aidarivet/src/Analyses/CDF_2005_S6217184.cc ============================================================================== --- branches/2012-06-aidarivet/src/Analyses/CDF_2005_S6217184.cc Wed Jul 4 15:01:18 2012 (r3809) +++ branches/2012-06-aidarivet/src/Analyses/CDF_2005_S6217184.cc Wed Jul 4 15:02:30 2012 (r3810) @@ -98,7 +98,7 @@ // Get entry for rad_Psi = 0.2 bin AIDA::IProfile1D* ph_i = _profhistPsi_pT[i]; y.push_back(ph_i->binHeight(2)); - ey.push_back(ph_i->binError(1)); + ey.push_back(ph_i->binError(2)); } _profhistPsi_vs_pT->setCoordinate(1, y, ey);
More information about the Rivet-svn mailing list |