ATLAS Offline Software
Loading...
Searching...
No Matches
RpcCoinDataCollection.h File Reference
Include dependency graph for RpcCoinDataCollection.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  Muon
 NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.

Typedefs

using Muon::RpcCoinDataCollection = MuonCoinDataCollection< RpcCoinData >

Functions

MsgStream & operator<< (MsgStream &sl, const Muon::RpcCoinDataCollection &coll)
 Overload of << operator for MsgStream for debug output.
std::ostream & operator<< (std::ostream &sl, const Muon::RpcCoinDataCollection &coll)
 Overload of << operator for std::ostream for debug output.

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & sl,
const Muon::RpcCoinDataCollection & coll )

Overload of << operator for MsgStream for debug output.

Definition at line 9 of file RpcCoinDataCollection.cxx.

9 {
10 using namespace Muon;
11 sl << "RpcCoinDataCollection: ";
12 sl << "identify()="
13 << coll.identify()
14 // << ", identifyHash()="<< coll.identifyHash()
15 << ", RpcCoinData=[";
18 for (; it != itEnd; ++it) {
19 sl << (**it) << ", ";
20 }
21 sl << " ]" << std::endl;
22 return sl;
23}
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
const_iterator end() const noexcept
const_iterator begin() const noexcept
NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & sl,
const Muon::RpcCoinDataCollection & coll )

Overload of << operator for std::ostream for debug output.

Definition at line 25 of file RpcCoinDataCollection.cxx.

26 {
27 using namespace Muon;
28 sl << "RpcCoinDataCollection: "
29 << "identify()="
30 << coll.identify()
31 // << ", identifyHash()="<< coll.identifyHash()
32 << ", RpcCoinData=[";
35 for (; it != itEnd; ++it) {
36 sl << (**it) << ", ";
37 }
38 sl << " ]" << std::endl;
39 return sl;
40}