CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
CaloTowerTopology Class Referencefinal

#include <CaloTowerTopology.h>

Inheritance diagram for CaloTowerTopology:
CaloSubdetectorTopology

Public Member Functions

 CaloTowerTopology (const HcalTopology *topology)
 standard constructor More...
 
int convertCTtoHcal (int ct_ieta) const
 
int convertHcaltoCT (int hcal_ieta, HcalSubdetector subdet) const
 
uint32_t denseIndex (const DetId &id) const
 
CaloTowerDetId detIdFromDenseIndex (uint32_t din) const
 
std::vector< DetIddown (const DetId &id) const override
 
std::vector< DetIdeast (const DetId &id) const override
 
int firstHBRing () const
 
int firstHEDoublePhiRing () const
 
int firstHEQuadPhiRing () const
 
int firstHERing () const
 
int firstHFQuadPhiRing () const
 
int firstHFRing () const
 
int firstHORing () const
 
int lastHBRing () const
 
int lastHERing () const
 
int lastHFRing () const
 
int lastHORing () const
 
std::vector< DetIdnorth (const DetId &id) const override
 
uint32_t sizeForDenseIndexing () const
 
std::vector< DetIdsouth (const DetId &id) const override
 
std::vector< DetIdup (const DetId &id) const override
 
bool valid (const DetId &id) const override
 is this detid present in the Topology? More...
 
bool validDenseIndex (uint32_t din) const
 
virtual bool validDetId (const CaloTowerDetId &id) const
 
std::vector< DetIdwest (const DetId &id) const override
 
 ~CaloTowerTopology () override
 virtual destructor More...
 
- Public Member Functions inherited from CaloSubdetectorTopology
 CaloSubdetectorTopology ()
 standard constructor More...
 
virtual DetId denseId2detId (unsigned int) const
 return a linear packed id More...
 
virtual bool denseIdConsistent (int topoVer) const
 return whether this topology is consistent with the numbering in the given topology More...
 
virtual unsigned int detId2denseId (const DetId &) const
 return a linear packed id More...
 
virtual std::vector< DetIdgetAllNeighbours (const DetId &id) const
 
virtual std::vector< DetIdgetNeighbours (const DetId &id, const CaloDirection &dir) const
 
virtual std::vector< DetIdgetWindow (const DetId &id, const int &northSouthSize, const int &eastWestSize) const
 
virtual DetId goDown (const DetId &id) const
 
virtual DetId goEast (const DetId &id) const
 
virtual DetId goNorth (const DetId &id) const
 
virtual DetId goSouth (const DetId &id) const
 
virtual DetId goUp (const DetId &id) const
 
virtual DetId goWest (const DetId &id) const
 
virtual unsigned int ncells () const
 return a count of valid cells (for dense indexing use) More...
 
virtual int topoVersion () const
 return a version which identifies the given topology More...
 
virtual ~CaloSubdetectorTopology ()
 virtual destructor More...
 

Private Attributes

int firstHBRing_
 
int firstHEDoublePhiRing_
 
int firstHEQuadPhiRing_
 
int firstHERing_
 
int firstHFQuadPhiRing_
 
int firstHFRing_
 
int firstHORing_
 
const HcalTopologyhcaltopo
 
uint32_t kSizeForDenseIndexing
 
int lastHBRing_
 
int lastHERing_
 
int lastHFRing_
 
int lastHORing_
 
int nDoublePhi_
 
int nEtaHE_
 
int nQuadPhi_
 
int nSinglePhi_
 

Additional Inherited Members

- Protected Types inherited from CaloSubdetectorTopology
typedef std::pair< int, int > Coordinate
 
- Protected Member Functions inherited from CaloSubdetectorTopology
Coordinate getNeighbourIndex (const Coordinate &coord, const CaloDirection &dir) const
 

Detailed Description

Author
J. Mans - Minnesota

Definition at line 13 of file CaloTowerTopology.h.

Constructor & Destructor Documentation

◆ CaloTowerTopology()

CaloTowerTopology::CaloTowerTopology ( const HcalTopology topology)

standard constructor

Definition at line 9 of file CaloTowerTopology.cc.

