CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
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.

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