Project
Loading...
Searching...
No Matches
TRDPHReaderSpec.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 PH 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-ph-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 TRDPHReader::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 mTree->SetBranchAddress("values", &mPHValuesPtr);
47 LOG(info) << "Loaded tree from " << mInFileName << " with " << mTree->GetEntries() << " entries";
48}
49
51{
52 auto currEntry = mTree->GetReadEntry() + 1;
53 assert(currEntry < mTree->GetEntries());
54 mTree->GetEntry(currEntry);
55
56 LOG(info) << "Pushing vector of PH values filled with " << mPHValues.size() << " entries at tree entry " << currEntry;
57 pc.outputs().snapshot(Output{o2::header::gDataOriginTRD, "PULSEHEIGHT", 0}, mPHValues);
58
59 if (mTree->GetReadEntry() + 1 >= mTree->GetEntries()) {
61 pc.services().get<ControlService>().readyToQuit(QuitRequest::Me);
62 }
63}
64
66{
67 std::vector<OutputSpec> outputs;
68 outputs.emplace_back(o2::header::gDataOriginTRD, "PULSEHEIGHT", 0, Lifetime::Timeframe);
69
70 return DataProcessorSpec{
71 "TRDPHReader",
72 Inputs{},
73 outputs,
74 AlgorithmSpec{adaptFromTask<TRDPHReader>()},
75 Options{
76 {"trd-ph-infile", VariantType::String, "trd_PH.root", {"Name of the input file"}},
77 {"input-dir", VariantType::String, "none", {"Input directory"}},
78 {"treename", VariantType::String, "ph", {"Name of top-level TTree"}},
79 }};
80}
81
82} // namespace trd
83} // 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 run(o2::framework::ProcessingContext &pc) final
void init(o2::framework::InitContext &ic) 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 getTRDPHReaderSpec()
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"