CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
HcalText2DetIdConverter Class Reference

#include <HcalText2DetIdConverter.h>

Public Member Functions

int getField (int i) const
 
const std::string & getField1 () const
 
const std::string & getField2 () const
 
const std::string & getField3 () const
 
const std::string & getFlavor () const
 
DetId getId () const
 
 HcalText2DetIdConverter (const std::string &fFlavor="NA", const std::string &fField1="0", const std::string &fField2="0", const std::string &fField3="0")
 
 HcalText2DetIdConverter (DetId fId)
 
bool isHcalCalibDetId () const
 
bool isHcalDetId () const
 
bool isHcalTrigTowerDetId () const
 
bool isHcalZDCDetId () const
 
std::string toString () const
 

Private Member Functions

bool init (const std::string &fFlavor, const std::string &fField1, const std::string &fField2, const std::string &fField3)
 
bool init (DetId fId)
 
void setField (int i, int fValue)
 

Private Attributes

std::string field1
 
std::string field2
 
std::string field3
 
std::string flavorName
 
DetId mId
 

Detailed Description

Author
F.Ratnikov, UMd Converts any flavour of HcalDetId to/from ascii strings

For Calibration DetIds:

Flavor = "CALIB_[HB|HE|HO|HF]" or "HOX"

fField1 is ieta (-2:2 for CALIB) fField2 is iphi fField3 is ctype (CALIB only)

Author
F.Ratnikov, UMd

Definition at line 21 of file HcalText2DetIdConverter.h.

Constructor & Destructor Documentation

HcalText2DetIdConverter::HcalText2DetIdConverter ( const std::string &  fFlavor = "NA",
const std::string &  fField1 = "0",
const std::string &  fField2 = "0",
const std::string &  fField3 = "0" 
)

Definition at line 41 of file HcalText2DetIdConverter.cc.

References dtNoiseDBValidation_cfg::cerr, edm::hlt::Exception, and init().

42  {
43  if (!init (fFlavor, fField1, fField2, fField3)) {
44  std::cerr << "HcalText2DetIdConverter::HcalText2DetIdConverter-> Can not initiate detId from items: "
45  << fFlavor << '/' << fField1 << '/' << fField2 << '/' << fField3 << std::endl;
46  throw cms::Exception("HcalGenDetId initialization error")
47  << " Can not initiate detId from items: "
48  << fFlavor << '/' << fField1 << '/' << fField2 << '/' << fField3 << std::endl;
49  }
50 }
bool init(const std::string &fFlavor, const std::string &fField1, const std::string &fField2, const std::string &fField3)
HcalText2DetIdConverter::HcalText2DetIdConverter ( DetId  fId)

Definition at line 52 of file HcalText2DetIdConverter.cc.

References init().

52  {
53  init (fId);
54 }
bool init(const std::string &fFlavor, const std::string &fField1, const std::string &fField2, const std::string &fField3)

Member Function Documentation

int HcalText2DetIdConverter::getField ( int  i) const

Definition at line 222 of file HcalText2DetIdConverter.cc.

References dtNoiseDBValidation_cfg::cerr, field1, field2, field3, isHcalCalibDetId(), and query::result.

Referenced by init(), and XMLDocument::makeChId().

222  {
223  char* endptr;
224  const char* nptr = i == 1 ? field1.c_str() :
225  i == 2 ? field2.c_str() : field3.c_str();
226  long result = strtol (nptr, &endptr, 0);
227  if (*nptr != '\0' && *endptr == '\0') {
228  return result;
229  }
230  if (i == 2 && isHcalCalibDetId ()) {
231  int result = calibChannel (field2);
232  if (i) return result;
233  }
234  if (*nptr != '\0') {
235  std::cerr << "HcalText2DetIdConverter::getField-> Can not convert string "<< nptr << " to int. Bad symbol: " << *endptr << std::endl;
236  }
237  return 0;
238  }
int i
Definition: DBlmapReader.cc:9
tuple result
Definition: query.py:137
const std::string& HcalText2DetIdConverter::getField1 ( ) const
inline

