Project
Loading...
Searching...
No Matches
TDCCalibEPNSpec.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
15
16#include <iostream>
17#include <vector>
18#include <string>
21#include "Framework/Logger.h"
40
41using namespace o2::framework;
42
43namespace o2
44{
45namespace zdc
46{
47
49{
50 mTimer.Stop();
51 mTimer.Reset();
52}
53
55{
56 mTimer.Stop();
57 mTimer.Reset();
58}
59
61{
62 mVerbosity = ic.options().get<int>("verbosity-level");
63 mWorker.setVerbosity(mVerbosity);
64 const auto& opt = CalibParamZDC::Instance();
65 mModTF = opt.modTF;
66 if (mVerbosity >= DbgZero) {
67 LOG(info) << "Sending calibration data to aggregator every mModTF = " << mModTF << " TF";
68 }
69}
70
72{
73 // we call these methods just to trigger finaliseCCDB callback
74 pc.inputs().get<o2::zdc::TDCCalibConfig*>("tdccalibconfig"); //added by me
75}
76
78{
79 if (matcher == ConcreteDataMatcher("ZDC", "TDCCALIBCONFIG", 0)) {
80 auto* config = (const o2::zdc::TDCCalibConfig*)obj;
81 if (mVerbosity > DbgMedium) {
82 LOG(info) << "Loaded TDCCalib configuration object";
83 config->print();
84 }
85 mWorker.setTDCCalibConfig(config);
86 }
87}
88
90{
91 if (!mInitialized) {
92 mInitialized = true;
94 mTimer.Stop();
95 mTimer.Reset();
96 mTimer.Start(false);
97 }
98 //auto config = pc.inputs().get<o2::zdc::TDCCalibConfig*>("tdccalibconfig");
99 const auto ref = pc.inputs().getFirstValid(true);
100 auto creationTime = DataRefUtils::getHeader<DataProcessingHeader*>(ref)->creation; // approximate time in ms
101 mWorker.getData().setCreationTime(creationTime);
102
103 auto bcrec = pc.inputs().get<gsl::span<o2::zdc::BCRecData>>("bcrec");
104 auto energy = pc.inputs().get<gsl::span<o2::zdc::ZDCEnergy>>("energy"); //maybe not needed for TDC configuration
105 auto tdc = pc.inputs().get<gsl::span<o2::zdc::ZDCTDCData>>("tdc");
106 auto info = pc.inputs().get<gsl::span<uint16_t>>("info");
107
108 // Process reconstructed data
109 mWorker.process(bcrec, energy, tdc, info);
110 mProcessed++;
111
112 if (mProcessed >= mModTF) {
113 // Send debug histograms and intermediate calibration data
114 if (mVerbosity > DbgMedium && mModTF > 0) {
115 LOG(info) << "Send intermediate calibration data mProcessed=" << mProcessed << " >= mModTF=" << mModTF;
116 }
117 o2::framework::Output output("ZDC", "TDCCALIBDATA", 0);
118 pc.outputs().snapshot(output, mWorker.mData);
119 for (int ih = 0; ih < TDCCalibData::NTDC; ih++) {
120 o2::framework::Output output("ZDC", "TDC_1DH", ih);
121 pc.outputs().snapshot(output, mWorker.mTDC[ih]->getBase());
122 }
123 mWorker.clear();
124 mProcessed = 0;
125 }
126}
127
129{
130 mWorker.endOfRun();
131 mTimer.Stop();
132 LOGF(info, "ZDC EPN TDC calibration total timing: Cpu: %.3e Real: %.3e s in %d slots", mTimer.CpuTime(), mTimer.RealTime(), mTimer.Counter() - 1); //added by me
133}
134
136{
137 std::vector<InputSpec> inputs;
138 inputs.emplace_back("bcrec", "ZDC", "BCREC", 0, Lifetime::Timeframe);
139 inputs.emplace_back("energy", "ZDC", "ENERGY", 0, Lifetime::Timeframe);
140 inputs.emplace_back("tdc", "ZDC", "TDCDATA", 0, Lifetime::Timeframe);
141 inputs.emplace_back("info", "ZDC", "INFO", 0, Lifetime::Timeframe);
142 inputs.emplace_back("tdccalibconfig", "ZDC", "TDCCALIBCONFIG", 0, Lifetime::Condition, o2::framework::ccdbParamSpec(o2::zdc::CCDBPathTDCCalibConfig.data()));
143
144 std::vector<OutputSpec> outputs;
145 outputs.emplace_back("ZDC", "TDCCALIBDATA", 0, Lifetime::Sporadic); // added by me
146 outputs.emplace_back(ConcreteDataTypeMatcher{"ZDC", "TDC_1DH"}, Lifetime::Sporadic);
147
148 return DataProcessorSpec{
149 "zdc-tdccalib-epn",
150 inputs,
151 outputs,
152 AlgorithmSpec{adaptFromTask<TDCCalibEPNSpec>()},
153 o2::framework::Options{{"verbosity-level", o2::framework::VariantType::Int, 0, {"Verbosity level"}}}};
154}
155
156} // namespace zdc
157} // namespace o2
#define verbosity
Class to describe fired triggered and/or stored channels for the BC and to refer to channel data.
ZDC calibration common parameters.
void output(const std::map< std::string, ChannelStat > &channels)
Definition rawdump.cxx:197
Definition of the Names Generator class.
Class to describe pedestal data accumulated over the orbit.
Class to describe reconstructed ZDC event (single BC with signal in one of detectors)
ZDC reconstruction parameters.
ZDC TDC calibration pre-processing on EPN.
ZDC Energy calibration.
ZDC Tower calibration.
Container class to store NTimeBinsPerBC ADC values of single ZDC channel.
void snapshot(const Output &spec, T const &object)
ConfigParamRegistry const & options()
Definition InitContext.h:33
decltype(auto) get(R binding, int part=0) const
DataRef getFirstValid(bool throwOnFailure=false) const
Get the ref of the first valid input. If requested, throw an error if none is found.
DataAllocator & outputs()
The data allocator is used to allocate memory for the output data.
InputRecord & inputs()
The inputs associated with this processing context.
void run(o2::framework::ProcessingContext &pc) final
void init(o2::framework::InitContext &ic) final
void updateTimeDependentParams(o2::framework::ProcessingContext &pc)
void finaliseCCDB(o2::framework::ConcreteDataMatcher &matcher, void *obj) final
void endOfStream(o2::framework::EndOfStreamContext &ec) final
This is invoked whenever we have an EndOfStream event.
void setVerbosity(int val)
Definition TDCCalibEPN.h:65
TDCCalibData mData
Definition TDCCalibEPN.h:66
std::array< o2::dataformats::FlatHisto1D< float > *, NTDC > mTDC
Definition TDCCalibEPN.h:68
void setTDCCalibConfig(const TDCCalibConfig *param)
Definition TDCCalibEPN.h:61
TDCCalibData & getData()
Definition TDCCalibEPN.h:67
int process(const gsl::span< const o2::zdc::BCRecData > &bcrec, const gsl::span< const o2::zdc::ZDCEnergy > &energy, const gsl::span< const o2::zdc::ZDCTDCData > &tdc, const gsl::span< const uint16_t > &info)
GLboolean * data
Definition glcorearb.h:298
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< ConfigParamSpec > ccdbParamSpec(std::string const &path, int runDependent, std::vector< CCDBMetadata > metadata={}, int qrate=0)
std::vector< ConfigParamSpec > Options
struct o2::upgrades_utils::@462 zdc
structure to keep FT0 information
framework::DataProcessorSpec getTDCCalibEPNSpec()
const std::string CCDBPathTDCCalibConfig
Definition Constants.h:222
constexpr int DbgZero
Definition Constants.h:207
constexpr int DbgMedium
Definition Constants.h:209
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
void setCreationTime(uint64_t ctime)
static constexpr int NTDC
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"