67 auto tStart = std::chrono::high_resolution_clock::now();
69 gsl::span<const ColumnData> calibData, fetData;
70 gsl::span<const ROFRecord> calibDataRof, fetDataRof;
72 std::vector<of::InputSpec>
filter = {
78 auto const* dh = framework::DataRefUtils::getHeader<o2::header::DataHeader*>(inputRef);
79 if (of::DataRefUtils::match(inputRef,
"mid_data")) {
80 if (dh->subSpecification == 1) {
81 calibData = pc.
inputs().
get<gsl::span<o2::mid::ColumnData>>(inputRef);
82 }
else if (dh->subSpecification == 2) {
83 fetData = pc.
inputs().
get<gsl::span<o2::mid::ColumnData>>(inputRef);
86 if (of::DataRefUtils::match(inputRef,
"mid_data_rof")) {
87 if (dh->subSpecification == 1) {
88 calibDataRof = pc.
inputs().
get<gsl::span<o2::mid::ROFRecord>>(inputRef);
89 }
else if (dh->subSpecification == 2) {
90 fetDataRof = pc.
inputs().
get<gsl::span<o2::mid::ROFRecord>>(inputRef);
95 unsigned long nEvents = calibDataRof.size();
100 auto tAlgoStart = std::chrono::high_resolution_clock::now();
102 for (
auto&
col : calibData) {
103 mScalers[0].count(
col);
106 for (
auto& rof : fetDataRof) {
107 auto subSet = fetData.subspan(rof.firstEntry, rof.nEntries);
108 auto deadChannels = mFetToDead.
process(subSet);
109 for (
auto&
col : deadChannels) {
110 mScalers[1].count(
col);
117 if (mCounterSinceReset >= mNReset) {
118 for (
size_t itype = 0; itype < 2; ++itype) {
119 auto masks =
o2::mid::makeMasks(mScalers[itype], mCounterSinceReset, mThreshold, mRefMasks);
122 mCounterSinceReset = 0;
123 for (
auto& scaler : mScalers) {
128 mTimerMaskMaker += std::chrono::high_resolution_clock::now() - tAlgoStart;
130 mTimer += std::chrono::high_resolution_clock::now() - tStart;