Project
Loading...
Searching...
No Matches
PadData.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#include <algorithm>
13
14using namespace o2::focal;
15
16ASICData::ASICData(ASICHeader firstheader, ASICHeader secondheader)
17{
18 setFirstHeader(firstheader);
19 setSecondHeader(secondheader);
20}
21
23{
24 if (index >= NHALVES) {
26 }
27 mHeaders[index] = header;
28}
29
31{
32 if (index >= NCHANNELS) {
34 }
35 mChannels[index] = data;
36}
37
38void ASICData::setChannels(const gsl::span<const ASICChannel> channels)
39{
40 std::copy(channels.begin(), channels.end(), mChannels.begin());
41}
42
44{
45 if (index >= NHALVES) {
47 }
48 mCMNChannels[index] = data;
49}
50
51void ASICData::setCMNs(const gsl::span<const ASICChannel> channels)
52{
53 std::copy(channels.begin(), channels.end(), mCMNChannels.begin());
54}
55
57{
58 if (index >= NHALVES) {
60 }
61 mCalibChannels[index] = data;
62}
63
64void ASICData::setCalibs(const gsl::span<const ASICChannel> channels)
65{
66 std::copy(channels.begin(), channels.end(), mCalibChannels.begin());
67}
68
70{
71 if (index >= NHALVES) {
73 }
74 return mHeaders[index];
75}
76
77gsl::span<const ASICHeader> ASICData::getHeaders() const
78{
79 return mHeaders;
80}
81
82gsl::span<const ASICChannel> ASICData::getChannels() const
83{
84 return mChannels;
85}
86
88{
89 if (index >= NCHANNELS) {
91 }
92 return mChannels[index];
93}
94
96{
97 if (index >= NHALVES) {
99 }
100 return mCalibChannels[index];
101}
102
103gsl::span<const ASICChannel> ASICData::getCalibs() const
104{
105 return mCalibChannels;
106}
107
109{
110 if (index >= NCHANNELS) {
112 }
113 return mCMNChannels[index];
114}
115
116gsl::span<const ASICChannel> ASICData::getCMNs() const
117{
118 return mCMNChannels;
119}
120
122{
123 /*
124 for (auto& header : mHeaders) {
125 header.mData = 0;
126 }
127 for (auto& channel : mChannels) {
128 channel.mData = 0;
129 }
130 for (auto& channel : mCalibChannels) {
131 channel.mData = 0;
132 }
133 for (auto& channel : mCMNChannels) {
134 channel.mData = 0;
135 }
136 */
137 std::fill(mHeaders.begin(), mHeaders.end(), ASICHeader(0));
138 std::fill(mChannels.begin(), mChannels.end(), ASICChannel(0));
139 std::fill(mCalibChannels.begin(), mCalibChannels.end(), ASICChannel(0));
140 std::fill(mCMNChannels.begin(), mCMNChannels.end(), ASICChannel(0));
141}
142
143gsl::span<const TriggerWord> ASICContainer::getTriggerWords() const
144{
145 return mTriggerData;
146}
147
148void ASICContainer::appendTriggerWords(gsl::span<const TriggerWord> triggerwords)
149{
150 std::copy(triggerwords.begin(), triggerwords.end(), std::back_inserter(mTriggerData));
151}
152
154{
155 mTriggerData.emplace_back(triggerword);
156}
157
159{
160 mASIC.reset();
161 mTriggerData.clear();
162}
163
165{
166 for (auto& asic : mASICs) {
167 asic.reset();
168 }
169}
170
172{
173 if (index >= NASICS) {
175 }
176 return mASICs[index];
177}
178
180{
181 if (index >= NASICS) {
183 }
184 return mASICs[index];
185}
void appendTriggerWords(gsl::span< const TriggerWord > triggerwords)
Definition PadData.cxx:148
gsl::span< const TriggerWord > getTriggerWords() const
Definition PadData.cxx:143
void appendTriggerWord(TriggerWord triggerword)
Definition PadData.cxx:153
void setChannels(const gsl::span< const ASICChannel > channels)
Definition PadData.cxx:38
void setSecondHeader(ASICHeader header)
Definition PadData.h:60
void setFirstHeader(ASICHeader header)
Definition PadData.h:59
void setChannel(ASICChannel data, int index)
Definition PadData.cxx:30
gsl::span< const ASICChannel > getCalibs() const
Definition PadData.cxx:103
ASICChannel getCalib(int index) const
Definition PadData.cxx:95
gsl::span< const ASICChannel > getCMNs() const
Definition PadData.cxx:116
void setHeader(ASICHeader header, int index)
Definition PadData.cxx:22
ASICHeader getHeader(int index) const
Definition PadData.cxx:69
void setCalib(ASICChannel data, int index)
Definition PadData.cxx:56
void setCMN(ASICChannel data, int index)
Definition PadData.cxx:43
static constexpr int NHALVES
Definition PadData.h:54
gsl::span< const ASICHeader > getHeaders() const
Definition PadData.cxx:77
static constexpr int NCHANNELS
Definition PadData.h:53
void setCalibs(const gsl::span< const ASICChannel > channels)
Definition PadData.cxx:64
ASICChannel getChannel(int index) const
Definition PadData.cxx:87
void setCMNs(const gsl::span< const ASICChannel > channels)
Definition PadData.cxx:51
gsl::span< const ASICChannel > getChannels() const
Definition PadData.cxx:82
ASICChannel getCMN(int index) const
Definition PadData.cxx:108
const ASICContainer & getDataForASIC(int index) const
Definition PadData.cxx:171
static constexpr int NASICS
Definition PadData.h:150
GLuint index
Definition glcorearb.h:781
GLboolean * data
Definition glcorearb.h:298
std::vector< ChannelData > channels