Project
Loading...
Searching...
No Matches
PadMapper.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 <iostream>
14
15using namespace o2::focal;
16
18{
19 initInverseMapping();
20}
21
22std::tuple<unsigned int, unsigned int> PadMapper::getRowColFromChannelID(unsigned int channelID) const
23{
24 if (channelID >= NCHANNELS) {
26 }
27 return mInverseMapping[channelID];
28}
29unsigned int PadMapper::getRow(unsigned int channelID) const
30{
31 return std::get<1>(getRowColFromChannelID(channelID));
32}
33unsigned int PadMapper::getColumn(unsigned int channelID) const
34{
35 return std::get<0>(getRowColFromChannelID(channelID));
36}
37
38unsigned int PadMapper::getChannelID(unsigned int col, unsigned int row) const
39{
40 if (col >= NCOLUMN || row >= NROW) {
42 }
43 return mMapping[col][row];
44}
45
46void PadMapper::initInverseMapping()
47{
48 for (unsigned int icol = 0; icol < NCOLUMN; icol++) {
49 for (unsigned int irow = 0; irow < NROW; irow++) {
50 mInverseMapping[mMapping[icol][irow]] = std::make_tuple(icol, irow);
51 }
52 }
53}
54
56{
57 stream << mMessage;
58}
59
61{
62 stream << mMessage;
63}
64
65std::ostream& o2::focal::operator<<(std::ostream& stream, const PadMapper::ChannelIDException& except)
66{
67 except.print(stream);
68 return stream;
69}
70
71std::ostream& o2::focal::operator<<(std::ostream& stream, const PadMapper::PositionException& except)
72{
73 except.print(stream);
74 return stream;
75}
uint8_t channelID
Definition RawEventData.h:8
uint32_t col
Definition RawData.h:4
void print(std::ostream &stream) const
Definition PadMapper.cxx:55
void print(std::ostream &stream) const
Definition PadMapper.cxx:60
static constexpr std::size_t NCHANNELS
Definition PadMapper.h:28
unsigned int getRow(unsigned int channelID) const
Definition PadMapper.cxx:29
static constexpr std::size_t NCOLUMN
Definition PadMapper.h:26
unsigned int getChannelID(unsigned int col, unsigned int row) const
Definition PadMapper.cxx:38
unsigned int getColumn(unsigned int channelID) const
Definition PadMapper.cxx:33
std::tuple< unsigned int, unsigned int > getRowColFromChannelID(unsigned int channelID) const
Definition PadMapper.cxx:22
static constexpr std::size_t NROW
Definition PadMapper.h:27
GLuint GLuint stream
Definition glcorearb.h:1806
std::ostream & operator<<(std::ostream &in, const IndexExceptionEvent &error)
std::vector< int > row