CMS 3D CMS Logo

Classes | Functions

/data/refman/pasoursint/CMSSW_5_3_0/src/SimG4CMS/Calo/interface/CaloHitID.h File Reference

#include <boost/cstdint.hpp>
#include <iostream>

Go to the source code of this file.

Classes

class  CaloHitID

Functions

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

Function Documentation

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

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;
}