References HcalTopology::firstHBRing(), firstHBRing_, HcalTopology::firstHEDoublePhiRing(), firstHEDoublePhiRing_, HcalTopology::firstHEQuadPhiRing(), firstHEQuadPhiRing_, HcalTopology::firstHERing(), firstHERing_, HcalTopology::firstHFQuadPhiRing(), firstHFQuadPhiRing_, HcalTopology::firstHFRing(), firstHFRing_, HcalTopology::firstHORing(), firstHORing_, hcaltopo, HcalTopology::isBH(), kSizeForDenseIndexing, HcalTopology::lastHBRing(), lastHBRing_, HcalTopology::lastHERing(), lastHERing_, HcalTopology::lastHFRing(), lastHFRing_, HcalTopology::lastHORing(), lastHORing_, SiStripPI::max, nDoublePhi_, nEtaHE_, nQuadPhi_, and nSinglePhi_.

9  : hcaltopo(topology) {
10  //get number of towers in each hcal subdet from hcaltopo
11  int nEtaHB, nEtaHO, nEtaHF;
12  nEtaHB = hcaltopo->lastHBRing() - hcaltopo->firstHBRing() + 1;
14  nEtaHO = hcaltopo->lastHORing() - hcaltopo->firstHORing() + 1;
15  nEtaHF = hcaltopo->lastHFRing() - hcaltopo->firstHFRing() + 1;
16 #ifdef EDM_ML_DEBUG
17  edm::LogVerbatim("CaloTower") << "CaloTowerTopology:(1) " << nEtaHB << ":" << nEtaHE_ << ":" << nEtaHO << ":"
18  << nEtaHF << ":" << hcaltopo->isBH();
19 #endif
20  if (hcaltopo->isBH())
21  nEtaHE_ = 0;
22 
23  //setup continuous ieta
24  firstHBRing_ = 1;
25  lastHBRing_ = firstHBRing_ + nEtaHB - 1;
26  firstHERing_ = lastHBRing_; //crossover
27  lastHERing_ = firstHERing_ + std::max(nEtaHE_ - 1, 0); //max = protection for case with no HE
28  //no crossover for CaloTowers; HF crossover cells go in the subsequent non-crossover HF tower
30  lastHFRing_ = firstHFRing_ + (nEtaHF - 1) - 1; //nEtaHF - 1 to account for no crossover
31  firstHORing_ = 1;
32  lastHORing_ = firstHORing_ + nEtaHO - 1;
33 #ifdef EDM_ML_DEBUG
34  edm::LogVerbatim("CaloTower") << "CaloTowerTopology: (2) " << firstHBRing_ << ":" << lastHBRing_ << ":"
35  << firstHERing_ << ":" << lastHERing_ << ":" << firstHFRing_ << ":" << lastHFRing_
36  << ":" << firstHORing_ << ":" << lastHORing_;
37 #endif
38 
39  //translate phi segmentation boundaries into continuous ieta
40  if (hcaltopo->firstHEDoublePhiRing() == 999 || nEtaHE_ == 0)
42  else
46 
47  //number of etas per phi segmentation type
48  int nEtaSinglePhi_, nEtaDoublePhi_, nEtaQuadPhi_;
49  nEtaSinglePhi_ = firstHEDoublePhiRing_ - firstHBRing_;
50  nEtaDoublePhi_ = firstHFQuadPhiRing_ - firstHEDoublePhiRing_;
51  nEtaQuadPhi_ = lastHFRing_ - firstHFQuadPhiRing_ + 1; //include lastHFRing
52 
53  //total number of towers per phi segmentation type
54  nSinglePhi_ = nEtaSinglePhi_ * 72;
55  nDoublePhi_ = nEtaDoublePhi_ * 36;
56  nQuadPhi_ = nEtaQuadPhi_ * 18;
57 
58 #ifdef EDM_ML_DEBUG
59  edm::LogVerbatim("CaloTower") << "CaloTowerTopology: (3) " << nEtaSinglePhi_ << ":" << nEtaDoublePhi_ << ":"
60  << nEtaQuadPhi_ << ":" << nSinglePhi_ << ":" << nDoublePhi_ << ":" << nQuadPhi_;
61 #endif
62 
63  //calculate maximum dense index size
65 }
Log< level::Info, true > LogVerbatim
int firstHORing() const
Definition: HcalTopology.h:98
bool isBH() const
Definition: HcalTopology.h:162
int lastHORing() const
Definition: HcalTopology.h:99
uint32_t kSizeForDenseIndexing
int firstHBRing() const
Definition: HcalTopology.h:91
int firstHFQuadPhiRing() const
Definition: HcalTopology.h:103
int lastHBRing() const
Definition: HcalTopology.h:92
const HcalTopology * hcaltopo
int firstHEQuadPhiRing() const
Definition: HcalTopology.h:102
int firstHEDoublePhiRing() const
Definition: HcalTopology.h:101
int lastHERing() const
Definition: HcalTopology.h:94
int lastHFRing() const
Definition: HcalTopology.h:97
int firstHFRing() const
Definition: HcalTopology.h:96
int firstHERing() const
Definition: HcalTopology.h:93

