Skip to content

Commit

Permalink
Fix code checks
Browse files Browse the repository at this point in the history
  • Loading branch information
aloeliger committed Mar 11, 2023
1 parent 6b6abc0 commit 464f06c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion L1Trigger/L1TGlobal/plugins/TriggerMenuParser.cc
Expand Up @@ -3619,7 +3619,7 @@ size_t l1t::TriggerMenuParser::getLut(std::vector<long long>& lut,
lut.resize(std::pow(2, scale->getNbits()));
std::fill(lut.begin(), lut.end(), 0);

const std::vector<L1TUtmBin> bins = scale->getBins();
const std::vector<L1TUtmBin>& bins = scale->getBins();
for (size_t ii = 0; ii < bins.size(); ii++) {
double centre = (bins.at(ii).minimum + bins.at(ii).maximum) * 0.5;
lut.at(ii) = toFixedPoint(centre, precision);
Expand Down

0 comments on commit 464f06c

Please sign in to comment.