Project
Loading...
Searching...
No Matches
PayloadEncoder.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#include "BareElinkEncoder.h"
15#include "PayloadEncoderImpl.h"
19#include <gsl/span>
20
21namespace o2::mch::raw
22{
23namespace impl
24{
25template <typename FORMAT, typename CHARGESUM, int VERSION, bool forceNoPhase>
27 static std::unique_ptr<PayloadEncoder> _(Solar2FeeLinkMapper solar2feelink)
28 {
30 return std::make_unique<PayloadEncoderImpl<FORMAT, CHARGESUM, VERSION>>(solar2feelink);
31 }
32};
33} // namespace impl
34
35template <typename FORMAT, typename CHARGESUM, int VERSION, bool forceNoPhase = true>
36std::unique_ptr<PayloadEncoder> createPayloadEncoder(Solar2FeeLinkMapper solar2feelink)
37{
39}
40
41std::unique_ptr<PayloadEncoder> createPayloadEncoder(Solar2FeeLinkMapper solar2feelink,
42 bool userLogic, int version, bool chargeSumMode)
43{
44 if (version != 0 && version != 1) {
45 throw std::invalid_argument("Only version 0 or 1 are supported");
46 }
47 if (userLogic) {
48 if (version == 0) {
49 if (chargeSumMode) {
50 return createPayloadEncoder<UserLogicFormat, ChargeSumMode, 0>(solar2feelink);
51 } else {
52 return createPayloadEncoder<UserLogicFormat, SampleMode, 0>(solar2feelink);
53 }
54 } else {
55 if (chargeSumMode) {
56 return createPayloadEncoder<UserLogicFormat, ChargeSumMode, 1>(solar2feelink);
57 } else {
58 return createPayloadEncoder<UserLogicFormat, SampleMode, 1>(solar2feelink);
59 }
60 }
61 } else {
62 if (chargeSumMode) {
63 return createPayloadEncoder<BareFormat, ChargeSumMode, 0>(solar2feelink);
64 } else {
65 return createPayloadEncoder<BareFormat, SampleMode, 0>(solar2feelink);
66 }
67 }
68}
69} // namespace o2::mch::raw
uint32_t version
Definition RawData.h:8
A GBTEncoder manages 40 ElinkEncoder to encode the data of one GBT.
Definition GBTEncoder.h:44
std::function< std::optional< FeeLinkId >(uint16_t solarId)> Solar2FeeLinkMapper
From solarId to (feeId,linkId)
Definition Mapper.h:57
std::unique_ptr< PayloadEncoder > createPayloadEncoder(Solar2FeeLinkMapper solar2feelink, bool userLogic, int version, bool chargeSumMode)
static std::unique_ptr< PayloadEncoder > _(Solar2FeeLinkMapper solar2feelink)