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

typedef MuonCoinDataCollection< RpcCoinDataMuon::RpcCoinDataCollection

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 8 of file RpcCoinDataCollection.cxx.

9{
10 using namespace Muon;
11 sl << "RpcCoinDataCollection: ";
12 sl << "identify()="<< coll.identify()
13 // << ", identifyHash()="<< coll.identifyHash()
14 << ", RpcCoinData=[";
17 for (;it!=itEnd;++it) sl<< (**it)<<", ";
18 sl <<" ]"<<std::endl;
19 return sl;
20}
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 22 of file RpcCoinDataCollection.cxx.

23{
24 using namespace Muon;
25 sl << "RpcCoinDataCollection: "
26 << "identify()="<< coll.identify()
27// << ", identifyHash()="<< coll.identifyHash()
28 << ", RpcCoinData=[";
31 for (;it!=itEnd;++it) sl<< (**it)<<", ";
32 sl <<" ]"<<std::endl;
33 return sl;
34}