Project
Loading...
Searching...
No Matches
STFHeader.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
12#ifndef ALICEO2_BASE_STF_HEADER_
13#define ALICEO2_BASE_STF_HEADER_
14
15#include <cstdint>
16#include <string>
17
18namespace o2::header
19{
20
21struct STFHeader { // fake header to mimic DD SubTimeFrame::Header sent with DISTSUBTIMEFRAME message
22 uint64_t id = uint64_t(-1);
23 uint32_t firstOrbit = uint32_t(-1);
24 std::uint32_t runNumber = 0;
25 [[nodiscard]] size_t size() const { return sizeof(STFHeader); }
26
27 std::string asString();
28};
29
30} // namespace o2::header
31
32#endif
O2 data header classes and API, v0.1.
Definition DetID.h:49
std::uint32_t runNumber
Definition STFHeader.h:24
size_t size() const
Definition STFHeader.h:25
std::string asString()
Definition STFHeader.cxx:17