ATLAS Offline Software
MdtPrepDataCollection.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 
7 #include "GaudiKernel/MsgStream.h"
8 
9 namespace Muon
10 {
11 
12 MsgStream& operator << ( MsgStream& sl, const MdtPrepDataCollection& coll)
13 {
14  sl << "MdtPrepRawDataCollection: "
15  << "identify()="<< coll.identify()
16  // << ", identifyHash()="<< coll.identifyHash()
17  << ", MdtPrepData=[";
20  for (;it!=itEnd;++it) sl<< (**it)<<", ";
21  sl <<" ]"<<std::endl;
22  return sl;
23 }
24 
25 std::ostream& operator << ( std::ostream& sl, const MdtPrepDataCollection& coll)
26 {
27  sl << "MdtPrepRawDataCollection: "
28  << "identify()="<< coll.identify()
29 // << ", identifyHash()="<< coll.identifyHash()
30  << ", MdtPrepData=[";
33  for (;it!=itEnd;++it) sl<< (**it)<<", ";
34  sl <<" ]"<<std::endl;
35  return sl;
36 }
37 
38 }//end of ns
DataModel_detail::const_iterator
Const iterator class for DataVector/DataList.
Definition: DVLIterator.h:82
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
This class provides conversion from CSC RDO data to CSC Digits.
Definition: TrackSystemController.h:49
MdtPrepDataCollection.h
Muon::MuonPrepDataCollection::identify
virtual Identifier identify() const override final
Muon::MuonPrepDataCollection
Template to hold collections of MuonPrepRawData objects.
Definition: MuonPrepDataCollection.h:46
DataVector::end
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
DataVector::begin
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.