CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Private Member Functions
HcalCastorDetId Class Reference

#include <HcalCastorDetId.h>

Inheritance diagram for HcalCastorDetId:
DetId

Public Types

enum  { kNumberModulesPerEnd = 14, kNumberSectorsPerEnd = 16, kNumberCellsPerEnd = kNumberModulesPerEnd * kNumberSectorsPerEnd, kSizeForDenseIndexing = kNumberCellsPerEnd }
 
enum  Section { Unknown = 0, EM = 1, HAD = 2 }
 
- Public Types inherited from DetId
enum  Detector {
  Tracker = 1, Muon = 2, Ecal = 3, Hcal = 4,
  Calo = 5, Forward = 6, VeryForward = 7, HGCalEE = 8,
  HGCalHSi = 9, HGCalHSc = 10, HGCalTrigger = 11
}
 

Public Member Functions

uint32_t denseIndex () const
 
 HcalCastorDetId ()
 
 HcalCastorDetId (uint32_t rawid)
 
 HcalCastorDetId (Section section, bool true_for_positive_eta, int sector, int module)
 
 HcalCastorDetId (bool true_for_positive_eta, int sector, int module)
 
 HcalCastorDetId (const DetId &id)
 
int module () const
 get the module (1-2 for EM, 1-12 for HAD) More...
 
HcalCastorDetIdoperator= (const DetId &id)
 
Section section () const
 get the section More...
 
int sector () const
 get the sector (1-16) More...
 
int zside () const
 get the z-side of the cell (1/-1) More...
 
- Public Member Functions inherited from DetId
constexpr Detector det () const
 get the detector field from this detid More...
 
constexpr DetId ()
 Create an empty or null id (also for persistence) More...
 
constexpr DetId (uint32_t id)
 Create an id from a raw number. More...
 
constexpr DetId (Detector det, int subdet)
 Create an id, filling the detector and subdetector fields as specified. More...
 
constexpr bool null () const
 is this a null id ? More...
 
constexpr operator uint32_t () const
 
constexpr bool operator!= (DetId id) const
 inequality More...
 
constexpr uint32_t operator() () const
 
constexpr bool operator< (DetId id) const
 comparison More...
 
constexpr bool operator== (DetId id) const
 equality More...
 
constexpr uint32_t rawId () const
 get the raw id More...
 
constexpr int subdetId () const
 get the contents of the subdetector field (not cast into any detector's numbering enum) More...
 

Static Public Member Functions

static HcalCastorDetId detIdFromDenseIndex (uint32_t di)
 
static bool validDenseIndex (uint32_t din)
 
static bool validDetId (Section iSection, bool posEta, int iSector, int iMod)
 

Static Public Attributes

static const int SubdetectorId = 3
 
- Static Public Attributes inherited from DetId
static const int kDetMask = 0xF
 
static const int kDetOffset = 28
 
static const int kSubdetMask = 0x7
 
static const int kSubdetOffset = 25
 

Private Member Functions

void buildMe (Section section, bool true_for_positive_eta, int sector, int module)
 

Additional Inherited Members

- Protected Attributes inherited from DetId
uint32_t id_
 

Detailed Description

Contents of the HcalCastorDetId : [9] Z position (true for positive) [8:7] Section (EM/HAD) [6:4] sector (depth) [3:0] module

NEW: [8] z position [7:4] sector [3:0] module

Author
P. Katsas, T. McCauley

Definition at line 23 of file HcalCastorDetId.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum

◆ Section

Enumerator
Unknown 
EM 
HAD 

Definition at line 25 of file HcalCastorDetId.h.

Constructor & Destructor Documentation

◆ HcalCastorDetId() [1/5]

HcalCastorDetId::HcalCastorDetId ( )

Create a null cellid

Definition at line 5 of file HcalCastorDetId.cc.

Referenced by detIdFromDenseIndex().

5 : DetId() {}
constexpr DetId()
Create an empty or null id (also for persistence)
Definition: DetId.h:38

◆ HcalCastorDetId() [2/5]

HcalCastorDetId::HcalCastorDetId ( uint32_t  rawid)

Create cellid from raw id (0=invalid tower id)

Definition at line 7 of file HcalCastorDetId.cc.

7 : DetId(rawid) {}
constexpr DetId()
Create an empty or null id (also for persistence)
Definition: DetId.h:38

◆ HcalCastorDetId() [3/5]

HcalCastorDetId::HcalCastorDetId ( Section  section,
bool  true_for_positive_eta,
int  sector,
int  module 
)

Constructor from section, z-side, sector and module

Definition at line 14 of file HcalCastorDetId.cc.

References buildMe(), section(), and sector().

16  buildMe(section, true_for_positive_eta, sector, module);
17 }
void buildMe(Section section, bool true_for_positive_eta, int sector, int module)
int sector() const
get the sector (1-16)
static const int SubdetectorId
Section section() const
get the section
constexpr DetId()
Create an empty or null id (also for persistence)
Definition: DetId.h:38

◆ HcalCastorDetId() [4/5]

HcalCastorDetId::HcalCastorDetId ( bool  true_for_positive_eta,
int  sector,
int  module 
)