Definition at line 35 of file HcalText2DetIdConverter.h.

References field1.

35 {return field1;}
const std::string& HcalText2DetIdConverter::getField2 ( ) const
inline

Definition at line 36 of file HcalText2DetIdConverter.h.

References field2.

Referenced by XMLDocument::makeChId().

36 {return field2;}
const std::string& HcalText2DetIdConverter::getField3 ( ) const
inline

Definition at line 37 of file HcalText2DetIdConverter.h.

References field3.

Referenced by XMLDocument::makeChId().

37 {return field3;}
const std::string& HcalText2DetIdConverter::getFlavor ( ) const
inline

Definition at line 34 of file HcalText2DetIdConverter.h.

References flavorName.

Referenced by HcalDQMDbInterface::createChannel(), and XMLDocument::makeChId().

34 {return flavorName;}
DetId HcalText2DetIdConverter::getId ( ) const
inline

Definition at line 38 of file HcalText2DetIdConverter.h.

References mId.

bool HcalText2DetIdConverter::init ( const std::string &  fFlavor,
const std::string &  fField1,
const std::string &  fField2,
const std::string &  fField3 
)
private

Definition at line 151 of file HcalText2DetIdConverter.cc.

References dtNoiseDBValidation_cfg::cerr, HLT_25ns14e33_v1_cff::depth, HcalZDCDetId::EM, field1, field2, field3, flavorName, getField(), HcalZDCDetId::HAD, HcalBarrel, HcalEndcap, HcalForward, HcalOther, HcalOuter, HcalZDCDetId::LUM, mId, query::result, sd, HcalDetId::Undefined, HcalZDCDetId::Unknown, and relval_steps::version.

Referenced by HcalText2DetIdConverter().

152  {
153  bool result = true;
154  flavorName = strip (fFlavor);
155  field1 = strip (fField1);
156  field2 = strip (fField2);
157  field3 = strip (fField3);
158  if (flavorName == "HB" ||
159  flavorName == "HE" ||
160  flavorName == "HF" ||
161  flavorName == "HO") {
162  HcalSubdetector sub = flavorName == "HB" ? HcalBarrel :
163  flavorName == "HE" ? HcalEndcap :
164  flavorName == "HO" ? HcalOuter :
165  HcalForward;
166  mId = HcalDetId (sub, getField (1), getField (2), getField (3));
167  }
168  else if (flavorName == "HT") {
169  // We use the depth to signal the "version" being used (RCT or 1x1 HF). RCT
170  // has a 0 in the 10s digit, whereas 1x1 has a 1. The ones digit is still
171  // used to indicate depth, although in the 1x1 case this must be 0, so we
172  // set it as such.
173  const int depth_field = getField(3);
174  const int ones = depth_field % 10;
175  const int tens = (depth_field - ones) / 10;
176  if (tens == 0) {
177  const int depth = ones;
178  const int version = 0;
179  mId = HcalTrigTowerDetId (getField (1), getField (2), depth, version);
180  } else if (tens == 1) {
181  const int depth = 0;
182  const int version = 1;
183  mId = HcalTrigTowerDetId(getField(1), getField(2), depth, version);
184  } else {
185  // Undefined version!
186  }
187  }
188  else if (flavorName.find ("ZDC_") == 0) {
189  HcalZDCDetId::Section section = flavorName == "ZDC_EM" ? HcalZDCDetId::EM :
190  flavorName == "ZDC_HAD" ? HcalZDCDetId::HAD :
192  mId = HcalZDCDetId (section, getField (1)>0, getField (2));
193  }
194  else if (flavorName.find ("CALIB_") == 0) {
196  if (flavorName.find("HB")!=std::string::npos) sd=HcalBarrel;
197  else if (flavorName.find("HE")!=std::string::npos) sd=HcalEndcap;
198  else if (flavorName.find("HO")!=std::string::npos) sd=HcalOuter;
199  else if (flavorName.find("HF")!=std::string::npos) sd=HcalForward;
200 
201  int ieta=getField(1);
202  int iphi=getField(2);
203  int channel = calibChannel (field3);
204  mId = HcalCalibDetId (sd, ieta,iphi,channel);
205  }
206  else if (flavorName=="HOX") {
207  int ieta=getField(1);
208  int iphi=getField(2);
209  mId = HcalCalibDetId (ieta,iphi);
210  }
211  else if (flavorName == "NA") {
213  }
214  else {
215  std::cerr << "HcalText2DetIdConverter::init-> Unknown HcalDetId flavor: " << flavorName << std::endl;
216  result = false;
217  }
218  return result;
219 }
static const HcalDetId Undefined
Definition: HcalDetId.h:50
tuple result
Definition: query.py:137
HcalSubdetector
Definition: HcalAssistant.h:31
double sd
bool HcalText2DetIdConverter::init ( DetId  fId)
private

Definition at line 72 of file HcalText2DetIdConverter.cc.

References HcalCalibDetId::calibFlavor(), HcalCalibDetId::CalibrationBox, HcalCalibDetId::cboxChannel(), dtNoiseDBValidation_cfg::cerr, HcalZDCDetId::channel(), HcalDetId::depth(), HcalZDCDetId::EM, flavorName, HcalGenericDetId::genericSubdet(), HcalZDCDetId::HAD, HcalBarrel, HcalEndcap, HcalForward, HcalGenericDetId::HcalGenBarrel, HcalGenericDetId::HcalGenEndcap, HcalGenericDetId::HcalGenForward, HcalGenericDetId::HcalGenOuter, HcalOuter, HcalCalibDetId::hcalSubdet(), HcalCalibDetId::HOCrosstalk, HcalDetId::ieta(), HcalTrigTowerDetId::ieta(), HcalCalibDetId::ieta(), HcalDetId::iphi(), HcalTrigTowerDetId::iphi(), HcalCalibDetId::iphi(), HcalGenericDetId::isHcalCalibDetId(), HcalGenericDetId::isHcalDetId(), HcalGenericDetId::isHcalTrigTowerDetId(), HcalGenericDetId::isHcalZDCDetId(), HcalZDCDetId::LUM, mId, DetId::rawId(), query::result, HcalZDCDetId::section(), setField(), HcalDetId::Undefined, HcalTrigTowerDetId::Undefined, HcalTrigTowerDetId::version(), and HcalZDCDetId::zside().

72  {
73  bool result = true;
74  flavorName = "UNKNOWN";
75  mId = fId;
76  HcalGenericDetId genId (mId);
77  if (fId == HcalDetId::Undefined) {
78  flavorName = "NA";
79  }
80  else if (genId.isHcalDetId ()) {
81  HcalDetId hcalId (mId);
82  flavorName = genId.genericSubdet () == HcalGenericDetId::HcalGenBarrel ? "HB" :
83  genId.genericSubdet () == HcalGenericDetId::HcalGenEndcap ? "HE" :
84  genId.genericSubdet () == HcalGenericDetId::HcalGenOuter ? "HO" :
85  genId.genericSubdet () == HcalGenericDetId::HcalGenForward ? "HF" : "H_UNKNOWN";
86  setField (1, hcalId.ieta());
87  setField (2, hcalId.iphi());
88  setField (3, hcalId.depth());
89  }
90  else if (genId.isHcalTrigTowerDetId ()) {
91  HcalTrigTowerDetId triggerId (mId);
92  if (triggerId == HcalTrigTowerDetId::Undefined) {
93  flavorName = "NT";
94  }
95  else {
96  flavorName = "HT";
97  if (triggerId.version() == 0) {
98  setField (1, triggerId.ieta());
99  setField (2, triggerId.iphi());
100  setField (3, 1);
101  } else if (triggerId.version() == 1) {
102  setField (1, triggerId.ieta());
103  setField (2, triggerId.iphi());
104  setField (3, 10); // We use the tens digit to indicate version
105  } else {
106  // Unknown version
107  }
108  }
109  }
110  else if (genId.isHcalZDCDetId ()) {
111  HcalZDCDetId zdcId (mId);
112  switch (zdcId.section()) {
113  case HcalZDCDetId::EM: flavorName = "ZDC_EM"; break;
114  case HcalZDCDetId::HAD: flavorName = "ZDC_HAD"; break;
115  case HcalZDCDetId::LUM: flavorName = "ZDC_LUM"; break;
116  default: result = false;
117  }
118  setField (1, zdcId.zside());
119  setField (2, zdcId.channel());
120  setField (3, -99);
121  }
122  else if (genId.isHcalCalibDetId ()) {
123  HcalCalibDetId calibId (mId);
124  if (calibId.calibFlavor()==HcalCalibDetId::CalibrationBox) {
125  switch (calibId.hcalSubdet()) {
126  case HcalBarrel: flavorName = "CALIB_HB"; break;
127  case HcalEndcap: flavorName = "CALIB_HE"; break;
128  case HcalOuter: flavorName = "CALIB_HO"; break;
129  case HcalForward: flavorName = "CALIB_HF"; break;
130  default: result = false;
131  }
132  setField (1, calibId.ieta());
133  setField (2, calibId.iphi());
134  setField (3, calibId.cboxChannel() );
135  } else if (calibId.calibFlavor()==HcalCalibDetId::HOCrosstalk) {
136  flavorName="HOX";
137  setField (1, calibId.ieta());
138  setField (2, calibId.iphi());
139  setField (3, -999);
140  }
141  }
142  else {
143  flavorName = "UNKNOWN_FLAVOR";
144  std::cerr << "HcalText2DetIdConverter::init-> Unknown detId: " << std::hex << std::showbase << mId.rawId() << std::endl;
145  result = false;
146  }
147  return result;
148 }
static const HcalDetId Undefined
Definition: HcalDetId.h:50
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
void setField(int i, int fValue)
tuple result
Definition: query.py:137
static const HcalTrigTowerDetId Undefined
bool HcalText2DetIdConverter::isHcalCalibDetId ( ) const

Definition at line 60 of file HcalText2DetIdConverter.cc.

References HcalGenericDetId::isHcalCalibDetId(), and mId.

Referenced by getField().

bool HcalText2DetIdConverter::isHcalDetId ( ) const
bool HcalText2DetIdConverter::isHcalTrigTowerDetId ( ) const
bool HcalText2DetIdConverter::isHcalZDCDetId ( ) const
void HcalText2DetIdConverter::setField ( int  i,
int  fValue 
)
private

Definition at line 240 of file HcalText2DetIdConverter.cc.

References field1, field2, and field3.

Referenced by init().

240  {
241  char buffer [128];
242  sprintf (buffer, "%d", fValue);
243  if (i == 1) field1 = buffer;
244  else if (i == 2) field2 = buffer;
245  else field3 = buffer;
246 }
int i
Definition: DBlmapReader.cc:9
std::string HcalText2DetIdConverter::toString ( ) const

Definition at line 248 of file HcalText2DetIdConverter.cc.

References field1, field2, field3, and flavorName.

Referenced by HcalDbXml::dumpObject().

248  {
249  return flavorName + " " + field1 + " " + field2 + " " + field3;
250 }

Member Data Documentation

std::string HcalText2DetIdConverter::field1
private

Definition at line 48 of file HcalText2DetIdConverter.h.

Referenced by getField(), getField1(), init(), setField(), and toString().

std::string HcalText2DetIdConverter::field2
private

Definition at line 49 of file HcalText2DetIdConverter.h.

Referenced by getField(), getField2(), init(), setField(), and toString().

std::string HcalText2DetIdConverter::field3
private

Definition at line 50 of file HcalText2DetIdConverter.h.

Referenced by getField(), getField3(), init(), setField(), and toString().

std::string HcalText2DetIdConverter::flavorName
private

Definition at line 47 of file HcalText2DetIdConverter.h.

Referenced by getFlavor(), init(), and toString().

DetId HcalText2DetIdConverter::mId
private