ATLAS Offline Software
L1CaloDerivedRunPars.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3 */
5 
6 #include <iomanip>
7 
8 L1CaloDerivedRunPars::L1CaloDerivedRunPars(unsigned int channelId, const std::string& timingRegime, const std::string& tierZeroTag)
9  : m_channelId(channelId)
10  , m_timingRegime(timingRegime)
11  , m_tierZeroTag(tierZeroTag)
12 {
13 }
14 
15 std::ostream& operator<<(std::ostream& output, const L1CaloDerivedRunPars& r) {
16  output << "channelID: " << std::hex << r.channelId() << std::dec
17  << ", timingRegime: " << r.timingRegime()
18  << ", tierZeroTag: " << r.tierZeroTag();
19 
20  return output;
21 }
beamspotman.r
def r
Definition: beamspotman.py:676
operator<<
std::ostream & operator<<(std::ostream &output, const L1CaloDerivedRunPars &r)
Definition: L1CaloDerivedRunPars.cxx:15
L1CaloDerivedRunPars
Folder <-> Object mapping for /TRIGGER/L1Calo/V1/Conditions/DerivedRunPars .
Definition: L1CaloDerivedRunPars.h:17
L1CaloDerivedRunPars.h
CaloCondBlobAlgs_fillNoiseFromASCII.channelId
channelId
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:122
merge.output
output
Definition: merge.py:17
L1CaloDerivedRunPars::L1CaloDerivedRunPars
L1CaloDerivedRunPars()
Definition: L1CaloDerivedRunPars.h:20