Project
Loading...
Searching...
No Matches
RecPointReaderSpec.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::ft0;
24
25namespace o2
26{
27namespace ft0
28{
29
31{
32 mUseMC = useMC;
33 if (useMC) {
34 LOG(warning) << "FT0 RecPoint 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>("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::ft0::RecPoints> noRecPoints;
61 static const std::vector<o2::ft0::ChannelDataFloat> noChannelData;
62 const auto& recPoints = noEntry ? noRecPoints : *mRecPoints;
63 const auto& channelData = noEntry ? noChannelData : *mChannelData;
64 LOG(debug) << "FT0 RecPointReader pushes " << recPoints.size() << " recpoints with " << channelData.size() << " channels at entry " << ent;
65 pc.outputs().snapshot(Output{mOrigin, "RECPOINTS", 0}, recPoints);
66 pc.outputs().snapshot(Output{mOrigin, "RECCHDATA", 0}, channelData);
67
68 if (noEntry || mTree->GetReadEntry() + 1 >= mTree->GetEntries()) {
70 pc.services().get<ControlService>().readyToQuit(QuitRequest::Me);
71 }
72}
73
74void RecPointReader::connectTree(const std::string& filename)
75{
76 mTree.reset(nullptr); // in case it was already loaded
77 mFile.reset(TFile::Open(filename.c_str()));
78 assert(mFile && !mFile->IsZombie());
79 mTree.reset((TTree*)mFile->Get(mRecPointTreeName.c_str()));
80 assert(mTree);
81
82 mTree->SetBranchAddress(mRecPointBranchName.c_str(), &mRecPoints);
83 mTree->SetBranchAddress(mChannelDataBranchName.c_str(), &mChannelData);
84 if (mUseMC) {
85 LOG(warning) << "MC-truth is not supported for FT0 recpoints currently";
86 mUseMC = false;
87 }
88
89 LOG(info) << "Loaded FT0 RecPoints tree from " << filename << " with " << mTree->GetEntries() << " entries";
90}
91
93{
94 std::vector<OutputSpec> outputSpec;
95 outputSpec.emplace_back(o2::header::gDataOriginFT0, "RECPOINTS", 0, Lifetime::Timeframe);
96 outputSpec.emplace_back(o2::header::gDataOriginFT0, "RECCHDATA", 0, Lifetime::Timeframe);
97 if (useMC) {
98 LOG(warning) << "MC-truth is not supported for FT0 recpoints currently";
99 }
100
101 return DataProcessorSpec{
102 "ft0-recpoints-reader",
103 Inputs{},
104 outputSpec,
105 AlgorithmSpec{adaptFromTask<RecPointReader>()},
106 Options{
107 {"infile", VariantType::String, "o2reco_ft0.root", {"Name of the input file"}},
108 {"input-dir", VariantType::String, "none", {"Input directory"}}}};
109}
110
111} // namespace ft0
112} // namespace o2
std::ostringstream debug
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
RecPointReader(bool useMC=false)
constexpr o2::header::DataOrigin gDataOriginFT0
Definition DataHeader.h:566
Defining ITS Vertex explicitly as messageable.
Definition Cartesian.h:288
std::vector< ConfigParamSpec > Options
std::vector< InputSpec > Inputs
framework::DataProcessorSpec getRecPointReaderSpec(bool useMC)
struct o2::upgrades_utils::@477 ft0
structure to keep V0C information
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"