ATLAS Offline Software
Loading...
Searching...
No Matches
MuonCalibRawRpcTriggerHit.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7#include <iostream>
8
9namespace MuonCalib {
10
11 int MuonCalibRawRpcTriggerHit::sector() const { return m_pars.sector; }
12 int MuonCalibRawRpcTriggerHit::padId() const { return m_pars.padId; }
13 int MuonCalibRawRpcTriggerHit::status() const { return m_pars.status; }
14 int MuonCalibRawRpcTriggerHit::errorCode() const { return m_pars.errorCode; }
15 int MuonCalibRawRpcTriggerHit::cmaId() const { return m_pars.cmaId; }
16 int MuonCalibRawRpcTriggerHit::fel1Id() const { return m_pars.fel1Id; }
17 int MuonCalibRawRpcTriggerHit::febcId() const { return m_pars.febcId; }
18 int MuonCalibRawRpcTriggerHit::crc() const { return m_pars.crc; }
19 int MuonCalibRawRpcTriggerHit::bcId() const { return m_pars.bcId; }
20 int MuonCalibRawRpcTriggerHit::time() const { return m_pars.time; }
21 int MuonCalibRawRpcTriggerHit::ijk() const { return m_pars.ijk; }
22 int MuonCalibRawRpcTriggerHit::channel() const { return m_pars.channel; }
23 int MuonCalibRawRpcTriggerHit::overlap() const { return m_pars.overlap; }
24 int MuonCalibRawRpcTriggerHit::threshold() const { return m_pars.threshold; }
25
27
28 std::ostream& MuonCalibRawRpcTriggerHit::dump(std::ostream& stream) const {
29 stream << "MuonCalibRawRpcTriggerHit with" << std::endl;
30 stream << " sector " << sector() << std::endl;
31 stream << " padId " << padId() << std::endl;
32 stream << " status " << status() << std::endl;
33 stream << " errorCode " << errorCode() << std::endl;
34 stream << " cmaId " << cmaId() << std::endl;
35 stream << " fel1Id " << fel1Id() << std::endl;
36 stream << " febcId " << febcId() << std::endl;
37 stream << " crc " << crc() << std::endl;
38 stream << " bcId " << bcId() << std::endl;
39 stream << " time " << time() << std::endl;
40 stream << " ijk " << ijk() << std::endl;
41 stream << " channel " << channel() << std::endl;
42 stream << " overlap " << overlap() << std::endl;
43 stream << " threshold " << threshold() << std::endl;
44
45 return stream;
46 }
47
48} // namespace MuonCalib
49
50std::ostream& operator<<(std::ostream& stream, const MuonCalib::MuonCalibRawRpcTriggerHit& hit) { return hit.dump(stream); }
std::ostream & operator<<(std::ostream &stream, const MuonCalib::MuonCalibRawRpcTriggerHit &hit)
Calib-EDM version of RpcRawData class.
std::ostream & dump(std::ostream &stream) const
dump to be used for operator<<() to dump the MuonCalibRawRpcTriggerHit
MuonCalibRawRpcTriggerHit()=default
default constructor
CscCalcPed - algorithm that finds the Cathode Strip Chamber pedestals from an RDO.