CMS 3D CMS Logo

Functions

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/SimG4CMS/Calo/src/CaloHitID.cc File Reference

#include "SimG4CMS/Calo/interface/CaloHitID.h"
#include <iomanip>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const CaloHitID &id)

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const CaloHitID id 
)

Definition at line 92 of file CaloHitID.cc.

                                                            {
  os << "UnitID 0x" << std::hex << id.unitID() << std::dec << " Depth "
     << std::setw(6) << id.depth() << " Time " << std::setw(6) 
     << id.timeSlice() << " TrackID " << std::setw(8) << id.trackID();
  return os;
}