Project
Loading...
Searching...
No Matches
ClusterReaderSpec.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
16#include "TTree.h"
17
20#include "Framework/Logger.h"
23#include <cassert>
25
26using namespace o2::framework;
27using namespace o2::itsmft;
28
29namespace o2
30{
31namespace itsmft
32{
33
34ClusterReader::ClusterReader(o2::detectors::DetID id, bool useMC, bool usePatterns, bool triggerOut)
35{
37 mDetNameLC = mDetName = id.getName();
38 mUseMC = useMC;
39 mUsePatterns = usePatterns;
40 mTriggerOut = triggerOut;
41 std::transform(mDetNameLC.begin(), mDetNameLC.end(), mDetNameLC.begin(), ::tolower);
42}
43
45{
47 ic.options().get<std::string>((mDetNameLC + "-cluster-infile").c_str()));
49}
50
52{
53 auto ent = mTree->GetReadEntry() + 1;
54 assert(ent < mTree->GetEntries()); // this should not happen
55 mTree->GetEntry(ent);
56 LOG(info) << mDetName << "ClusterReader pushes " << mClusROFRec.size() << " ROFRecords,"
57 << mClusterCompArray.size() << " compact clusters at entry " << ent;
58
59 // This is a very ugly way of providing DataDescription, which anyway does not need to contain detector name.
60 // To be fixed once the names-definition class is ready
61 pc.outputs().snapshot(Output{mOrigin, "CLUSTERSROF", 0}, mClusROFRec);
62 pc.outputs().snapshot(Output{mOrigin, "COMPCLUSTERS", 0}, mClusterCompArray);
63 if (mUsePatterns) {
64 pc.outputs().snapshot(Output{mOrigin, "PATTERNS", 0}, mPatternsArray);
65 }
66 if (mUseMC) {
67 pc.outputs().snapshot(Output{mOrigin, "CLUSTERSMCTR", 0}, mClusterMCTruth);
68 pc.outputs().snapshot(Output{mOrigin, "CLUSTERSMC2ROF", 0}, mClusMC2ROFs);
69 }
70 if (mTriggerOut) {
71 std::vector<o2::itsmft::PhysTrigger> dummyTrig;
72 pc.outputs().snapshot(Output{mOrigin, "PHYSTRIG", 0}, dummyTrig);
73 }
74 if (mTree->GetReadEntry() + 1 >= mTree->GetEntries()) {
76 pc.services().get<ControlService>().readyToQuit(QuitRequest::Me);
77 }
78}
79
80void ClusterReader::connectTree(const std::string& filename)
81{
82 mTree.reset(nullptr); // in case it was already loaded
83 mFile.reset(TFile::Open(filename.c_str()));
84 assert(mFile && !mFile->IsZombie());
85 mTree.reset((TTree*)mFile->Get(mClusTreeName.c_str()));
86 assert(mTree);
87
88 mTree->SetBranchAddress((mDetName + mClusROFBranchName).c_str(), &mClusROFRecPtr);
89 mTree->SetBranchAddress((mDetName + mClusterCompBranchName).c_str(), &mClusterCompArrayPtr);
90 if (mUsePatterns) {
91 mTree->SetBranchAddress((mDetName + mClusterPattBranchName).c_str(), &mPatternsArrayPtr);
92 }
93 if (mUseMC) {
94 if (mTree->GetBranch((mDetName + mClustMCTruthBranchName).c_str()) &&
95 mTree->GetBranch((mDetName + mClustMC2ROFBranchName).c_str())) {
96 mTree->SetBranchAddress((mDetName + mClustMCTruthBranchName).c_str(), &mClusterMCTruthPtr);
97 mTree->SetBranchAddress((mDetName + mClustMC2ROFBranchName).c_str(), &mClusMC2ROFsPtr);
98 } else {
99 LOG(info) << "MC-truth is missing";
100 mUseMC = false;
101 }
102 }
103 LOG(info) << "Loaded tree from " << filename << " with " << mTree->GetEntries() << " entries";
104}
105
106DataProcessorSpec getITSClusterReaderSpec(bool useMC, bool usePatterns, bool triggerOut)
107{
108 std::vector<OutputSpec> outputSpec;
109 outputSpec.emplace_back("ITS", "CLUSTERSROF", 0, Lifetime::Timeframe);
110 outputSpec.emplace_back("ITS", "COMPCLUSTERS", 0, Lifetime::Timeframe);
111 if (usePatterns) {
112 outputSpec.emplace_back("ITS", "PATTERNS", 0, Lifetime::Timeframe);
113 }
114 if (useMC) {
115 outputSpec.emplace_back("ITS", "CLUSTERSMCTR", 0, Lifetime::Timeframe);
116 outputSpec.emplace_back("ITS", "CLUSTERSMC2ROF", 0, Lifetime::Timeframe);
117 }
118 if (triggerOut) {
119 outputSpec.emplace_back("ITS", "PHYSTRIG", 0, Lifetime::Timeframe);
120 }
121 return DataProcessorSpec{
122 "its-cluster-reader",
123 Inputs{},
124 outputSpec,
125 AlgorithmSpec{adaptFromTask<ITSClusterReader>(useMC, usePatterns, triggerOut)},
126 Options{
127 {"its-cluster-infile", VariantType::String, "o2clus_its.root", {"Name of the input cluster file"}},
128 {"input-dir", VariantType::String, "none", {"Input directory"}}}};
129}
130
131DataProcessorSpec getMFTClusterReaderSpec(bool useMC, bool usePatterns, bool triggerOut)
132{
133 std::vector<OutputSpec> outputSpec;
134 outputSpec.emplace_back("MFT", "CLUSTERSROF", 0, Lifetime::Timeframe);
135 outputSpec.emplace_back("MFT", "COMPCLUSTERS", 0, Lifetime::Timeframe);
136 if (usePatterns) {
137 outputSpec.emplace_back("MFT", "PATTERNS", 0, Lifetime::Timeframe);
138 }
139 if (useMC) {
140 outputSpec.emplace_back("MFT", "CLUSTERSMCTR", 0, Lifetime::Timeframe);
141 outputSpec.emplace_back("MFT", "CLUSTERSMC2ROF", 0, Lifetime::Timeframe);
142 }
143 if (triggerOut) {
144 outputSpec.emplace_back("MFT", "PHYSTRIG", 0, Lifetime::Timeframe);
145 }
146 return DataProcessorSpec{
147 "mft-cluster-reader",
148 Inputs{},
149 outputSpec,
150 AlgorithmSpec{adaptFromTask<MFTClusterReader>(useMC, usePatterns, triggerOut)},
151 Options{
152 {"mft-cluster-infile", VariantType::String, "mftclusters.root", {"Name of the input cluster file"}},
153 {"input-dir", VariantType::String, "none", {"Input directory"}}}};
154}
155
156} // namespace itsmft
157} // namespace o2
Definition of the Names Generator class.
Definition Physics trigger record extracted from the ITS/MFT stream.
Static class with identifiers, bitmasks and names for ALICE detectors.
Definition DetID.h:58
static constexpr ID ITS
Definition DetID.h:63
static constexpr ID MFT
Definition DetID.h:71
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
o2::dataformats::MCTruthContainer< o2::MCCompLabel > * mClusterMCTruthPtr
std::vector< unsigned char > * mPatternsArrayPtr
std::unique_ptr< TFile > mFile
void init(InitContext &ic) final
o2::dataformats::MCTruthContainer< o2::MCCompLabel > mClusterMCTruth
o2::header::DataOrigin mOrigin
std::vector< o2::itsmft::ROFRecord > mClusROFRec
void run(ProcessingContext &pc) final
std::vector< unsigned char > mPatternsArray
std::vector< o2::itsmft::MC2ROFRecord > * mClusMC2ROFsPtr
std::vector< o2::itsmft::MC2ROFRecord > mClusMC2ROFs
std::vector< o2::itsmft::CompClusterExt > mClusterCompArray
std::vector< o2::itsmft::ROFRecord > * mClusROFRecPtr
std::vector< o2::itsmft::CompClusterExt > * mClusterCompArrayPtr
void connectTree(const std::string &filename)
std::unique_ptr< TTree > mTree
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< ConfigParamSpec > Options
std::vector< InputSpec > Inputs
framework::DataProcessorSpec getMFTClusterReaderSpec(bool useMC=true, bool usePatterns=true, bool useTriggers=true)
framework::DataProcessorSpec getITSClusterReaderSpec(bool useMC=true, bool usePatterns=true, bool useTriggers=true)
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"