Project
Loading...
Searching...
No Matches
ReadRaw.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
15// RAW data format description: DataFormat/Detectors/FIT/FDD/RawEventData
16
17#ifndef ALICEO2_FDD_READRAW_H_
18#define ALICEO2_FDD_READRAW_H_
19
20#include <fstream>
21#include <iostream>
22#include <iomanip>
23#include <map>
24#include <string>
25#include <sstream>
26#include <vector>
27#include "TBranch.h"
28#include "TTree.h"
34
35namespace o2
36{
37namespace fdd
38{
40{
41 public:
42 ReadRaw() = default;
43 ReadRaw(bool doConversionToDigits, const std::string inputRawFilePath = "fdd.raw", const std::string outputRawFilePath = "fdddigitsFromRaw.root");
44 void readRawData(const LookUpTable& lut);
45 void writeDigits(const std::string& outputDigitsFilePath);
46 void close();
47
48 private:
49 std::ifstream mRawFileIn;
50 std::map<o2::InteractionRecord, std::vector<ChannelData>> mDigitAccum; // digit accumulator
51
52 template <typename T>
53 TBranch* getOrMakeBranch(TTree& tree, std::string brname, T* ptr)
54 {
55 if (auto br = tree.GetBranch(brname.c_str())) {
56 br->SetAddress(static_cast<void*>(ptr));
57 return br;
58 }
59 // otherwise make it
60 return tree.Branch(brname.c_str(), ptr);
61 }
62
63 ClassDefNV(ReadRaw, 1);
64};
65
66} // namespace fdd
67} // namespace o2
68#endif
Container class to store values of single FDD channel.
TBranch * ptr
void writeDigits(const std::string &outputDigitsFilePath)
void readRawData(const LookUpTable &lut)
ReadRaw()=default
ReadRaw(bool doConversionToDigits, const std::string inputRawFilePath="fdd.raw", const std::string outputRawFilePath="fdddigitsFromRaw.root")
struct o2::upgrades_utils::@458 fdd
Collision labels.
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::unique_ptr< TTree > tree((TTree *) flIn.Get(std::string(o2::base::NameConf::CTFTREENAME).c_str()))