Project
Loading...
Searching...
No Matches
RecEventReaderSpec.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
13
14#include <vector>
15
18#include "Framework/Logger.h"
21
22using namespace o2::framework;
23using namespace o2::zdc;
24
25namespace o2
26{
27namespace zdc
28{
29
31{
32 mUseMC = useMC;
33 if (useMC) {
34 LOG(warning) << "ZDC RecEvent reader at the moment does not process MC";
35 }
36}
37
39{
40 mInputFileName = o2::utils::Str::concat_string(o2::utils::Str::rectifyDirectory(ic.options().get<std::string>("input-dir")),
41 ic.options().get<std::string>("zdc-reco-infile"));
42 connectTree(mInputFileName);
43}
44
46{
47 auto ent = mTree->GetReadEntry() + 1;
48 // A timeframe holds no collision at all whenever the interaction rate is low enough, and
49 // the tree then has no entry to read. Publish empty containers instead of reading past the
50 // end and pushing branch addresses that GetEntry has not filled, so that the consumers
51 // downstream still see the timeframe. (This used to be an assert, which is compiled out of
52 // every production build since ENABLE_CASSERT defaults to OFF.)
53 const bool noEntry = ent >= mTree->GetEntries();
54 if (noEntry) {
55 LOG(info) << "no entry to read, publishing empty output";
56 } else {
57 mTree->GetEntry(ent);
58 }
59
60 static const std::vector<o2::zdc::BCRecData> noBCRecData;
61 static const std::vector<o2::zdc::ZDCEnergy> noEnergy;
62 static const std::vector<o2::zdc::ZDCTDCData> noTDCData;
63 static const std::vector<uint16_t> noInfo;
64 const auto& bcRecData = noEntry ? noBCRecData : *mBCRecData;
65 const auto& energy = noEntry ? noEnergy : *mZDCEnergy;
66 const auto& tdcData = noEntry ? noTDCData : *mZDCTDCData;
67 const auto& info = noEntry ? noInfo : *mZDCInfo;
68 LOG(info) << "ZDC RecEventReader pushes " << bcRecData.size() << " events with " << energy.size() << " energy, " << tdcData.size() << " TDC and " << info.size() << " info records at entry " << ent;
69 pc.outputs().snapshot(Output{"ZDC", "BCREC", 0}, bcRecData);
70 pc.outputs().snapshot(Output{"ZDC", "ENERGY", 0}, energy);
71 pc.outputs().snapshot(Output{"ZDC", "TDCDATA", 0}, tdcData);
72 pc.outputs().snapshot(Output{"ZDC", "INFO", 0}, info);
73
74 if (noEntry || mTree->GetReadEntry() + 1 >= mTree->GetEntries()) {
76 pc.services().get<ControlService>().readyToQuit(QuitRequest::Me);
77 }
78}
79
80void RecEventReader::connectTree(const std::string& filename)
81{
82 mTree.reset(nullptr); // in case it was already loaded
83
84 mFile.reset(TFile::Open(filename.c_str()));
85 assert(mFile && !mFile->IsZombie());
86 mTree.reset((TTree*)mFile->Get(mRecEventTreeName.c_str()));
87 assert(mTree);
88
89 mTree->SetBranchAddress(mBCRecDataBranchName.c_str(), &mBCRecData);
90 mTree->SetBranchAddress(mZDCEnergyBranchName.c_str(), &mZDCEnergy);
91 mTree->SetBranchAddress(mZDCTDCDataBranchName.c_str(), &mZDCTDCData);
92 mTree->SetBranchAddress(mZDCInfoBranchName.c_str(), &mZDCInfo);
93 if (mUseMC) {
94 LOG(warning) << "MC-truth is not supported for ZDC recpoints currently";
95 mUseMC = false;
96 }
97
98 LOG(info) << "Loaded ZDC RecEvents tree from " << filename << " with " << mTree->GetEntries() << " entries";
99}
100
102{
103 std::vector<OutputSpec> outputs;
104 outputs.emplace_back("ZDC", "BCREC", 0, Lifetime::Timeframe);
105 outputs.emplace_back("ZDC", "ENERGY", 0, Lifetime::Timeframe);
106 outputs.emplace_back("ZDC", "TDCDATA", 0, Lifetime::Timeframe);
107 outputs.emplace_back("ZDC", "INFO", 0, Lifetime::Timeframe);
108 if (useMC) {
109 LOG(warning) << "MC-truth is not supported for ZDC RecEvents currently";
110 }
111
112 return DataProcessorSpec{
113 "zdc-reco-reader",
114 Inputs{},
115 outputs,
116 AlgorithmSpec{adaptFromTask<RecEventReader>()},
117 Options{
118 {"zdc-reco-infile", VariantType::String, "zdcreco.root", {"Name of the input file"}},
119 {"input-dir", VariantType::String, "none", {"Input directory"}}}};
120}
121
122} // namespace zdc
123} // namespace o2
Definition of the Names Generator class.
void snapshot(const Output &spec, T const &object)
ConfigParamRegistry const & options()
Definition InitContext.h:33
DataAllocator & outputs()
The data allocator is used to allocate memory for the output data.
ServiceRegistryRef services()
The services registry associated with this processing context.
virtual void endOfStream(EndOfStreamContext &context)
This is invoked whenever we have an EndOfStream event.
Definition Task.h:43
void run(ProcessingContext &pc) final
void init(InitContext &ic) final
Defining ITS Vertex explicitly as messageable.
Definition Cartesian.h:288
std::vector< ConfigParamSpec > Options
std::vector< InputSpec > Inputs
struct o2::upgrades_utils::@478 zdc
structure to keep FT0 information
framework::DataProcessorSpec getRecEventReaderSpec(bool useMC)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::string filename()
static std::string rectifyDirectory(const std::string_view p)
static std::string concat_string(Ts const &... ts)
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"