CMS 3D CMS Logo

Classes | Functions
HcalDetId.h File Reference
#include <iosfwd>
#include "DataFormats/DetId/interface/DetId.h"
#include "DataFormats/HcalDetId/interface/HcalSubdetector.h"
#include "FWCore/Utilities/interface/Exception.h"

Go to the source code of this file.

Classes

class  HcalDetId
 

Functions

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

Function Documentation

◆ operator<<()

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

Definition at line 7 of file HcalDetId.cc.

References TauDecayModes::dec, HcalBarrel, HcalEndcap, HcalForward, HcalOuter, HcalTriggerTower, and alignCSCRings::s.

7  {
8  switch (id.subdet()) {
9  case (HcalBarrel):
10  return s << "(HB " << id.ieta() << ',' << id.iphi() << ',' << id.depth() << ')';
11  case (HcalEndcap):
12  return s << "(HE " << id.ieta() << ',' << id.iphi() << ',' << id.depth() << ')';
13  case (HcalForward):
14  return s << "(HF " << id.ieta() << ',' << id.iphi() << ',' << id.depth() << ')';
15  case (HcalOuter):
16  return s << "(HO " << id.ieta() << ',' << id.iphi() << ')';
17  case (HcalTriggerTower):
18  return s << "(HT " << id.ieta() << ',' << id.iphi() << ')';
19  default:
20  return s << std::hex << id.rawId() << std::dec;
21  }
22 }