CMS 3D CMS Logo

Functions
HcalDetIdRelationship.cc File Reference
#include "CondFormats/HcalObjects/interface/HcalDetIdRelationship.h"

Go to the source code of this file.

Functions

bool hcalEqualDetId (uint32_t id, const DetId &fId)
 
DetId hcalTransformedId (const DetId &aid)
 

Function Documentation

◆ hcalEqualDetId()

bool hcalEqualDetId ( uint32_t  id,
const DetId fId 
)

Definition at line 3 of file HcalDetIdRelationship.cc.

References DetId::Calo, DetId::det(), DetId::Hcal, DetId::rawId(), HcalZDCDetId::SubdetectorId, and DetId::subdetId().

3  {
4  return ((fId.det() == DetId::Hcal && HcalDetId(id) == HcalDetId(fId)) ||
5  (fId.det() == DetId::Calo && fId.subdetId() == HcalZDCDetId::SubdetectorId &&
6  HcalZDCDetId(id) == HcalZDCDetId(fId)) ||
7  (fId.det() != DetId::Hcal && (fId.det() == DetId::Calo && fId.subdetId() != HcalZDCDetId::SubdetectorId) &&
8  (id == fId.rawId())));
9 }
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum) ...
Definition: DetId.h:48
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
static constexpr int32_t SubdetectorId
Definition: HcalZDCDetId.h:35

◆ hcalTransformedId()

DetId hcalTransformedId ( const DetId aid)

Definition at line 11 of file HcalDetIdRelationship.cc.

References DetId::Calo, HcalZDCDetId::channel(), HcalDetId::depth(), DetId::det(), DetId::Hcal, l1ctLayer2EG_cff::id, HcalDetId::ieta(), HcalDetId::iphi(), HcalZDCDetId::section(), HcalDetId::subdet(), HcalZDCDetId::SubdetectorId, DetId::subdetId(), and HcalZDCDetId::zside().

Referenced by HcalCalibrationsSet::CalibSetObject::CalibSetObject(), HcalCalibrationWidthsSet::CalibWidthSetObject::CalibWidthSetObject(), HcalCalibrationsSet::getCalibrations(), HcalCalibrationWidthsSet::getCalibrationWidths(), HcalCalibrationsSet::setCalibrations(), and HcalCalibrationWidthsSet::setCalibrationWidths().

11  {
12  DetId id;
13  if (aid.det() == DetId::Hcal) {
14  HcalDetId hcid(aid);
15  id = HcalDetId(hcid.subdet(), hcid.ieta(), hcid.iphi(), hcid.depth());
16  } else if (aid.det() == DetId::Calo && aid.subdetId() == HcalZDCDetId::SubdetectorId) {
17  HcalZDCDetId hcid(aid);
18  id = HcalZDCDetId(hcid.section(), (hcid.zside() > 0), hcid.channel());
19  } else {
20  id = aid;
21  }
22  return id;
23 }
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum) ...
Definition: DetId.h:48
Definition: DetId.h:17
static constexpr int32_t SubdetectorId
Definition: HcalZDCDetId.h:35