ATLAS Offline Software
Loading...
Searching...
No Matches
SpacePointCollection.h File Reference
#include "Identifier/Identifier.h"
#include "Identifier/Identifiable.h"
#include "Identifier/IdentifierHash.h"
#include "AthContainers/DataVector.h"
#include "GaudiKernel/DataObject.h"
#include "TrkSpacePoint/SpacePoint.h"
#include "AthenaKernel/CLASS_DEF.h"
Include dependency graph for SpacePointCollection.h:

Go to the source code of this file.

Classes

class  SpacePointCollectionCopyConstructorCalled
class  SpacePointCollection

Functions

MsgStream & operator<< (MsgStream &sl, const SpacePointCollection &coll)
 Overload of << operator for MsgStream for debug output.
std::ostream & operator<< (std::ostream &sl, const SpacePointCollection &coll)
 Overload of << operator for std::ostream for debug output.

Function Documentation

◆ operator<<() [1/2]

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

Overload of << operator for MsgStream for debug output.

Definition at line 56 of file SpacePointCollection.cxx.

56 {
57 sl << "SpacePointCollection: "
58 << "identify()="<< coll.identify()
59 << ", SP=[";
62 for (;it!=itEnd;++it) { sl<< (**it)<<", ";}
63 sl <<" ]"<<std::endl;
64 return sl;
65}
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
virtual Identifier identify() const override final

◆ operator<<() [2/2]

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

Overload of << operator for std::ostream for debug output.

Definition at line 68 of file SpacePointCollection.cxx.

68 {
69 sl << "SpacePointCollection: "
70 << "identify()="<< coll.identify()
71 << ", SP=[";
74 for (;it!=itEnd;++it) { sl<< (**it)<<", ";}
75 sl <<" ]"<<std::endl;
76 return sl;
77}