ATLAS Offline Software
TgcCoinDataCollection.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 #include "GaudiKernel/MsgStream.h"
7 
8 namespace Muon
9 {
10 
11 MsgStream& operator << ( MsgStream& sl, const TgcCoinDataCollection& coll)
12 {
13  sl << "TgcTrigCoinDataCollection: "
14  << "identify()="<< coll.identify()
15  << ", identifyHash()="<< coll.identifyHash()
16  << ", TgcCoinData=[";
19  for (;it!=itEnd;++it) sl<< (**it)<<", ";
20  sl <<" ]"<<std::endl;
21  return sl;
22 }
23 
24 std::ostream& operator << ( std::ostream& sl, const TgcCoinDataCollection& coll)
25 {
26  sl << "TgcCoinDataCollection: "
27  << "identify()="<< coll.identify()
28  << ", identifyHash()="<< (unsigned int)(coll.identifyHash())
29  << ", TgcCoinData=[";
32  for (;it!=itEnd;++it) sl<< (**it)<<", ";
33  sl <<" ]"<<std::endl;
34  return sl;
35  }
36 }//end of ns
DataModel_detail::const_iterator
Const iterator class for DataVector/DataList.
Definition: DVLIterator.h:82
CaloCellPos2Ntuple.int
int
Definition: CaloCellPos2Ntuple.py:24
skel.it
it
Definition: skel.GENtoEVGEN.py:423
Muon::operator<<
std::ostream & operator<<(std::ostream &stream, const NSW_PadTriggerData &rhs)
Definition: NSW_PadTriggerData.cxx:125
Muon::MuonCoinDataCollection
Definition: MuonCoinDataCollection.h:25
Muon::MuonCoinDataCollection::identify
Identifier identify() const
Muon
This class provides conversion from CSC RDO data to CSC Digits.
Definition: TrackSystemController.h:49
Muon::MuonCoinDataCollection::identifyHash
IdentifierHash identifyHash() const
DataVector::end
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
TgcCoinDataCollection.h
DataVector::begin
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.