CMS 3D CMS Logo

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 25 of file HcalElectronicsId.cc.

References HcalElectronicsId::isTriggerChainId(), and HcalElectronicsId::isUTCAid().

25  {
26  if (id.isUTCAid()) {
27  if (id.isTriggerChainId()) os << "UTCA(trigger): ";
28  else os << "UTCA: ";
29  return os << id.crateId() << ',' << id.slot() << ',' << id.fiberIndex() << ',' << id.fiberChanId();
30  } else {
31  if (id.isTriggerChainId()) {
32  return os << id.dccid() << ',' << id.spigot() << ",SLB" << id.slbSiteNumber() << ',' << id.slbChannelIndex() << " (HTR "
33  << id.readoutVMECrateId() << ":" << id.htrSlot() << ((id.htrTopBottom()==1)?('t'):('b')) << ')';
34 
35  } else {
36  return os << id.dccid() << ',' << id.spigot() << ',' << id.fiberIndex() << ',' << id.fiberChanId() << " (HTR "
37  << id.readoutVMECrateId() << ":" << id.htrSlot() << ((id.htrTopBottom()==1)?('t'):('b')) << ')';
38  }
39  }
40 }