ATLAS Offline Software
Loading...
Searching...
No Matches
InDetRawData.h File Reference
#include "Identifier/Identifiable.h"
#include "Identifier/Identifier.h"
Include dependency graph for InDetRawData.h:

Go to the source code of this file.

Classes

class  InDetRawData

Functions

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

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & sl,
const InDetRawData & rdo )

Overload of << operator for MsgStream for debug output.

Definition at line 26 of file InDetRawData.cxx.

26 {
27 sl << " Identifier " << rdo.identify() << " word " << rdo.getWord();
28 return sl;
29}
virtual Identifier identify() const override final
unsigned int getWord() const

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & sl,
const InDetRawData & rdo )

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

Definition at line 31 of file InDetRawData.cxx.

31 {
32 sl << " Identifier " << rdo.identify() << " word " << rdo.getWord();
33 return sl;
34}