CMS 3D CMS Logo

Functions
HcalDetId.cc File Reference
#include "DataFormats/HcalDetId/interface/HcalDetId.h"
#include "FWCore/Utilities/interface/Exception.h"
#include <ostream>
#include <iostream>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &s, const HcalDetId &id)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  s,
const HcalDetId id 
)

Definition at line 232 of file HcalDetId.cc.

References HcalBarrel, HcalEndcap, HcalForward, HcalOuter, HcalTriggerTower, and HcalDetId::subdet().

232  {
233  switch (id.subdet()) {
234  case(HcalBarrel) : return s << "(HB " << id.ieta() << ',' << id.iphi() << ',' << id.depth() << ')';
235  case(HcalEndcap) : return s << "(HE " << id.ieta() << ',' << id.iphi() << ',' << id.depth() << ')';
236  case(HcalForward) : return s << "(HF " << id.ieta() << ',' << id.iphi() << ',' << id.depth() << ')';
237  case(HcalOuter) : return s << "(HO " << id.ieta() << ',' << id.iphi() << ')';
238  case(HcalTriggerTower) : return s << "(HT " << id.ieta() << ',' << id.iphi() << ')';
239  default : return s << id.rawId();
240  }
241 }