Project
Loading...
Searching...
No Matches
RawFileReader.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
16#ifndef O2_MID_RAWFILEREADER_H
17#define O2_MID_RAWFILEREADER_H
18
19#include <cstdint>
20#include <fstream>
21#include <vector>
23
24namespace o2
25{
26namespace mid
27{
29{
30 public:
31 bool init(const char* inFilename, bool readContinuous = false);
32 bool readHB(bool sendCompleteHBs = false);
33 void clear();
34
36 int getState() { return mState; }
37
39 const std::vector<uint8_t>& getData() { return mBytes; }
40
41 void setCustomRDH(const header::RAWDataHeader& rdh) { mCustomRDH = rdh; }
42 void setCustomPayloadSize(uint16_t memorySize = 0x2000, uint16_t offsetToNext = 0x2000);
43
44 private:
45 void read(size_t nBytes);
46 bool replaceRDH(size_t headerIndex);
47
48 std::ifstream mFile{};
49 std::vector<uint8_t> mBytes;
50 static constexpr unsigned int sHeaderSize{64};
51 bool mReadContinuous{false};
52 int mState{0};
53
54 header::RAWDataHeader mCustomRDH{};
55};
56} // namespace mid
57} // namespace o2
58
59#endif /* O2_MID_RAWFILEREADER_H */
Definition of the RAW Data Header.
void setCustomPayloadSize(uint16_t memorySize=0x2000, uint16_t offsetToNext=0x2000)
bool readHB(bool sendCompleteHBs=false)
const std::vector< uint8_t > & getData()
Gets the vector of data.
void setCustomRDH(const header::RAWDataHeader &rdh)
bool init(const char *inFilename, bool readContinuous=false)
int getState()
Gets the state.
RAWDataHeaderV7 RAWDataHeader
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...