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
19using namespace o2::header;
20
21//_________________________________________________
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//_________________________________________________
39void RDHAny::copyFrom(const void* rdh)
40{
41 std::memcpy(this, rdh, sizeof(RDHAny));
42}
const GLdouble * v
Definition glcorearb.h:832
O2 data header classes and API, v0.1.
Definition DetID.h:49
std::string to_string(gsl::span< T, Size > span)
Definition common.h:52
void copyFrom(const void *rdh)
Definition RDHAny.cxx:39
RDHAny(int v=0)
placeholder copied from specific version
Definition RDHAny.cxx:23