Project
Loading...
Searching...
No Matches
DigitReaderSpec.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
12#include <vector>
13
14#include "TTree.h"
15
18#include "Framework/Logger.h"
23#include <cassert>
24
25using namespace o2::framework;
26using namespace o2::itsmft;
27
28namespace o2
29{
30namespace trk
31{
32
33DigitReader::DigitReader(o2::detectors::DetID id, bool useMC, bool useCalib)
34{
35 assert(id == o2::detectors::DetID::TRK);
36 mDetNameLC = mDetName = id.getName();
37 mDigTreeName = "o2sim";
38
42
45
46 mUseMC = useMC;
47 mUseCalib = useCalib;
48 std::transform(mDetNameLC.begin(), mDetNameLC.end(), mDetNameLC.begin(), ::tolower);
49}
50
52{
53 mFileName = ic.options().get<std::string>((mDetNameLC + "-digit-infile").c_str());
55}
56
58{
59 auto ent = mTree->GetReadEntry() + 1;
60 assert(ent < mTree->GetEntries()); // this should not happen
61
63 if (mUseMC) {
64 mTree->SetBranchAddress(mDigtMCTruthBranchName.c_str(), &plabels);
65 }
66 mTree->GetEntry(ent);
67 LOG(info) << mDetName << "DigitReader pushes " << mDigROFRec.size() << " ROFRecords, "
68 << mDigits.size() << " digits at entry " << ent;
69
70 // This is a very ugly way of providing DataDescription, which anyway does not need to contain detector name.
71 // To be fixed once the names-definition class is ready
72 pc.outputs().snapshot(Output{mOrigin, "DIGITSROF", 0}, mDigROFRec);
73 pc.outputs().snapshot(Output{mOrigin, "DIGITS", 0}, mDigits);
74 if (mUseCalib) {
75 pc.outputs().snapshot(Output{mOrigin, "GBTCALIB", 0}, mCalib);
76 }
77
78 if (mUseMC) {
79 auto& sharedlabels = pc.outputs().make<o2::dataformats::ConstMCTruthContainer<o2::MCCompLabel>>(Output{mOrigin, "DIGITSMCTR", 0});
80 plabels->copyandflatten(sharedlabels);
81 delete plabels;
82 pc.outputs().snapshot(Output{mOrigin, "DIGITSMC2ROF", 0}, mDigMC2ROFs);
83 }
84
85 if (mTree->GetReadEntry() + 1 >= mTree->GetEntries()) {
87 pc.services().get<ControlService>().readyToQuit(QuitRequest::Me);
88 }
89}
90
91void DigitReader::connectTree(const std::string& filename)
92{
93 mTree.reset(nullptr); // in case it was already loaded
94 mFile.reset(TFile::Open(filename.c_str()));
95 assert(mFile && !mFile->IsZombie());
96 mTree.reset((TTree*)mFile->Get(mDigTreeName.c_str()));
97 assert(mTree);
98
99 mTree->SetBranchAddress(mDigROFBranchName.c_str(), &mDigROFRecPtr);
100 mTree->SetBranchAddress(mDigitBranchName.c_str(), &mDigitsPtr);
101 if (mUseCalib) {
102 if (!mTree->GetBranch(mCalibBranchName.c_str())) {
103 throw std::runtime_error("GBT calibration data requested but not found in the tree");
104 }
105 mTree->SetBranchAddress(mCalibBranchName.c_str(), &mCalibPtr);
106 }
107 if (mUseMC) {
108 if (!mTree->GetBranch(mDigtMC2ROFBranchName.c_str()) || !mTree->GetBranch(mDigtMCTruthBranchName.c_str())) {
109 throw std::runtime_error("MC data requested but not found in the tree");
110 }
111 mTree->SetBranchAddress(mDigtMC2ROFBranchName.c_str(), &mDigMC2ROFsPtr);
112 }
113 LOG(info) << "Loaded tree from " << filename << " with " << mTree->GetEntries() << " entries";
114}
115
116DataProcessorSpec getTRKDigitReaderSpec(bool useMC, bool useCalib, std::string defname)
117{
118 std::vector<OutputSpec> outputSpec;
119 outputSpec.emplace_back("TRK", "DIGITS", 0, Lifetime::Timeframe);
120 outputSpec.emplace_back("TRK", "DIGITSROF", 0, Lifetime::Timeframe);
121 if (useCalib) {
122 outputSpec.emplace_back("TRK", "GBTCALIB", 0, Lifetime::Timeframe);
123 }
124 if (useMC) {
125 outputSpec.emplace_back("TRK", "DIGITSMCTR", 0, Lifetime::Timeframe);
126 outputSpec.emplace_back("TRK", "DIGITSMC2ROF", 0, Lifetime::Timeframe);
127 }
128
129 return DataProcessorSpec{
130 "trk-digit-reader",
131 Inputs{},
132 outputSpec,
133 AlgorithmSpec{adaptFromTask<TRKDigitReader>(useMC, useCalib)},
134 Options{
135 {"trk-digit-infile", VariantType::String, defname, {"Name of the input digit file"}}}};
136}
137
138} // namespace trk
139} // namespace o2
A const (ready only) version of MCTruthContainer.
A special IO container - splitting a given vector to enable ROOT IO.
A read-only version of MCTruthContainer allowing for storage optimisation.
void copyandflatten(std::vector< char, Alloc > &output) const
Static class with identifiers, bitmasks and names for ALICE detectors.
Definition DetID.h:58
void snapshot(const Output &spec, T const &object)
decltype(auto) make(const Output &spec, Args... args)
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
std::string mDigtMC2ROFBranchName
void run(ProcessingContext &pc) final
std::vector< o2::itsmft::MC2ROFRecord > * mDigMC2ROFsPtr
std::unique_ptr< TTree > mTree
std::vector< o2::itsmft::ROFRecord > * mDigROFRecPtr
std::vector< o2::itsmft::Digit > * mDigitsPtr
std::string mDigtMCTruthBranchName
std::vector< o2::itsmft::Digit > mDigits
o2::header::DataOrigin mOrigin
std::string mDigitBranchName
std::vector< o2::itsmft::GBTCalibData > * mCalibPtr
std::string mCalibBranchName
std::unique_ptr< TFile > mFile
void init(InitContext &ic) final
std::vector< o2::itsmft::ROFRecord > mDigROFRec
std::string mDigROFBranchName
std::vector< o2::itsmft::GBTCalibData > mCalib
void connectTree(const std::string &filename)
std::vector< o2::itsmft::MC2ROFRecord > mDigMC2ROFs
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< ConfigParamSpec > Options
std::vector< InputSpec > Inputs
framework::DataProcessorSpec getTRKDigitReaderSpec(bool useMC=true, bool useCalib=false, std::string defname="trkdigits.root")
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::string filename()
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"