CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
CaloHitID.h File Reference
#include <cstdint>
#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 89 of file CaloHitID.cc.

References TauDecayModes::dec.

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