Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
SiClusterCollection.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 InDet
9 {
10 
11  MsgStream& operator << ( MsgStream& sl, const SiClusterCollection& coll)
12  {
13  sl << "SiClusterCollection: "
14  << "identify()="<< coll.identify()
15  // << ", identifyHash()="<< coll.identifyHash()
16  << ", PRD=[";
17  SiClusterCollection::const_iterator it = coll.begin();
18  SiClusterCollection::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 SiClusterCollection& coll)
25  {
26  sl << "SiClusterCollection: "
27  << "identify()="<< coll.identify()
28  // << ", identifyHash()="<< coll.identifyHash()
29  << ", PRD=[";
30  SiClusterCollection::const_iterator it = coll.begin();
31  SiClusterCollection::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
InDet::operator<<
MsgStream & operator<<(MsgStream &, const GNNTrackReaderTool &)
InDet
Primary Vertex Finder.
Definition: VP1ErrorUtils.h:36
skel.it
it
Definition: skel.GENtoEVGEN.py:407
InDet::SiClusterCollection
Trk::PrepRawDataCollection< InDet::SiCluster > SiClusterCollection
Definition: SiClusterCollection.h:26
SiClusterCollection.h