◆ ~CaloTowerTopology()

CaloTowerTopology::~CaloTowerTopology ( )
inlineoverride

virtual destructor

Definition at line 18 of file CaloTowerTopology.h.

18 {}

Member Function Documentation

◆ convertCTtoHcal()

int CaloTowerTopology::convertCTtoHcal ( int  ct_ieta) const

Definition at line 68 of file CaloTowerTopology.cc.

References HcalTopology::firstHBRing(), firstHBRing_, HcalTopology::firstHERing(), firstHERing_, HcalTopology::firstHFRing(), firstHFRing_, hcaltopo, lastHBRing_, lastHERing_, and lastHFRing_.

Referenced by CaloTowerConstituentsMap::constituentsOf(), CaloTowersCreationAlgo::hadShwrPos(), and CaloTowerHardcodeGeometryLoader::makeCell().

68  {
69  if (ct_ieta <= lastHBRing_)
70  return ct_ieta - firstHBRing_ + hcaltopo->firstHBRing();
71  else if (ct_ieta <= lastHERing_)
72  return ct_ieta - firstHERing_ + hcaltopo->firstHERing();
73  else if (ct_ieta <= lastHFRing_)
74  return ct_ieta - firstHFRing_ + hcaltopo->firstHFRing() + 1; //account for no HF crossover
75  else
76  return 0; //if ct_ieta outside range
77 }
int firstHBRing() const
Definition: HcalTopology.h:91
const HcalTopology * hcaltopo
int firstHFRing() const
Definition: HcalTopology.h:96
int firstHERing() const
Definition: HcalTopology.h:93

◆ convertHcaltoCT()

int CaloTowerTopology::convertHcaltoCT ( int  hcal_ieta,
HcalSubdetector  subdet 
) const

Definition at line 80 of file CaloTowerTopology.cc.

References HcalTopology::firstHBRing(), firstHBRing_, HcalTopology::firstHERing(), firstHERing_, HcalTopology::firstHFRing(), firstHFRing_, HcalTopology::firstHORing(), firstHORing_, HcalBarrel, HcalEndcap, HcalForward, HcalOuter, hcaltopo, HcalTopology::lastHBRing(), HcalTopology::lastHERing(), HcalTopology::lastHFRing(), HcalTopology::lastHORing(), and nEtaHE_.

Referenced by CaloTowerConstituentsMapBuilder::assignEEtoHE(), and CaloTowerConstituentsMap::towerOf().

80  {
81  if (subdet == HcalBarrel && hcal_ieta >= hcaltopo->firstHBRing() && hcal_ieta <= hcaltopo->lastHBRing()) {
82  return hcal_ieta - hcaltopo->firstHBRing() + firstHBRing_;
83  } else if (subdet == HcalEndcap && hcal_ieta >= hcaltopo->firstHERing() && hcal_ieta <= hcaltopo->lastHERing()) {
84  return ((nEtaHE_ == 0) ? 0 : (hcal_ieta - hcaltopo->firstHERing() + firstHERing_));
85  } else if (subdet == HcalForward && hcal_ieta >= hcaltopo->firstHFRing() && hcal_ieta <= hcaltopo->lastHFRing()) {
86  if (hcal_ieta == hcaltopo->firstHFRing())
87  hcal_ieta++; //account for no HF crossover
88  return hcal_ieta - hcaltopo->firstHFRing() + firstHFRing_ - 1;
89  } else if (subdet == HcalOuter && hcal_ieta >= hcaltopo->firstHORing() && hcal_ieta <= hcaltopo->lastHORing()) {
90  return hcal_ieta - hcaltopo->firstHORing() + firstHORing_;
91  } else
92  return 0; //if hcal_ieta outside range, or unknown subdet
93 }
int firstHORing() const
Definition: HcalTopology.h:98
int lastHORing() const
Definition: HcalTopology.h:99
int firstHBRing() const
Definition: HcalTopology.h:91
int lastHBRing() const
Definition: HcalTopology.h:92
const HcalTopology * hcaltopo
int lastHERing() const
Definition: HcalTopology.h:94
int lastHFRing() const
Definition: HcalTopology.h:97
int firstHFRing() const
Definition: HcalTopology.h:96
int firstHERing() const
Definition: HcalTopology.h:93

