CMS 3D CMS Logo

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

Function Documentation

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

Definition at line 45 of file HGCEEDetId.cc.

References HGCEE, and HGCEEDetId::subdet().

45  {
46  switch (id.subdet()) {
47  case(HGCEE) : return s << "isEE=" << id.isEE()
48  << " zpos=" << id.zside()
49  << " layer=" << id.layer()
50  << " phi subSector=" << id.subsector()
51  << " sector=" << id.sector()
52  << " cell=" << id.cell();
53  default : return s << id.rawId();
54  }
55 }