ATLAS Offline Software
Loading...
Searching...
No Matches
PixelClusterCollection.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
8namespace InDet
9{
10
11 MsgStream& operator << ( MsgStream& sl, const PixelClusterCollection& coll)
12 {
13 sl << "PixelClusterCollection: "
14 << "identify()="<< coll.identify()
15 // << ", identifyHash()="<< coll.identifyHash()
16 << ", PRD=[";
17 PixelClusterCollection::const_iterator it = coll.begin();
18 PixelClusterCollection::const_iterator itEnd = coll.end();
19 for (;it!=itEnd;++it) sl<< (**it)<<", ";
20 sl <<" ]"<<std::endl;
21 return sl;
22 }
23
24 std::ostream& operator << ( std::ostream& sl, const PixelClusterCollection& coll)
25 {
26 sl << "PixelClusterCollection: "
27 << "identify()="<< coll.identify()
28 // << ", identifyHash()="<< coll.identifyHash()
29 << ", PRD=[";
30 PixelClusterCollection::const_iterator it = coll.begin();
31 PixelClusterCollection::const_iterator itEnd = coll.end();
32 for (;it!=itEnd;++it) sl<< (**it)<<", ";
33 sl <<" ]"<<std::endl;
34 return sl;
35 }
36
37}//end of ns
const_iterator end() const noexcept
const_iterator begin() const noexcept
Trk::PrepRawDataCollection< PixelCluster > PixelClusterCollection
virtual Identifier identify() const override final
Primary Vertex Finder.
MsgStream & operator<<(MsgStream &, const GNNTrackFinderTritonTool &)