OverSim
I3IdentifierStack.cc File Reference

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const I3IdentifierStack &s)

Detailed Description

Author
Antonio Zea

Definition in file I3IdentifierStack.cc.

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const I3IdentifierStack s 
)

Definition at line 130 of file I3IdentifierStack.cc.

{
list<I3SubIdentifier>::const_iterator it;
for (it = s.stack.begin(); it != s.stack.end(); it++) {
os << *it << ", ";
}
return os;
}