Project
Loading...
Searching...
No Matches
DigitReaderSpec.h
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#ifndef O2_FDD_DIGITREADER
15#define O2_FDD_DIGITREADER
16
17#include "TFile.h"
18#include "TTree.h"
19
21#include "Framework/Task.h"
25
26using namespace o2::framework;
27
28namespace o2
29{
30namespace fdd
31{
32
33class DigitReader : public Task
34{
35 public:
36 DigitReader(bool useMC = true);
37 ~DigitReader() override = default;
38 void init(InitContext& ic) final;
39 void run(ProcessingContext& pc) final;
40
41 private:
42 bool mTrigInp = true; // read trigger inputs
43 bool mUseMC = true; // use MC truth
45 std::unique_ptr<TTree> mTree;
46 std::unique_ptr<TFile> mFile;
47
48 std::string mInputFileName = "";
49 std::string mDigitTreeName = "o2sim";
50 std::string mDigitBCBranchName = "FDDDigit";
51 std::string mDigitChBranchName = "FDDDigitCh";
52 std::string mTriggerBranchName = "TRIGGERINPUT";
53 std::string mDigitMCTruthBranchName = "FDDDigitLabels";
54};
55
59
60} // namespace fdd
61} // namespace o2
62
63#endif /* O2_FDD_DIGITREADER */
Container class to store values of single FDD channel.
~DigitReader() override=default
void run(ProcessingContext &pc) final
void init(InitContext &ic) final
constexpr o2::header::DataOrigin gDataOriginFDD
Definition DataHeader.h:568
framework::DataProcessorSpec getFDDDigitReaderSpec(bool useMC)
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
struct o2::upgrades_utils::@458 fdd
Collision labels.
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...