Project
Loading...
Searching...
No Matches
MatchedMCHMIDReaderSpec.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#include "TFile.h"
16#include "TTree.h"
17#include "Framework/Task.h"
26#include <fairlogger/Logger.h>
27
28using namespace o2::framework;
29using namespace o2::globaltracking;
30
31namespace o2
32{
33namespace globaltracking
34{
35
36class MatchMCHMIDReader : public Task
37{
38 public:
39 MatchMCHMIDReader(bool useMC) : mUseMC(useMC) {}
40 ~MatchMCHMIDReader() override = default;
41 void init(InitContext& ic) final;
42 void run(ProcessingContext& pc) final;
43
44 private:
45 void connectTree(const std::string& filename);
46 bool mUseMC = true;
47 std::unique_ptr<TFile> mFile;
48 std::unique_ptr<TTree> mTree;
49 std::string mFileName = "";
50 std::vector<o2::dataformats::TrackMCHMID> mTracks, *mTracksPtr = &mTracks;
51 std::vector<o2::MCCompLabel> mLabels, *mLabelsPtr = &mLabels;
52};
53
55{
56 mFileName = o2::utils::Str::concat_string(o2::utils::Str::rectifyDirectory(ic.options().get<std::string>("input-dir")),
57 ic.options().get<std::string>("matchmchmid-track-infile"));
58 connectTree(mFileName);
59}
60
62{
63 auto ent = mTree->GetReadEntry() + 1;
64 // A timeframe holds no collision at all whenever the interaction rate is low enough, and
65 // the tree then has no entry to read. Publish empty containers instead of reading past the
66 // end and pushing branch addresses that GetEntry has not filled, so that the consumers
67 // downstream still see the timeframe. (This used to be an assert, which is compiled out of
68 // every production build since ENABLE_CASSERT defaults to OFF.)
69 const bool noEntry = ent >= mTree->GetEntries();
70 if (noEntry) {
71 LOG(info) << "no entry to read, publishing empty output";
72 } else {
73 mTree->GetEntry(ent);
74 }
75 LOG(info) << "Pushing " << mTracks.size() << " MCHMID matches at entry " << ent;
76
77 pc.outputs().snapshot(OutputRef{"muontracks"}, mTracks);
78 if (mUseMC) {
79 pc.outputs().snapshot(OutputRef{"muontracklabels"}, mLabels);
80 }
81
82 if (noEntry || mTree->GetReadEntry() + 1 >= mTree->GetEntries()) {
84 pc.services().get<ControlService>().readyToQuit(QuitRequest::Me);
85 }
86}
87
88void MatchMCHMIDReader::connectTree(const std::string& filename)
89{
90 mTree.reset(nullptr); // in case it was already loaded
91 mFile.reset(TFile::Open(filename.c_str()));
92 assert(mFile && !mFile->IsZombie());
93 mTree.reset((TTree*)mFile->Get("o2sim"));
94 assert(mTree);
95 mTree->SetBranchAddress("tracks", &mTracksPtr);
96 if (mUseMC) {
97 mTree->SetBranchAddress("tracklabels", &mLabelsPtr);
98 }
99 LOG(info) << "Loaded tree from " << filename << " with " << mTree->GetEntries() << " entries";
100}
101
103{
104 std::vector<OutputSpec> outputs;
105 outputs.emplace_back(OutputSpec{{"muontracks"}, "GLO", "MTC_MCHMID", 0, Lifetime::Timeframe});
106 if (useMC) {
107 outputs.emplace_back(OutputSpec{{"muontracklabels"}, "GLO", "MCMTC_MCHMID", 0, Lifetime::Timeframe});
108 }
109
110 return DataProcessorSpec{
111 "mchmid-matches-reader",
112 Inputs{},
113 outputs,
114 AlgorithmSpec{adaptFromTask<MatchMCHMIDReader>(useMC)},
115 Options{
116 {"matchmchmid-track-infile", VariantType::String, "muontracks.root", {"Name of the input file"}},
117 {"input-dir", VariantType::String, "none", {"Input directory"}}}};
118}
119
120} // namespace globaltracking
121} // namespace o2
Header of the General Run Parameters object.
Definition of the Names Generator class.
Type wrappers for enfording a specific serialization method.
Definition of the MUON track.
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
Defining ITS Vertex explicitly as messageable.
Definition Cartesian.h:288
std::vector< ConfigParamSpec > Options
std::vector< InputSpec > Inputs
framework::DataProcessorSpec getMCHMIDMatchedReaderSpec(bool useMC)
create a processor spec
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"