Project
Loading...
Searching...
No Matches
WaveformCalibEPNSpec.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 "CCDB/CcdbApi.h"
22#include "Framework/Logger.h"
39
40using namespace o2::framework;
41
42namespace o2
43{
44namespace zdc
45{
46
48{
49 mTimer.Stop();
50 mTimer.Reset();
51}
52
54{
55 mTimer.Stop();
56 mTimer.Reset();
57}
58
60{
61 mVerbosity = ic.options().get<int>("verbosity-level");
62 mWorker.setVerbosity(mVerbosity);
63}
64
66{
67 // we call these methods just to trigger finaliseCCDB callback
68 pc.inputs().get<o2::zdc::WaveformCalibConfig*>("wavecalibconfig");
69}
70
72{
73 if (matcher == ConcreteDataMatcher("ZDC", "WAVECALIBCONFIG", 0)) {
74 // InterCalib configuration
75 auto* config = (const o2::zdc::WaveformCalibConfig*)obj;
76 if (mVerbosity > DbgZero) {
77 config->print();
78 }
79 mWorker.setConfig(config);
80 }
81}
82
84{
85 if (!mInitialized) {
86 mInitialized = true;
88 mTimer.Stop();
89 mTimer.Reset();
90 mTimer.Start(false);
91 } else {
92 mWorker.clear();
93 }
94
95 auto creationTime = pc.services().get<o2::framework::TimingInfo>().creation; // approximate time in ms
96 WaveformCalibData& data = mWorker.getData();
97
98 data.setCreationTime(creationTime);
99
100 auto bcrec = pc.inputs().get<gsl::span<o2::zdc::BCRecData>>("bcrec");
101 auto energy = pc.inputs().get<gsl::span<o2::zdc::ZDCEnergy>>("energy");
102 auto tdc = pc.inputs().get<gsl::span<o2::zdc::ZDCTDCData>>("tdc");
103 auto info = pc.inputs().get<gsl::span<uint16_t>>("info");
104 auto wave = pc.inputs().get<gsl::span<o2::zdc::ZDCWaveform>>("wave");
105
106 // Process reconstructed data
107 mWorker.process(bcrec, energy, tdc, info, wave);
108
109 // Send intermediate calibration data
110 o2::framework::Output output("ZDC", "WAVECALIBDATA", 0);
111 pc.outputs().snapshot(output, mWorker.mData);
112}
113
115{
116 mWorker.endOfRun();
117 mTimer.Stop();
118 LOGF(info, "ZDC EPN Waveform calibration total timing: Cpu: %.3e Real: %.3e s in %d slots", mTimer.CpuTime(), mTimer.RealTime(), mTimer.Counter() - 1);
119}
120
122{
123 using device = o2::zdc::WaveformCalibEPNSpec;
124 std::vector<InputSpec> inputs;
125 inputs.emplace_back("bcrec", "ZDC", "BCREC", 0, Lifetime::Timeframe);
126 inputs.emplace_back("energy", "ZDC", "ENERGY", 0, Lifetime::Timeframe);
127 inputs.emplace_back("tdc", "ZDC", "TDCDATA", 0, Lifetime::Timeframe);
128 inputs.emplace_back("info", "ZDC", "INFO", 0, Lifetime::Timeframe);
129 inputs.emplace_back("wave", "ZDC", "WAVE", 0, Lifetime::Timeframe);
130 inputs.emplace_back("wavecalibconfig", "ZDC", "WAVECALIBCONFIG", 0, Lifetime::Condition, o2::framework::ccdbParamSpec(o2::zdc::CCDBPathWaveformCalibConfig.data()));
131
132 std::vector<OutputSpec> outputs;
133 outputs.emplace_back("ZDC", "WAVECALIBDATA", 0, Lifetime::Timeframe);
134 return DataProcessorSpec{
135 "zdc-waveformcalib-epn",
136 inputs,
137 outputs,
138 AlgorithmSpec{adaptFromTask<device>()},
139 Options{{"verbosity-level", o2::framework::VariantType::Int, 0, {"Verbosity level"}}}};
140}
141
142} // namespace zdc
143} // namespace o2
#define verbosity
Class to describe fired triggered and/or stored channels for the BC and to refer to channel data.
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)
Waveform calibration intermediate data.
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
DataAllocator & outputs()
The data allocator is used to allocate memory for the output data.
InputRecord & inputs()
The inputs associated with this processing context.
ServiceRegistryRef services()
The services registry associated with this processing context.
void run(o2::framework::ProcessingContext &pc) final
void updateTimeDependentParams(o2::framework::ProcessingContext &pc)
void init(o2::framework::InitContext &ic) final
void endOfStream(o2::framework::EndOfStreamContext &ec) final
This is invoked whenever we have an EndOfStream event.
void finaliseCCDB(o2::framework::ConcreteDataMatcher &matcher, void *obj) final
void setConfig(const WaveformCalibConfig *param)
WaveformCalibData & getData()
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, const gsl::span< const o2::zdc::ZDCWaveform > &wave)
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 getWaveformCalibEPNSpec()
const std::string CCDBPathWaveformCalibConfig
Definition Constants.h:228
constexpr int DbgZero
Definition Constants.h:207
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
void setCreationTime(uint64_t ctime)