Skip to content

Commit

Permalink
Fix loading of BCAL bad channel table
Browse files Browse the repository at this point in the history
Was accidentally only loading half of it
  • Loading branch information
sdobbs committed Jul 9, 2024
1 parent ae4982e commit 1a9c2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/BCAL/DBCALHit_factory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jerror_t DBCALHit_factory::brun(jana::JEventLoop *eventLoop, int32_t runnumber)
if (PRINTCALIBRATION) jout << "DBCALHit_factory >> raw_tdiff_u_d" << endl;
FillCalibTableShort(tdiff_u_d, raw_tdiff_u_d);
if (PRINTCALIBRATION) jout << "DBCALHit_factory >> raw_bad_channels" << endl;
FillCalibTableShort(bad_channels, raw_bad_channels);
FillCalibTable(bad_channels, raw_bad_channels);

std::vector<std::map<string,double> > saturation_ADC_pars;
if(eventLoop->GetCalib("/BCAL/ADC_saturation", saturation_ADC_pars))
Expand Down

0 comments on commit 1a9c2dc

Please sign in to comment.