Definition at line 19 of file HcalCastorDetId.cc.

References buildMe(), sector(), and Unknown.

21  buildMe(Section(Unknown), true_for_positive_eta, sector, module);
22 }
void buildMe(Section section, bool true_for_positive_eta, int sector, int module)
int sector() const
get the sector (1-16)
static const int SubdetectorId
constexpr DetId()
Create an empty or null id (also for persistence)
Definition: DetId.h:38

◆ HcalCastorDetId() [5/5]

HcalCastorDetId::HcalCastorDetId ( const DetId id)

Constructor from a generic cell id

Definition at line 24 of file HcalCastorDetId.cc.

References DetId::Calo, TauDecayModes::dec, Exception, DetId::id_, and SubdetectorId.

24  {
25  if (!gen.null() && (gen.det() != DetId::Calo || gen.subdetId() != SubdetectorId)) {
26  throw cms::Exception("Invalid DetId")
27  << "Cannot initialize CASTORDetId from " << std::hex << gen.rawId() << std::dec;
28  }
29  id_ = gen.rawId();
30 }
static const int SubdetectorId
uint32_t id_
Definition: DetId.h:69

Member Function Documentation

◆ buildMe()

void HcalCastorDetId::buildMe ( Section  section,
bool  true_for_positive_eta,
int  sector,
int  module 
)
private

Definition at line 9 of file HcalCastorDetId.cc.

References DetId::id_, module(), and sector().

Referenced by HcalCastorDetId().

9  {
10  sector -= 1; // we count sector from 1-16 instead of 0-15
11  id_ |= (true_for_positive_eta << 8) | (sector << 4) | module;
12 }
int module() const
get the module (1-2 for EM, 1-12 for HAD)
int sector() const
get the sector (1-16)
uint32_t id_
Definition: DetId.h:69

◆ denseIndex()

uint32_t HcalCastorDetId::denseIndex ( ) const

Definition at line 65 of file HcalCastorDetId.cc.

References kNumberCellsPerEnd, kNumberSectorsPerEnd, module(), sector(), and zside().

65  {
66  return (kNumberCellsPerEnd * (zside() + 1) / 2 + kNumberSectorsPerEnd * (module() - 1) + sector() - 1);
67 }
int module() const
get the module (1-2 for EM, 1-12 for HAD)
int zside() const
get the z-side of the cell (1/-1)
int sector() const
get the sector (1-16)

◆ detIdFromDenseIndex()

HcalCastorDetId HcalCastorDetId::detIdFromDenseIndex ( uint32_t  di)
static

◆ module()

int HcalCastorDetId::module ( ) const
inline

◆ operator=()

HcalCastorDetId & HcalCastorDetId::operator= ( const DetId id)

Assignment from a generic cell id

Definition at line 32 of file HcalCastorDetId.cc.

References DetId::Calo, TauDecayModes::dec, Exception, DetId::id_, and SubdetectorId.

32  {
33  if (!gen.null() && (gen.det() != DetId::Calo || gen.subdetId() != SubdetectorId)) {
34  throw cms::Exception("Invalid DetId") << "Cannot assign Castor DetId from " << std::hex << gen.rawId() << std::dec;
35  }
36 
37  id_ = gen.rawId();
38 
39  return *this;
40 }
static const int SubdetectorId
uint32_t id_
Definition: DetId.h:69

◆ section()

HcalCastorDetId::Section HcalCastorDetId::section ( ) const

get the section

Definition at line 49 of file HcalCastorDetId.cc.

References EM, HAD, mod(), module(), and Unknown.

Referenced by HcalCastorDetId(), CastorTopology::incModule(), CastorTopology::incSector(), CastorText2DetIdConverter::init(), VarParsing.VarParsing::parseArguments(), and CaloGenericDetId::validDetId().

49  {
50  const int mod = module();
51 
52  Section sect;
53  if (mod <= 2) {
54  sect = HcalCastorDetId::EM;
55  } else {
56  if (mod > 2 && mod <= 14) {
57  sect = HcalCastorDetId::HAD;
58  } else {
60  }
61  }
62  return sect;
63 }
int module() const
get the module (1-2 for EM, 1-12 for HAD)
T mod(const T &a, const T &b)
Definition: ecalDccMap.h:4

◆ sector()

int HcalCastorDetId::sector ( ) const
inline

◆ validDenseIndex()

static bool HcalCastorDetId::validDenseIndex ( uint32_t  din)
inlinestatic

◆ validDetId()

bool HcalCastorDetId::validDetId ( Section  iSection,
bool  posEta,
int  iSector,
int  iMod 
)
static

Definition at line 69 of file HcalCastorDetId.cc.

References kNumberModulesPerEnd, and kNumberSectorsPerEnd.

Referenced by CaloGenericDetId::validDetId(), and CastorTopology::validRaw().

69  {
70  return (0 < iSector && kNumberSectorsPerEnd >= iSector && 0 < iModule && kNumberModulesPerEnd >= iModule);
71 }

◆ zside()

int HcalCastorDetId::zside ( ) const
inline

Member Data Documentation

◆ SubdetectorId

const int HcalCastorDetId::SubdetectorId = 3
static