Project
Loading...
Searching...
No Matches
Digit.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
13#include <iostream>
14#include <algorithm>
15
16namespace o2::trd
17{
18
19using namespace constants;
20
21Digit::Digit(int det, int row, int pad, ArrayADC adc, int pretrigphase)
22{
23 setDetector(det);
24 setROB(row, pad);
25 setMCM(row, pad);
26 setADC(adc);
27 setChannel(NADCMCM - 2 - (pad % NCOLMCM));
28 setPreTrigPhase(pretrigphase);
29}
30
31Digit::Digit(int det, int row, int pad) // add adc data in a seperate step
32{
33 setDetector(det);
34 setROB(row, pad);
35 setMCM(row, pad);
36 setChannel(NADCMCM - 2 - (pad % NCOLMCM));
37}
38
39Digit::Digit(int det, int rob, int mcm, int channel, ArrayADC adc, int pretrigphase)
40{
41 setDetector(det);
42 setROB(rob);
43 setMCM(mcm);
44 setChannel(channel);
45 setADC(adc);
46 setPreTrigPhase(pretrigphase);
47}
48
49Digit::Digit(int det, int rob, int mcm, int channel) // add adc data in a seperate step
50{
51 setDetector(det);
52 setROB(rob);
53 setMCM(mcm);
54 setChannel(channel);
55}
56
58{
59 if (mChannel == 0 || mChannel == 1 || mChannel == NADCMCM - 1) {
60 return 1;
61 } else {
62 return 0;
63 }
64}
65
66bool Digit::isNeighbour(const Digit& other) const
67{
68 return (getDetector() == other.getDetector() && getROB() == other.getROB() && getMCM() == other.getMCM() && std::abs(getChannel() - other.getChannel()) == 1);
69}
70
71ADC_t Digit::getADCmax(int& idx) const
72{
73 auto itMax = std::max_element(mADC.begin(), mADC.end());
74 idx = std::distance(mADC.begin(), itMax);
75 return *itMax;
76}
77
78std::ostream& operator<<(std::ostream& stream, const Digit& d)
79{
80 stream << "Digit Det: " << HelperMethods::getSector(d.getDetector()) << "_" << HelperMethods::getStack(d.getDetector()) << "_" << HelperMethods::getLayer(d.getDetector()) << " pad row: " << d.getPadRow() << " pad column: " << d.getPadCol() << " Channel: " << d.getChannel() << " ADCs:";
81 for (int i = 0; i < constants::TIMEBINS; i++) {
82 stream << "[" << d.getADC()[i] << "]";
83 }
84 return stream;
85}
86
87} // namespace o2::trd
uint16_t mcm
uint16_t rob
int32_t i
void setMCM(int mcm)
Definition Digit.h:70
ADC_t getADCmax(int &idx) const
Definition Digit.cxx:71
int getDetector() const
Definition Digit.h:79
int getPadRow() const
Definition Digit.h:81
bool isNeighbour(const Digit &other) const
Definition Digit.cxx:66
bool isSharedDigit() const
Definition Digit.cxx:57
void setADC(ArrayADC const &adc)
Definition Digit.h:75
void setPreTrigPhase(int phase)
Definition Digit.h:77
int getChannel() const
Definition Digit.h:86
int getMCM() const
Definition Digit.h:84
ArrayADC const & getADC() const
Definition Digit.h:91
void setROB(int rob)
Definition Digit.h:69
int getROB() const
Definition Digit.h:83
int getPadCol() const
Definition Digit.h:82
Digit()=default
void setDetector(int det)
Definition Digit.h:74
void setChannel(int channel)
Definition Digit.h:73
GLuint GLuint stream
Definition glcorearb.h:1806
constexpr int TIMEBINS
the number of time bins
Definition Constants.h:74
constexpr int NADCMCM
the number of ADC channels per MCM
Definition Constants.h:52
constexpr int NCOLMCM
the number of pads per MCM
Definition Constants.h:53
std::uint16_t ADC_t
Definition Digit.h:31
std::array< ADC_t, constants::TIMEBINS > ArrayADC
Definition Digit.h:32
std::ostream & operator<<(std::ostream &stream, const Digit &d)
Definition Digit.cxx:78
static int getStack(int det)
static int getLayer(int det)
static int getSector(int det)
VectorOfTObjectPtrs other
std::vector< int > row
ArrayADC adc