CMS 3D CMS Logo

Functions
HGCTriggerDetId.cc File Reference
#include "DataFormats/ForwardDetId/interface/HGCTriggerDetId.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 HGCTriggerDetId &id)
 

Function Documentation

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

Definition at line 57 of file HGCTriggerDetId.cc.

References HGCTrigger, and HGCTriggerDetId::subdet().

57  {
58  switch (id.subdet()) {
59  case(HGCTrigger) : return s << "isEE=" << id.isEE()
60  << " zpos=" << id.zside()
61  << " layer=" << id.layer()
62  << " module=" << id.module()
63  << " sector=" << id.sector()
64  << " cell=" << id.cell();
65  default : return s << id.rawId();
66  }
67 }