Skip to content

Commit

Permalink
Fix variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
matz-e committed Oct 13, 2016
1 parent 905099a commit 1499038
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ HcalTriggerPrimitiveAlgo::validChannel(const QIE10DataFrame& digi, int ts) const
if (override_parameters_.exists("ADCThresholdHF"))
adc_threshold = override_parameters_.getParameter<uint32_t>("ADCThresholdHF");
if (override_parameters_.exists("TDCMaskHF"))
adc_threshold = override_parameters_.getParameter<unsigned long long>("TDCMaskHF");
tdc_mask = override_parameters_.getParameter<unsigned long long>("TDCMaskHF");

if (digi[ts].adc() < adc_threshold)
return true;
Expand Down

0 comments on commit 1499038

Please sign in to comment.