Skip to content

Commit

Permalink
Switch non-Run3 FIR weights to integer values
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Krohn committed Jul 19, 2022
1 parent 78bac75 commit 7575645
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ void HcalTrigPrimDigiProducer::beginRun(const edm::Run& run, const edm::EventSet
theAlgo_.setWeightQIE11(aieta, (fixedPointWeight));
} else {
theAlgo_.setNumFilterPresamplesHBQIE11(0);
theAlgo_.setWeightQIE11(aieta, 1.0);
theAlgo_.setWeightQIE11(aieta, 255);
}
}
} else if (aieta < lastHERing) {
Expand All @@ -205,7 +205,7 @@ void HcalTrigPrimDigiProducer::beginRun(const edm::Run& run, const edm::EventSet
theAlgo_.setWeightQIE11(aieta, (fixedPointWeight));
} else {
theAlgo_.setNumFilterPresamplesHEQIE11(0);
theAlgo_.setWeightQIE11(aieta, 1.0);
theAlgo_.setWeightQIE11(aieta, 255);
}
}
}
Expand Down

0 comments on commit 7575645

Please sign in to comment.