CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
HcalElectronicsId.cc File Reference
#include "DataFormats/HcalDetId/interface/HcalElectronicsId.h"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const HcalElectronicsId &id)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const HcalElectronicsId id 
)

Definition at line 51 of file HcalElectronicsId.cc.

51  {
52  if (id.isTriggerChainId()) {
53  return os << id.dccid() << ',' << id.spigot() << ",SLB" << id.slbSiteNumber() << ',' << id.slbChannelIndex() << " (HTR "
54  << id.readoutVMECrateId() << ":" << id.htrSlot() << ((id.htrTopBottom()==1)?('t'):('b')) << ')';
55 
56  } else {
57  return os << id.dccid() << ',' << id.spigot() << ',' << id.fiberIndex() << ',' << id.fiberChanId() << " (HTR "
58  << id.readoutVMECrateId() << ":" << id.htrSlot() << ((id.htrTopBottom()==1)?('t'):('b')) << ')';
59  }
60 }