ATLAS Offline Software
Loading...
Searching...
No Matches
TgcCoinDataCollection.cxx File Reference
#include "MuonTrigCoinData/TgcCoinDataCollection.h"
#include "GaudiKernel/MsgStream.h"
Include dependency graph for TgcCoinDataCollection.cxx:

Go to the source code of this file.

Functions

MsgStream & operator<< (MsgStream &sl, const TgcCoinDataCollection &coll)
std::ostream & operator<< (std::ostream &sl, const TgcCoinDataCollection &coll)

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & sl,
const TgcCoinDataCollection & coll )

Definition at line 11 of file TgcCoinDataCollection.cxx.

11 {
12 sl << "TgcTrigCoinDataCollection: "
13 << "identify()=" << coll.identify()
14 << ", identifyHash()=" << coll.identifyHash() << ", TgcCoinData=[";
17 for (; it != itEnd; ++it) {
18 sl << (**it) << ", ";
19 }
20 sl << " ]" << std::endl;
21 return sl;
22}
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
const_iterator end() const noexcept
const_iterator begin() const noexcept
IdentifierHash identifyHash() const

◆ operator<<() [2/2]

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

Definition at line 24 of file TgcCoinDataCollection.cxx.

24 {
25 sl << "TgcCoinDataCollection: "
26 << "identify()=" << coll.identify()
27 << ", identifyHash()=" << (unsigned int)(coll.identifyHash())
28 << ", TgcCoinData=[";
31 for (; it != itEnd; ++it) {
32 sl << (**it) << ", ";
33 }
34 sl << " ]" << std::endl;
35 return sl;
36}