ATLAS Offline Software
ZdcCTP.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3 */
5 // ZdcCTP.cxx
6 // Implementation file for class ZdcCTP
7 // Author: Matthew Hoppesch <mch6@illinois.edu>
9 
10 // TrigT1Interfaces includes
12 
13 
14 LVL1::ZdcCTP::ZdcCTP( unsigned int word0, unsigned int word1 ) :
15  m_cableWord0(word0), m_cableWord1(word1)
16 {}
17 
19 void
21  m_cableWord0 = data;
22 }
23 
26  m_cableWord1 = data;
27 }
28 
30 unsigned int
32  return m_cableWord0;
33 }
34 
35 unsigned int LVL1::ZdcCTP::cableWord1() const {
36  return m_cableWord1;
37 }
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
xAOD::word1
word1
Definition: eFexEMRoI_v1.cxx:82
LVL1::ZdcCTP::setCableWord1
void setCableWord1(unsigned int data)
set the data that is sent on cable 0
Definition: ZdcCTP.cxx:25
LVL1::ZdcCTP::setCableWord0
void setCableWord0(unsigned int data)
set the data that is sent on cable 0
Definition: ZdcCTP.cxx:20
xAOD::uint32_t
setEventNumber uint32_t
Definition: EventInfo_v1.cxx:127
LVL1::ZdcCTP::cableWord1
uint32_t cableWord1() const
Definition: ZdcCTP.cxx:35
ZdcCTP.h
LVL1::ZdcCTP::ZdcCTP
ZdcCTP()=delete
LVL1::ZdcCTP::cableWord0
uint32_t cableWord0() const
return the data that is sent on cable 0
Definition: ZdcCTP.cxx:31