◆ denseIndex()

uint32_t CaloTowerTopology::denseIndex ( const DetId id) const

Definition at line 236 of file CaloTowerTopology.cc.

References firstHEDoublePhiRing_, firstHFQuadPhiRing_, CaloTowerDetId::ietaAbs(), CaloTowerDetId::iphi(), kSizeForDenseIndexing, nDoublePhi_, nSinglePhi_, and CaloTowerDetId::zside().

Referenced by CaloTowersCreationAlgo::convert(), CaloTowersCreationAlgo::find(), CaloTowerGeometry::getGeometry(), CaloTowerGeometry::indexFor(), and CaloTowerGeometry::newCell().

236  {
237  CaloTowerDetId tid(id);
238  const int ie(tid.ietaAbs());
239  const int ip(tid.iphi() - 1);
240 
241  return ((0 > tid.zside() ? 0 : kSizeForDenseIndexing / 2) +
242  ((firstHEDoublePhiRing_ > ie
243  ? (ie - 1) * 72 + ip
244  : (firstHFQuadPhiRing_ > ie ? nSinglePhi_ + (ie - firstHEDoublePhiRing_) * 36 + ip / 2
245  : nSinglePhi_ + nDoublePhi_ + (ie - firstHFQuadPhiRing_) * 18 + ip / 4))));
246 }
uint32_t kSizeForDenseIndexing

◆ detIdFromDenseIndex()

CaloTowerDetId CaloTowerTopology::detIdFromDenseIndex ( uint32_t  din) const

Definition at line 248 of file CaloTowerTopology.cc.

References cropTnPTrees::din, firstHEDoublePhiRing_, firstHFQuadPhiRing_, kSizeForDenseIndexing, nDoublePhi_, nSinglePhi_, and validDenseIndex().

Referenced by CaloTowerHardcodeGeometryLoader::makeCell(), and CaloTowersCreationAlgo::makeEcalBadChs().

248  {
249  const int iz(din < kSizeForDenseIndexing / 2 ? -1 : 1);
250  din %= kSizeForDenseIndexing / 2;
251  const int ie(nSinglePhi_ + nDoublePhi_ - 1 < (int)(din)
253  : (nSinglePhi_ - 1 < (int)din ? firstHEDoublePhiRing_ + (din - nSinglePhi_) / 36 : din / 72 + 1));
254 
255  const int ip(nSinglePhi_ + nDoublePhi_ - 1 < (int)(din)
256  ? ((din - nSinglePhi_ - nDoublePhi_) % 18) * 4 + 3
257  : (nSinglePhi_ - 1 < (int)(din) ? ((din - nSinglePhi_) % 36) * 2 + 1 : din % 72 + 1));
258 
259  return (validDenseIndex(din) ? CaloTowerDetId(iz * ie, ip) : CaloTowerDetId());
260 }
uint32_t kSizeForDenseIndexing
bool validDenseIndex(uint32_t din) const

◆ down()

std::vector< DetId > CaloTowerTopology::down ( const DetId id) const
overridevirtual

Get the neighbors of the given cell in down direction (inward)

Implements CaloSubdetectorTopology.

Definition at line 234 of file CaloTowerTopology.cc.

234 { return std::vector<DetId>(); }

◆ east()

std::vector< DetId > CaloTowerTopology::east ( const DetId id) const
overridevirtual

Get the neighbors of the given cell in east direction

Implements CaloSubdetectorTopology.

Definition at line 113 of file CaloTowerTopology.cc.

References createTree::dd, firstHEDoublePhiRing_, firstHFQuadPhiRing_, hcalRecHitTable_cff::ieta, CaloTowerDetId::ieta(), hcalRecHitTable_cff::iphi, CaloTowerDetId::iphi(), and lastHFRing_.

