Skip to content

Commit b6d3618

Browse files
authored
[MRRTF-220] Use statusmap (badchannels+rejectlist) by default (#12373)
1 parent 3742372 commit b6d3618

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Detectors/MUON/MCH/DigitFiltering/include/MCHDigitFiltering/DigitFilterParam.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct DigitFilterParam : public o2::conf::ConfigurableParamHelper<DigitFilterPa
2929
bool rejectBackground = true; ///< attempts to reject background (loose background selection, don't kill signal)
3030
bool selectSignal = false; ///< attempts to select only signal (strict background selection, might loose signal)
3131
int timeOffset = 120; ///< digit time calibration offset
32-
uint32_t statusMask = 0; ///< mask to reject digits based on the statusmap (0=no rejection)
32+
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)
3333

3434
O2ParamDef(DigitFilterParam, "MCHDigitFilter");
3535
};

Detectors/MUON/MCH/Status/include/MCHStatus/StatusMapCreatorParam.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ namespace o2::mch
2424
*/
2525
struct StatusMapCreatorParam : public o2::conf::ConfigurableParamHelper<StatusMapCreatorParam> {
2626

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

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

0 commit comments

Comments
 (0)