Project
Loading...
Searching...
No Matches
RDHAny.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
12
// @brief implementations for placeholder class of arbitraty-version 64B-lonh RDH
13
// @author ruben.shahoyan@cern.ch
14
15
#include "
Headers/RDHAny.h
"
16
#include <string>
17
#include <cstring>
18
19
using namespace
o2::header
;
20
21
//_________________________________________________
23
RDHAny::RDHAny
(
int
v
)
24
{
25
if
(
v
== 0) {
26
*
this
=
RAWDataHeader
{};
27
}
else
if
(
v
== 6) {
28
*
this
=
RAWDataHeaderV6
{};
29
}
else
if
(
v
== 5) {
30
*
this
=
RAWDataHeaderV5
{};
31
}
else
if
(
v
== 3 ||
v
== 4) {
32
*
this
=
RAWDataHeaderV4
{};
33
}
else
{
34
throw
std::runtime_error(std::string(
"unsupported RDH version "
) +
std::to_string
(
v
));
35
}
36
}
37
38
//_________________________________________________
39
void
RDHAny::copyFrom
(
const
void
* rdh)
40
{
41
std::memcpy(
this
, rdh,
sizeof
(
RDHAny
));
42
}
RDHAny.h
v
const GLdouble * v
Definition
glcorearb.h:832
o2::header
O2 data header classes and API, v0.1.
Definition
DetID.h:49
std::to_string
std::string to_string(gsl::span< T, Size > span)
Definition
common.h:52
o2::header::RAWDataHeaderV4
Definition
RAWDataHeader.h:382
o2::header::RAWDataHeaderV5
Definition
RAWDataHeader.h:259
o2::header::RAWDataHeaderV6
Definition
RAWDataHeader.h:166
o2::header::RAWDataHeaderV7
Definition
RAWDataHeader.h:71
o2::header::RDHAny
Definition
RDHAny.h:29
o2::header::RDHAny::copyFrom
void copyFrom(const void *rdh)
Definition
RDHAny.cxx:39
o2::header::RDHAny::RDHAny
RDHAny(int v=0)
placeholder copied from specific version
Definition
RDHAny.cxx:23
DataFormats
Headers
src
RDHAny.cxx
Generated on Thu Apr 3 2025 21:05:13 for Project by
1.9.8