113  {
114  std::vector<DetId> dd;
115  CaloTowerDetId tid(id);
116  int ieta = tid.ieta();
117  int iphi = tid.iphi();
118 
119  if (ieta == 1) { //no ieta=0
120  ieta = -1;
121  } else if (ieta == firstHEDoublePhiRing_) {
122  //currently double phi, going to single phi (positive eta) -> extra neighbor
123  ieta--;
124  dd.emplace_back(CaloTowerDetId(ieta, iphi + 1));
125  } else if (ieta - 1 == -firstHEDoublePhiRing_) {
126  //currently single phi, going to double phi (negative eta) -> change numbering
127  if ((iphi % 2) == 0)
128  iphi--;
129  ieta--;
130  } else if (ieta == firstHFQuadPhiRing_) { //currently quad phi, going to double phi (positive eta) -> extra neighbor
131  ieta--;
132  dd.emplace_back(CaloTowerDetId(ieta, ((iphi + 1) % 72) + 1));
133  } else if (ieta - 1 == -firstHFQuadPhiRing_) {
134  //currently double phi, going to quad phi (negative eta) -> change numbering
135  if (((iphi - 1) % 4) == 0) {
136  if (iphi == 1)
137  iphi = 71;
138  else
139  iphi -= 2;
140  }
141  ieta--;
142  } else { //general case
143  ieta--;
144  }
145 
146  if (ieta >= -lastHFRing_)
147  dd.emplace_back(CaloTowerDetId(ieta, iphi));
148  return dd;
149 }
string dd
Definition: createTree.py:154

◆ firstHBRing()

int CaloTowerTopology::firstHBRing ( ) const
inline

Definition at line 36 of file CaloTowerTopology.h.

References firstHBRing_.

36 { return firstHBRing_; }

◆ firstHEDoublePhiRing()

int CaloTowerTopology::firstHEDoublePhiRing ( ) const
inline

◆ firstHEQuadPhiRing()

int CaloTowerTopology::firstHEQuadPhiRing ( ) const
inline

Definition at line 45 of file CaloTowerTopology.h.

References firstHEQuadPhiRing_.

45 { return firstHEQuadPhiRing_; }

◆ firstHERing()

int CaloTowerTopology::firstHERing ( ) const
inline

◆ firstHFQuadPhiRing()

int CaloTowerTopology::firstHFQuadPhiRing ( ) const
inline

Definition at line 46 of file CaloTowerTopology.h.

References firstHFQuadPhiRing_.

Referenced by CaloTowerGeometry::alignmentTransformIndexLocal().

46 { return firstHFQuadPhiRing_; }

◆ firstHFRing()

int CaloTowerTopology::firstHFRing ( ) const
inline

◆ firstHORing()

int CaloTowerTopology::firstHORing ( ) const
inline

Definition at line 42 of file CaloTowerTopology.h.

References firstHORing_.

42 { return firstHORing_; }

◆ lastHBRing()

int CaloTowerTopology::lastHBRing ( ) const
inline

◆ lastHERing()

int CaloTowerTopology::lastHERing ( ) const
inline

◆ lastHFRing()

int CaloTowerTopology::lastHFRing ( ) const
inline

◆ lastHORing()

int CaloTowerTopology::lastHORing ( ) const
inline

◆ north()

std::vector< DetId > CaloTowerTopology::north ( const DetId id) const
overridevirtual

Get the neighbors of the given cell in north direction

Implements CaloSubdetectorTopology.

Definition at line 193 of file CaloTowerTopology.cc.

References createTree::dd, firstHEDoublePhiRing_, firstHFQuadPhiRing_, CaloTowerDetId::ieta(), CaloTowerDetId::ietaAbs(), and CaloTowerDetId::iphi().

193  {
194  CaloTowerDetId tid(id);
195  int iphi_n = tid.iphi() + 1;
196  if (iphi_n > 72)
197  iphi_n = 1;
198  if (tid.ietaAbs() >= firstHFQuadPhiRing_) { //18 phi segments, numbered 71,3,7,11,...
199  iphi_n += 3;
200  if (iphi_n > 72)
201  iphi_n -= 72;
202  } else if (tid.ietaAbs() >= firstHEDoublePhiRing_ && (iphi_n % 2) == 0) { //36 phi segments, numbered 1,3,...,33,35
203  iphi_n++;
204  if (iphi_n > 72)
205  iphi_n -= 72;
206  }
207 
208  std::vector<DetId> dd;
209  dd.emplace_back(CaloTowerDetId(tid.ieta(), iphi_n));
210  return dd;
211 }
string dd
Definition: createTree.py:154

◆ sizeForDenseIndexing()

uint32_t CaloTowerTopology::sizeForDenseIndexing ( ) const
inline

◆ south()

std::vector< DetId > CaloTowerTopology::south ( const DetId id) const
overridevirtual

Get the neighbors of the given cell in south direction

Implements CaloSubdetectorTopology.

Definition at line 214 of file CaloTowerTopology.cc.

References createTree::dd, firstHEDoublePhiRing_, firstHFQuadPhiRing_, CaloTowerDetId::ieta(), CaloTowerDetId::ietaAbs(), and CaloTowerDetId::iphi().

214  {
215  CaloTowerDetId tid(id);
216  int iphi_s = tid.iphi() - 1;
217  if (iphi_s == 0)
218  iphi_s = 72;
219  if (tid.ietaAbs() >= firstHFQuadPhiRing_) { //18 phi segments, numbered 71,3,7,11,...
220  iphi_s -= 3;
221  if (iphi_s <= 0)
222  iphi_s += 72;
223  } else if (tid.ietaAbs() >= firstHEDoublePhiRing_ && (iphi_s % 2) == 0) { //36 phi segments, numbered 1,3,...,33,35
224  iphi_s--;
225  }
226 
227  std::vector<DetId> dd;
228  dd.emplace_back(CaloTowerDetId(tid.ieta(), iphi_s));
229  return dd;
230 }
string dd
Definition: createTree.py:154

◆ up()

std::vector< DetId > CaloTowerTopology::up ( const DetId id) const
overridevirtual

Get the neighbors of the given cell in up direction (outward)

Implements CaloSubdetectorTopology.

Definition at line 232 of file CaloTowerTopology.cc.

232 { return std::vector<DetId>(); }

◆ valid()

bool CaloTowerTopology::valid ( const DetId id) const
overridevirtual

is this detid present in the Topology?

Reimplemented from CaloSubdetectorTopology.

Definition at line 95 of file CaloTowerTopology.cc.

References cms::cuda::assert(), DetId::Calo, CaloTowerDetId::SubdetId, and validDetId().

95  {
96  assert(id.det() == DetId::Calo && id.subdetId() == CaloTowerDetId::SubdetId);
97  return validDetId(id);
98 }
virtual bool validDetId(const CaloTowerDetId &id) const
assert(be >=bs)
static const int SubdetId

◆ validDenseIndex()

bool CaloTowerTopology::validDenseIndex ( uint32_t  din) const
inline

Definition at line 55 of file CaloTowerTopology.h.

References cropTnPTrees::din, and kSizeForDenseIndexing.

Referenced by detIdFromDenseIndex().

55 { return (din < kSizeForDenseIndexing); }
uint32_t kSizeForDenseIndexing

◆ validDetId()

bool CaloTowerTopology::validDetId ( const CaloTowerDetId id) const
virtual

Definition at line 100 of file CaloTowerTopology.cc.

References firstHBRing_, firstHEDoublePhiRing_, firstHFQuadPhiRing_, and lastHFRing_.

Referenced by valid().

100  {
101  int ia = id.ietaAbs();
102  int ip = id.iphi();
103 
104  return ((ia >= firstHBRing_) && (ia <= lastHFRing_) //eta range
105  && (ip >= 1) && (ip <= 72) //phi range
106  && ((ia < firstHEDoublePhiRing_) //72 phi segments
107  || (ia < firstHFQuadPhiRing_ && (ip - 1) % 2 == 0) //36 phi segments, numbered 1,3,...,33,35
108  || (ia >= firstHFQuadPhiRing_ && (ip - 3) % 4 == 0)) //18 phi segments, numbered 71,3,7,11,...
109  );
110 }

◆ west()

std::vector< DetId > CaloTowerTopology::west ( const DetId id) const
overridevirtual

Get the neighbors of the given cell in west direction

Implements CaloSubdetectorTopology.

Definition at line 152 of file CaloTowerTopology.cc.

References createTree::dd, firstHEDoublePhiRing_, firstHFQuadPhiRing_, hcalRecHitTable_cff::ieta, CaloTowerDetId::ieta(), hcalRecHitTable_cff::iphi, CaloTowerDetId::iphi(), and lastHFRing_.

152  {
153  std::vector<DetId> dd;
154  CaloTowerDetId tid(id);
155 
156  int ieta = tid.ieta();
157  int iphi = tid.iphi();
158 
159  if (ieta == -1) { //no ieta=0
160  ieta = 1;
161  } else if (ieta == -firstHEDoublePhiRing_) {
162  //currently double phi, going to single phi (negative eta) -> extra neighbor
163  ieta++;
164  dd.emplace_back(CaloTowerDetId(ieta, iphi + 1));
165  } else if (ieta + 1 == firstHEDoublePhiRing_) {
166  //currently single phi, going to double phi (positive eta) -> change numbering
167  if ((iphi % 2) == 0)
168  iphi--;
169  ieta++;
170  } else if (ieta == -firstHFQuadPhiRing_) { //currently quad phi, going to double phi (negative eta) -> extra neighbor
171  ieta++;
172  dd.emplace_back(CaloTowerDetId(ieta, ((iphi + 1) % 72) + 1));
173  } else if (ieta + 1 == firstHFQuadPhiRing_) {
174  //currently double phi, going to quad phi (positive eta) -> change numbering
175  if (((iphi - 1) % 4) == 0) {
176  if (iphi == 1)
177  iphi = 71;
178  else
179  iphi -= 2;
180  }
181  ieta++;
182  } else {
183  ieta++;
184  }
185 
186  if (ieta <= lastHFRing_)
187  dd.emplace_back(CaloTowerDetId(ieta, iphi));
188 
189  return dd;
190 }
string dd
Definition: createTree.py:154

Member Data Documentation

◆ firstHBRing_

int CaloTowerTopology::firstHBRing_
private

◆ firstHEDoublePhiRing_

int CaloTowerTopology::firstHEDoublePhiRing_
private

◆ firstHEQuadPhiRing_

int CaloTowerTopology::firstHEQuadPhiRing_
private

Definition at line 65 of file CaloTowerTopology.h.

Referenced by CaloTowerTopology(), and firstHEQuadPhiRing().

◆ firstHERing_

int CaloTowerTopology::firstHERing_
private

◆ firstHFQuadPhiRing_

int CaloTowerTopology::firstHFQuadPhiRing_
private

◆ firstHFRing_

int CaloTowerTopology::firstHFRing_
private

◆ firstHORing_

int CaloTowerTopology::firstHORing_
private

Definition at line 64 of file CaloTowerTopology.h.

Referenced by CaloTowerTopology(), convertHcaltoCT(), and firstHORing().

◆ hcaltopo

const HcalTopology* CaloTowerTopology::hcaltopo
private

Definition at line 60 of file CaloTowerTopology.h.

Referenced by CaloTowerTopology(), convertCTtoHcal(), and convertHcaltoCT().

◆ kSizeForDenseIndexing

uint32_t CaloTowerTopology::kSizeForDenseIndexing
private

◆ lastHBRing_

int CaloTowerTopology::lastHBRing_
private

Definition at line 61 of file CaloTowerTopology.h.

Referenced by CaloTowerTopology(), convertCTtoHcal(), and lastHBRing().

◆ lastHERing_

int CaloTowerTopology::lastHERing_
private

Definition at line 62 of file CaloTowerTopology.h.

Referenced by CaloTowerTopology(), convertCTtoHcal(), and lastHERing().

◆ lastHFRing_

int CaloTowerTopology::lastHFRing_
private

◆ lastHORing_

int CaloTowerTopology::lastHORing_
private

Definition at line 64 of file CaloTowerTopology.h.

Referenced by CaloTowerTopology(), and lastHORing().

◆ nDoublePhi_

int CaloTowerTopology::nDoublePhi_
private

Definition at line 66 of file CaloTowerTopology.h.

Referenced by CaloTowerTopology(), denseIndex(), and detIdFromDenseIndex().

◆ nEtaHE_

int CaloTowerTopology::nEtaHE_
private

Definition at line 66 of file CaloTowerTopology.h.

Referenced by CaloTowerTopology(), and convertHcaltoCT().

◆ nQuadPhi_

int CaloTowerTopology::nQuadPhi_
private

Definition at line 66 of file CaloTowerTopology.h.

Referenced by CaloTowerTopology().

◆ nSinglePhi_

int CaloTowerTopology::nSinglePhi_
private

Definition at line 66 of file CaloTowerTopology.h.

Referenced by CaloTowerTopology(), denseIndex(), and detIdFromDenseIndex().