ATLAS Offline Software
Classes | Functions
MdtDigitContainer.h File Reference
#include <vector>
#include <string>
#include "MuonDigitContainer/MdtDigitCollection.h"
#include "AthenaKernel/CLASS_DEF.h"
#include "EventContainers/IdentifiableContainer.h"
Include dependency graph for MdtDigitContainer.h:

Go to the source code of this file.

Classes

class  MdtDigitContainer
 Use IdentifiableContainer with MdtDigitCollection. More...
 

Functions

std::ostream & operator<< (std::ostream &lhs, const MdtDigitContainer &rhs)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  lhs,
const MdtDigitContainer rhs 
)

Definition at line 71 of file MdtDigitContainer.cxx.

71  {
72  lhs << "MdtDigitContainer has " << rhs.digit_size() << " digits:" << endl;
73  typedef SelectAllObject<MdtDigitContainer> SELECTOR;
74  SELECTOR sel(&rhs);
75  SELECTOR::const_iterator it = sel.begin();
76  SELECTOR::const_iterator it_end = sel.end();
77 
78  bool first = true;
79  for ( ; it!=it_end;++it)
80  {
81  if ( first ) {
82  first = false;
83  } else {
84  lhs << endl;
85  }
86  lhs << " " << *it;
87  }
88  return lhs;
89 }
skel.it
it
Definition: skel.GENtoEVGEN.py:423
SelectAllObjectMT
Definition: SelectAllObjectMT.h:11
MdtDigitContainer::digit_size
size_type digit_size() const
Definition: MdtDigitContainer.cxx:53
sel
sel
Definition: SUSYToolsTester.cxx:92
DeMoScan.first
bool first
Definition: DeMoScan.py:534