Project
Loading...
Searching...
No Matches
TRDCalibReaderSpec.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
15
18#include "fairlogger/Logger.h"
20
21using namespace o2::framework;
22
23namespace o2
24{
25namespace trd
26{
27
29{
30 // get the option from the init context
31 LOG(info) << "Init TRD tracklet reader!";
32 mInFileName = o2::utils::Str::concat_string(o2::utils::Str::rectifyDirectory(ic.options().get<std::string>("input-dir")),
33 ic.options().get<std::string>("trd-calib-infile"));
34 mInTreeName = o2::utils::Str::concat_string(o2::utils::Str::rectifyDirectory(ic.options().get<std::string>("input-dir")),
35 ic.options().get<std::string>("treename"));
36 connectTree();
37}
38
39void TRDCalibReader::connectTree()
40{
41 mTree.reset(nullptr); // in case it was already loaded
42 mFile.reset(TFile::Open(mInFileName.c_str()));
43 assert(mFile && !mFile->IsZombie());
44 mTree.reset((TTree*)mFile->Get(mInTreeName.c_str()));
45 assert(mTree);
46 auto attachBranch = [this](const char* brName, void* add) {
47 auto br = this->mTree->GetBranch(brName);
48 if (!br) {
49 LOGP(warn, "Branch {} is absent, will send empty output", std::string(brName));
50 return;
51 }
52 br->SetAddress(add);
53 };
54 attachBranch("AngularResids", &mAngResidPtr);
55 attachBranch("PulseHeight", &mPHDataPtr);
56 attachBranch("calibdatagain", &mGainData);
57 LOG(info) << "Loaded tree from " << mInFileName << " with " << mTree->GetEntries() << " entries";
58}
59
61{
62 auto currEntry = mTree->GetReadEntry() + 1;
63 assert(currEntry < mTree->GetEntries()); // this should not happen
64 mTree->GetEntry(currEntry);
65 LOG(info) << "Pushing angular residual histograms filled with " << mAngResids.getNEntries() << " entries at tree entry " << currEntry;
66 pc.outputs().snapshot(Output{o2::header::gDataOriginTRD, "ANGRESHISTS", 0}, mAngResids);
67 pc.outputs().snapshot(Output{o2::header::gDataOriginTRD, "PULSEHEIGHT", 0}, mPHData);
68 pc.outputs().snapshot(Output{o2::header::gDataOriginTRD, "GAINCALIBHISTS", 0}, mGainData);
69
70 if (mTree->GetReadEntry() + 1 >= mTree->GetEntries()) {
72 pc.services().get<ControlService>().readyToQuit(QuitRequest::Me);
73 }
74}
75
77{
78 std::vector<OutputSpec> outputs;
79 outputs.emplace_back(o2::header::gDataOriginTRD, "ANGRESHISTS", 0, Lifetime::Timeframe);
80 outputs.emplace_back(o2::header::gDataOriginTRD, "PULSEHEIGHT", 0, Lifetime::Timeframe);
81 outputs.emplace_back(o2::header::gDataOriginTRD, "GAINCALIBHISTS", 0, Lifetime::Timeframe);
82
83 return DataProcessorSpec{
84 "TRDCalibReader",
85 Inputs{},
86 outputs,
87 AlgorithmSpec{adaptFromTask<TRDCalibReader>()},
88 Options{
89 {"trd-calib-infile", VariantType::String, "trdangreshistos.root", {"Name of the input file"}},
90 {"input-dir", VariantType::String, "none", {"Input directory"}},
91 {"treename", VariantType::String, "calibdata", {"Name of top-level TTree"}},
92 }};
93}
94
95} // namespace trd
96} // 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 init(o2::framework::InitContext &ic) final
void run(o2::framework::ProcessingContext &pc) final
constexpr o2::header::DataOrigin gDataOriginTRD
Definition DataHeader.h:577
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< ConfigParamSpec > Options
std::vector< InputSpec > Inputs
framework::DataProcessorSpec getTRDCalibReaderSpec()
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
static std::string rectifyDirectory(const std::string_view p)
static std::string concat_string(Ts const &... ts)
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"