Project
Loading...
Searching...
No Matches
MaskMakerSpec.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
16
18
19#include <array>
20#include <vector>
21#include <chrono>
22#include <gsl/gsl>
27#include "Framework/InputSpec.h"
28#include "Framework/Logger.h"
29#include "Framework/Task.h"
36
37namespace of = o2::framework;
38
39namespace o2
40{
41namespace mid
42{
43
45{
46 public:
47 MaskMakerDeviceDPL(const FEEIdConfig& feeIdConfig, const CrateMasks& crateMasks)
48 {
49 mRefMasks = makeDefaultMasksFromCrateConfig(feeIdConfig, crateMasks);
50 mFetToDead.setMasks(mRefMasks);
51 }
52
54 {
55 mThreshold = ic.options().get<double>("mid-mask-threshold");
56 mNReset = ic.options().get<int>("mid-mask-reset");
57
58 auto stop = [this]() {
59 double scaleFactor = (mCounter == 0) ? 0 : 1.e6 / mCounter;
60 LOG(info) << "Processing time / " << mCounter << " events: full: " << mTimer.count() * scaleFactor << " us mask maker: " << mTimerMaskMaker.count() * scaleFactor << " us";
61 };
62 ic.services().get<of::CallbackService>().set<of::CallbackService::Id::Stop>(stop);
63 }
64
66 {
67 auto tStart = std::chrono::high_resolution_clock::now();
68
69 gsl::span<const ColumnData> calibData, fetData;
70 gsl::span<const ROFRecord> calibDataRof, fetDataRof;
71
72 std::vector<of::InputSpec> filter = {
73 {"check_data", of::ConcreteDataTypeMatcher{header::gDataOriginMID, "DATA"}, of::Lifetime::Timeframe},
74 {"check_rof", of::ConcreteDataTypeMatcher{header::gDataOriginMID, "DATAROF"}, of::Lifetime::Timeframe},
75 };
76
77 for (auto const& inputRef : of::InputRecordWalker(pc.inputs(), 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);
84 }
85 }
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);
91 }
92 }
93 }
94
95 unsigned long nEvents = calibDataRof.size();
96 if (nEvents == 0) {
97 return;
98 }
99
100 auto tAlgoStart = std::chrono::high_resolution_clock::now();
101
102 for (auto& col : calibData) {
103 mScalers[0].count(col);
104 }
105
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);
111 }
112 }
113
114 mCounter += nEvents;
115 mCounterSinceReset += nEvents;
116
117 if (mCounterSinceReset >= mNReset) {
118 for (size_t itype = 0; itype < 2; ++itype) {
119 auto masks = o2::mid::makeMasks(mScalers[itype], mCounterSinceReset, mThreshold, mRefMasks);
120 pc.outputs().snapshot(of::Output{header::gDataOriginMID, "MASKS", static_cast<header::DataHeader::SubSpecificationType>(itype + 1)}, masks);
121 }
122 mCounterSinceReset = 0;
123 for (auto& scaler : mScalers) {
124 scaler.reset();
125 }
126 }
127
128 mTimerMaskMaker += std::chrono::high_resolution_clock::now() - tAlgoStart;
129
130 mTimer += std::chrono::high_resolution_clock::now() - tStart;
131 }
132
133 private:
134 FetToDead mFetToDead{};
135 std::vector<ColumnData> mRefMasks{};
136 std::array<ChannelScalers, 2> mScalers{};
137 std::chrono::duration<double> mTimer{0};
138 std::chrono::duration<double> mTimerMaskMaker{0};
139 unsigned long mCounter{0};
140 unsigned long mCounterSinceReset{0};
141 double mThreshold{0.9};
142 int mNReset{1};
143};
144
146{
147 std::vector<of::InputSpec> inputSpecs;
148 inputSpecs.emplace_back("mid_data", of::ConcreteDataTypeMatcher(header::gDataOriginMID, "DATA"), of::Lifetime::Timeframe);
149 inputSpecs.emplace_back("mid_data_rof", of::ConcreteDataTypeMatcher(header::gDataOriginMID, "DATAROF"), of::Lifetime::Timeframe);
150
151 std::vector<of::OutputSpec> outputSpecs{
154
156 "MIDMaskMaker",
157 {inputSpecs},
158 {outputSpecs},
159 of::AlgorithmSpec{of::adaptFromTask<o2::mid::MaskMakerDeviceDPL>(feeIdConfig, crateMasks)},
160 of::Options{{"mid-mask-threshold", of::VariantType::Double, 0.9, {"Tolerated occupancy before producing a map"}}, {"mid-mask-reset", of::VariantType::Int, 100, {"Number of calibration events to be checked before resetting the scalers"}}}};
161}
162} // namespace mid
163} // namespace o2
MID channels masks handler.
MID channel scalers.
Strip pattern (aka digits)
Class to convert the FEE test event into dead channels.
A helper class to iteratate over all parts of all input routes.
Definition of the MID event record.
Processor to compute the masks.
Function to produce the MID masks.
uint32_t col
Definition RawData.h:4
void snapshot(const Output &spec, T const &object)
ServiceRegistryRef services()
Definition InitContext.h:34
ConfigParamRegistry const & options()
Definition InitContext.h:33
A helper class to iteratate over all parts of all input routes.
decltype(auto) get(R binding, int part=0) const
DataAllocator & outputs()
The data allocator is used to allocate memory for the output data.
InputRecord & inputs()
The inputs associated with this processing context.
std::vector< ColumnData > process(gsl::span< const ColumnData > fetData)
Definition FetToDead.cxx:51
void setMasks(const std::vector< ColumnData > &masks)
Sets the masks.
Definition FetToDead.h:44
MaskMakerDeviceDPL(const FEEIdConfig &feeIdConfig, const CrateMasks &crateMasks)
void init(of::InitContext &ic)
void run(of::ProcessingContext &pc)
GLint GLint GLint GLint GLint GLint GLint GLbitfield GLenum filter
Definition glcorearb.h:1308
constexpr o2::header::DataOrigin gDataOriginMID
Definition DataHeader.h:573
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< ConfigParamSpec > Options
std::vector< ColumnData > makeDefaultMasksFromCrateConfig(const FEEIdConfig &feeIdConfig=FEEIdConfig(), const CrateMasks &crateMasks=CrateMasks())
framework::DataProcessorSpec getMaskMakerSpec(const FEEIdConfig &feeIdConfig, const CrateMasks &crateMasks)
std::vector< ColumnData > makeMasks(const ChannelScalers &scalers, double timeOrTriggers, double threshold, const std::vector< ColumnData > &refMasks={})
Definition MaskMaker.cxx:43
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
uint32_t SubSpecificationType
Definition DataHeader.h:620
const int nEvents
Definition test_Fifo.cxx:27
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"