ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_RDO_Collection.h File Reference
Include dependency graph for SCT_RDO_Collection.h:

Go to the source code of this file.

Typedefs

typedef InDetRawDataCollection< SCT_RDORawDataSCT_RDO_Collection
typedef InDetRawDataCollection< SCT_TB03_RawDataSCT_RDO_TB03_Collection
typedef InDetRawDataCollection< SCT_TB04_RawDataSCT_RDO_TB04_Collection
typedef InDetRawDataCollection< SCT3_RawDataSCT3_RDO_Collection

Functions

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

Typedef Documentation

◆ SCT3_RDO_Collection

◆ SCT_RDO_Collection

◆ SCT_RDO_TB03_Collection

◆ SCT_RDO_TB04_Collection

Function Documentation

◆ operator<<() [1/2]

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

Overload of << operator for MsgStream for debug output.

Definition at line 8 of file SCT_RDO_Collection.cxx.

9{
10 sl << "SCT_RDO_Collection: "
11 << "identify()="<< coll.identify()
12 // << ", identifyHash()="<< coll.identifyHash()
13 << ", RDO=[";
16 for (;it!=itEnd;++it) sl<< (**it)<<", ";
17 sl <<" ]"<<std::endl;
18 return sl;
19}
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
const_iterator end() const noexcept
const_iterator begin() const noexcept
virtual Identifier identify() const override final

◆ operator<<() [2/2]

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

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

Definition at line 21 of file SCT_RDO_Collection.cxx.

22{
23 sl << "SCT_RDO_Collection: "
24 << "identify()="<< coll.identify()
25 // << ", identifyHash()="<< coll.identifyHash()
26 << ", RDO=[";
29 for (;it!=itEnd;++it) sl<< (**it)<<", ";
30 sl <<" ]"<<std::endl;
31 return sl;
32}