Project
Loading...
Searching...
No Matches
Digits.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
14
16#include <iostream>
17
18using namespace o2::ctp;
19
20std::ostream& o2::ctp::operator<<(std::ostream& os, const o2::ctp::CTPDigit& d)
21{
22 os << "CTP Digit: " << d.intRecord << " Input Mask: " << d.CTPInputMask << " Class Mask: " << d.CTPClassMask;
23 return os;
24}
25
26void CTPDigit::printStream(std::ostream& stream) const
27{
28 stream << *this << std::endl;
29}
30
32{
33 for (uint32_t i = 0; i < CTP_NINPUTS; i++) {
34 CTPInputMask[i] = mask[i];
35 }
36}
38{
39 for (uint32_t i = 0; i < CTP_NCLASSES; i++) {
40 CTPClassMask[i] = mask[i];
41 }
42}
definition of CTPDigit, CTPInputDigit
int32_t i
GLuint GLuint stream
Definition glcorearb.h:1806
GLint GLuint mask
Definition glcorearb.h:291
std::bitset< NGBT > gbtword80_t
Definition Digits.h:36
std::ostream & operator<<(std::ostream &in, const CTPConfiguration &conf)
std::bitset< CTP_NCLASSES > CTPClassMask
Definition Digits.h:53
o2::InteractionRecord intRecord
Definition Digits.h:51
void setInputMask(gbtword80_t mask)
Definition Digits.cxx:31
std::bitset< CTP_NINPUTS > CTPInputMask
Definition Digits.h:52
void printStream(std::ostream &stream) const
Definition Digits.cxx:26
void setClassMask(gbtword80_t mask)
Definition Digits.cxx:37