ATLAS Offline Software
Trigger
TrigT1
TrigT1Interfaces
src
MbtsCTP.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3
*/
4
#include "
TrigT1Interfaces/MbtsCTP.h
"
5
6
// STL includes(s):
7
#include <sstream>
8
#include <iomanip>
9
10
// local includes
11
#include "
TrigT1Interfaces/BitOp.h
"
12
13
namespace
LVL1
{
14
15
MbtsCTP::MbtsCTP
(
unsigned
int
word0 )
16
: m_cableWord0(word0)
17
{
18
}
19
20
const
std::string
MbtsCTP::dump
()
const
21
{
22
std::ostringstream
s
;
23
24
s
<<
" 0x"
<< std::hex << std::setw(8) << std::setfill(
'0'
) <<
m_cableWord0
25
<< std::dec << std::setfill(
' '
) << std::endl;
26
27
return
s
.str();
28
}
29
30
const
std::string
MbtsCTP::print
()
const
31
{
32
std::ostringstream
s
;
33
34
s
<< std::setfill(
'0'
)
35
<<
" bits:"
<< std::setw(6) <<
BitOp::printBits
(
m_cableWord0
, 0, 20)
36
<< std::setfill(
' '
) << std::endl;
37
38
return
s
.str();
39
}
40
41
}
42
python.SystemOfUnits.s
int s
Definition:
SystemOfUnits.py:131
LVL1
eFexTowerBuilder creates xAOD::eFexTowerContainer from supercells (LATOME) and triggerTowers (TREX) i...
Definition:
ICMMCPHitsCnvTool.h:18
LVL1::MbtsCTP::MbtsCTP
MbtsCTP(uint32_t word0=0)
Definition:
MbtsCTP.cxx:15
LVL1::MbtsCTP::dump
const std::string dump() const
dump raw object content to string
Definition:
MbtsCTP.cxx:20
BitOp.h
BitOp::printBits
static const std::string printBits(const int value, const int startbit, const int endbit)
print selected bit range into string
Definition:
BitOp.cxx:100
MbtsCTP.h
LVL1::MbtsCTP::print
const std::string print() const
print object content in a human readable form to string
Definition:
MbtsCTP.cxx:30
LVL1::MbtsCTP::m_cableWord0
const uint32_t m_cableWord0
A data member to contain two 3bit trigger multiplicities.
Definition:
MbtsCTP.h:48
Generated on Thu Nov 7 2024 21:20:29 for ATLAS Offline Software by
1.8.18