CMS 3D CMS Logo

Classes | Functions

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/Validation/EventGenerator/interface/CaloCellId.h File Reference

#include <iostream>

Go to the source code of this file.

Classes

class  CaloCellId

Functions

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

Function Documentation

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

Definition at line 57 of file CaloCellId.cc.

                                                             {
  os << "Eta range = [" 
     << std::fixed << std::setw(7) << std::setfill(' ') << std::setprecision(4) << id.getEtaMin() << "," 
     << std::fixed << std::setw(7) << std::setfill(' ') << std::setprecision(4) << id.getEtaMax() << "], Phi range = [" 
     << std::fixed << std::setw(7) << std::setfill(' ') << std::setprecision(4) << id.getPhiMin() << "," 
     << std::fixed << std::setw(7) << std::setfill(' ') << std::setprecision(4) << id.getPhiMax() << "], subsystem = " << id.getSubSys();
  return os;
}