Skip to content
Snippets Groups Projects
Commit 8ccc1b86 authored by Nils Gillwald's avatar Nils Gillwald
Browse files

Bug fix: Use wrong vector to calculate largest bin number in findBin()

findBin returns the correct bin of the correction to use for all binned
correction types. It checks if the value lies in the first given bin,
then the second, etc. If it does not lie in any of the given bins, then
it must be in the "overflow" bin going up to "infinity". The calculation
of the overflow bin number is done incorrectly, since the wrong vector
is used: The vector saving all vectors with binned correction values,
instead of the vector saving the currently used binning.
parent 8914c4fa
5 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45688Bug fix in ElectronPhotonVariableCorrection: Use wrong vector to calculate largest bin number in findBin()
......@@ -801,7 +801,7 @@ const StatusCode ElectronPhotonVariableCorrectionBase::findBin(int& return_bin,
//the -1 is because the parameter numbering in a vector starts at 0
if (return_bin == -1)
{
return_bin = m_binValues.size()-1;
return_bin = binning.size()-1;
}
// everythin went fine, so
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment