Skip to content

Commit

Permalink
[MRRTF-220] Use statusmap (badchannels+rejectlist) by default
Browse files Browse the repository at this point in the history
  • Loading branch information
aphecetche committed Nov 30, 2023
1 parent 1bc916a commit c6cc0fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ struct DigitFilterParam : public o2::conf::ConfigurableParamHelper<DigitFilterPa
bool rejectBackground = true; ///< attempts to reject background (loose background selection, don't kill signal)
bool selectSignal = false; ///< attempts to select only signal (strict background selection, might loose signal)
int timeOffset = 120; ///< digit time calibration offset
uint32_t statusMask = 0; ///< mask to reject digits based on the statusmap (0=no rejection)
uint32_t statusMask = 3; ///< mask to reject digits based on the statusmap (0=no rejection,1=badchannels from ped calib only,2=badchannels from rejectlist,3=1+2)

O2ParamDef(DigitFilterParam, "MCHDigitFilter");
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ namespace o2::mch
*/
struct StatusMapCreatorParam : public o2::conf::ConfigurableParamHelper<StatusMapCreatorParam> {

bool useBadChannels = false; ///< reject bad channels (obtained during pedestal calibration runs)
bool useRejectList = false; ///< use extra (relative to bad channels above) rejection list
bool useBadChannels = true; ///< reject bad channels (obtained during pedestal calibration runs)
bool useRejectList = true; ///< use extra (relative to bad channels above) rejection list

bool isActive() const { return useBadChannels || useRejectList; }

Expand Down

0 comments on commit c6cc0fd

Please sign in to comment.