CMS 3D CMS Logo

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

#include <EcalBarrelTopology.h>

Inheritance diagram for EcalBarrelTopology:
CaloSubdetectorTopology

Public Member Functions

std::vector< DetIddown (const DetId &) const override
 
std::vector< DetIdeast (const DetId &id) const override
 
 EcalBarrelTopology ()
 create a new Topology More...
 
 EcalBarrelTopology (edm::ESHandle< CaloGeometry > theGeom)
 create a new Topology from geometry More...
 
DetId goEast (const DetId &id) const override
 move the Topology east (negative ieta) More...
 
DetId goNorth (const DetId &id) const override
 move the Topology north (increment iphi) More...
 
DetId goSouth (const DetId &id) const override
 move the Topology south (decrement iphi) More...
 
DetId goWest (const DetId &id) const override
 move the Topology west (positive ieta) More...
 
std::vector< DetIdnorth (const DetId &id) const override
 
std::vector< DetIdsouth (const DetId &id) const override
 
std::vector< DetIdup (const DetId &) const override
 
std::vector< DetIdwest (const DetId &id) const override
 
 ~EcalBarrelTopology () 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 goUp (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 bool valid (const DetId &) const
 is this detid present in the Topology? More...
 
virtual ~CaloSubdetectorTopology ()
 virtual destructor More...
 

Private Member Functions

EBDetId decrementIeta (const EBDetId &) const
 move the nagivator to smaller ieta (more negative z) (stops at end of barrel and returns null) More...
 
EBDetId decrementIphi (const EBDetId &) const
 move the nagivator to smaller iphi (wraps around the barrel) More...
 
EBDetId incrementIeta (const EBDetId &) const
 move the nagivator to larger ieta (more positive z) (stops at end of barrel and returns null) More...
 
EBDetId incrementIphi (const EBDetId &) const
 move the nagivator to larger iphi (wraps around the barrel) More...
 

Private Attributes

edm::ESHandle< CaloGeometrytheGeom_
 

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

Definition at line 12 of file EcalBarrelTopology.h.

Constructor & Destructor Documentation

EcalBarrelTopology::EcalBarrelTopology ( )
inline

create a new Topology

Definition at line 17 of file EcalBarrelTopology.h.

17 : theGeom_(nullptr) {};
edm::ESHandle< CaloGeometry > theGeom_
EcalBarrelTopology::~EcalBarrelTopology ( )
inlineoverride

virtual destructor

Definition at line 20 of file EcalBarrelTopology.h.

20 { }
EcalBarrelTopology::EcalBarrelTopology ( edm::ESHandle< CaloGeometry theGeom)
inline

create a new Topology from geometry

Definition at line 23 of file EcalBarrelTopology.h.

23  : theGeom_(std::move(theGeom))
24  {
25  }
edm::ESHandle< CaloGeometry > theGeom_
def move(src, dest)
Definition: eostools.py:510

Member Function Documentation

EBDetId EcalBarrelTopology::decrementIeta ( const EBDetId id) const
private

move the nagivator to smaller ieta (more negative z) (stops at end of barrel and returns null)

Definition at line 30 of file EcalBarrelTopology.cc.

References DetId::Ecal, EcalBarrel, and EBDetId::validDetId().

Referenced by down(), and goEast().

30  {
31 
32  if (!(*theGeom_).getSubdetectorGeometry(DetId::Ecal,EcalBarrel)->present(id))
33  return EBDetId(0);
34 
35  EBDetId nextPoint;
36  if (id.ieta()==1)
37  {
38  if (EBDetId::validDetId(-1,id.iphi()))
39  nextPoint=EBDetId(-1,id.iphi());
40  else
41  return EBDetId(0);
42  }
43  else
44  {
45  if (EBDetId::validDetId(id.ieta()-1,id.iphi()))
46  nextPoint=EBDetId(id.ieta()-1,id.iphi());
47  else
48  return EBDetId(0);
49  }
50 
51  if ((*theGeom_).getSubdetectorGeometry(DetId::Ecal,EcalBarrel)->present(nextPoint))
52  return nextPoint;
53  else
54  return EBDetId(0);
55 }
static bool validDetId(int i, int j)
check if a valid index combination
Definition: EBDetId.h:124
EBDetId EcalBarrelTopology::decrementIphi ( const EBDetId id) const
private

move the nagivator to smaller iphi (wraps around the barrel)

Definition at line 86 of file EcalBarrelTopology.cc.

References DetId::Ecal, EcalBarrel, EBDetId::MAX_IPHI, EBDetId::MIN_IPHI, and EBDetId::validDetId().

Referenced by down(), and goSouth().

86  {
87  if (!(*theGeom_).getSubdetectorGeometry(DetId::Ecal,EcalBarrel)->present(id))
88  return EBDetId(0);
89 
90  EBDetId nextPoint;
91 
92  if (id.iphi()==EBDetId::MIN_IPHI)
93  {
95  nextPoint=EBDetId(id.ieta(),EBDetId::MAX_IPHI);
96  else
97  return EBDetId(0);
98  }
99  else
100  {
101  if (EBDetId::validDetId(id.ieta(),id.iphi()-1))
102  nextPoint=EBDetId(id.ieta(),id.iphi()-1);
103  else
104  return EBDetId(0);
105  }
106 
107  if ((*theGeom_).getSubdetectorGeometry(DetId::Ecal,EcalBarrel)->present(nextPoint))
108  return nextPoint;
109  else
110  return EBDetId(0);
111 }
static const int MIN_IPHI
Definition: EBDetId.h:142
static bool validDetId(int i, int j)
check if a valid index combination
Definition: EBDetId.h:124
static const int MAX_IPHI
Definition: EBDetId.h:144
std::vector<DetId> EcalBarrelTopology::down ( const DetId id) const
inlineoverridevirtual

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

Implements CaloSubdetectorTopology.

Definition at line 87 of file EcalBarrelTopology.h.

References gather_cfg::cout, decrementIeta(), decrementIphi(), incrementIeta(), and incrementIphi().

88  {
89  std::cout << "EcalBarrelTopology::down() not yet implemented" << std::endl;
90  std::vector<DetId> vNeighborsDetId;
91  return vNeighborsDetId;
92  }
std::vector<DetId> EcalBarrelTopology::east ( const DetId id) const
inlineoverridevirtual

Get the neighbors of the given cell in east direction

Implements CaloSubdetectorTopology.

Definition at line 57 of file EcalBarrelTopology.h.

References goEast(), and DetId::rawId().

58  {
59  EBDetId nextId=goEast(id);
60  std::vector<DetId> vNeighborsDetId;
61  if (! (nextId==EBDetId(0)))
62  vNeighborsDetId.emplace_back(DetId(nextId.rawId()));
63  return vNeighborsDetId;
64  }
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
DetId goEast(const DetId &id) const override
move the Topology east (negative ieta)
Definition: DetId.h:18
DetId EcalBarrelTopology::goEast ( const DetId id) const
inlineoverridevirtual

move the Topology east (negative ieta)

Reimplemented from CaloSubdetectorTopology.

Definition at line 54 of file EcalBarrelTopology.h.

References decrementIeta().

Referenced by east().

54  {
55  return decrementIeta(EBDetId(id));
56  }
EBDetId decrementIeta(const EBDetId &) const
move the nagivator to smaller ieta (more negative z) (stops at end of barrel and returns null) ...
DetId EcalBarrelTopology::goNorth ( const DetId id) const
inlineoverridevirtual

move the Topology north (increment iphi)

Reimplemented from CaloSubdetectorTopology.

Definition at line 28 of file EcalBarrelTopology.h.

References incrementIphi().

Referenced by north().

28  {
29  return incrementIphi(EBDetId(id));
30  }
EBDetId incrementIphi(const EBDetId &) const
move the nagivator to larger iphi (wraps around the barrel)
DetId EcalBarrelTopology::goSouth ( const DetId id) const
inlineoverridevirtual

move the Topology south (decrement iphi)

Reimplemented from CaloSubdetectorTopology.

Definition at line 41 of file EcalBarrelTopology.h.

References decrementIphi().

Referenced by south().

41  {
42  return decrementIphi(EBDetId(id));
43  }
EBDetId decrementIphi(const EBDetId &) const
move the nagivator to smaller iphi (wraps around the barrel)
DetId EcalBarrelTopology::goWest ( const DetId id) const
inlineoverridevirtual

move the Topology west (positive ieta)

Reimplemented from CaloSubdetectorTopology.

Definition at line 67 of file EcalBarrelTopology.h.

References incrementIeta().

Referenced by west().

67  {
68  return incrementIeta(EBDetId(id));
69  }
EBDetId incrementIeta(const EBDetId &) const
move the nagivator to larger ieta (more positive z) (stops at end of barrel and returns null) ...
EBDetId EcalBarrelTopology::incrementIeta ( const EBDetId id) const
private

move the nagivator to larger ieta (more positive z) (stops at end of barrel and returns null)

Definition at line 5 of file EcalBarrelTopology.cc.

References DetId::Ecal, EcalBarrel, and EBDetId::validDetId().

Referenced by down(), and goWest().

5  {
6  if (!(*theGeom_).getSubdetectorGeometry(DetId::Ecal,EcalBarrel)->present(id))
7  return EBDetId(0);
8 
9  EBDetId nextPoint;
10  if (id.ieta()==-1)
11  {
12  if (EBDetId::validDetId(1,id.iphi()))
13  nextPoint=EBDetId (1,id.iphi());
14  else
15  return EBDetId(0);
16  }
17  else
18  {
19  if (EBDetId::validDetId(id.ieta()+1,id.iphi()))
20  nextPoint=EBDetId(id.ieta()+1,id.iphi());
21  else
22  return EBDetId(0);
23  }
24  if ((*theGeom_).getSubdetectorGeometry(DetId::Ecal,EcalBarrel)->present(nextPoint))
25  return nextPoint;
26  else
27  return EBDetId(0);
28 }
static bool validDetId(int i, int j)
check if a valid index combination
Definition: EBDetId.h:124
EBDetId EcalBarrelTopology::incrementIphi ( const EBDetId id) const
private

move the nagivator to larger iphi (wraps around the barrel)

Definition at line 58 of file EcalBarrelTopology.cc.

References DetId::Ecal, EcalBarrel, EBDetId::MAX_IPHI, EBDetId::MIN_IPHI, and EBDetId::validDetId().

Referenced by down(), and goNorth().

58  {
59  if (!(*theGeom_).getSubdetectorGeometry(DetId::Ecal,EcalBarrel)->present(id))
60  return EBDetId(0);
61 
62  EBDetId nextPoint;
63 
64  if (id.iphi()==EBDetId::MAX_IPHI)
65  {
67  nextPoint=EBDetId(id.ieta(),EBDetId::MIN_IPHI);
68  else
69  return EBDetId(0);
70  }
71  else
72  {
73  if (EBDetId::validDetId(id.ieta(),id.iphi()+1))
74  nextPoint=EBDetId(id.ieta(),id.iphi()+1);
75  else
76  return EBDetId(0);
77  }
78 
79  if ((*theGeom_).getSubdetectorGeometry(DetId::Ecal,EcalBarrel)->present(nextPoint))
80  return nextPoint;
81  else
82  return EBDetId(0);
83 }
static const int MIN_IPHI
Definition: EBDetId.h:142
static bool validDetId(int i, int j)
check if a valid index combination
Definition: EBDetId.h:124
static const int MAX_IPHI
Definition: EBDetId.h:144
std::vector<DetId> EcalBarrelTopology::north ( const DetId id) const
inlineoverridevirtual

Get the neighbors of the given cell in north direction

Implements CaloSubdetectorTopology.

Definition at line 31 of file EcalBarrelTopology.h.

References goNorth(), and DetId::rawId().

32  {
33  EBDetId nextId=goNorth(id);
34  std::vector<DetId> vNeighborsDetId;
35  if (! (nextId==EBDetId(0)))
36  vNeighborsDetId.emplace_back(DetId(nextId.rawId()));
37  return vNeighborsDetId;
38  }
DetId goNorth(const DetId &id) const override
move the Topology north (increment iphi)
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
Definition: DetId.h:18
std::vector<DetId> EcalBarrelTopology::south ( const DetId id) const
inlineoverridevirtual

Get the neighbors of the given cell in south direction

Implements CaloSubdetectorTopology.

Definition at line 44 of file EcalBarrelTopology.h.

References goSouth(), and DetId::rawId().

45  {
46  EBDetId nextId=goSouth(id);
47  std::vector<DetId> vNeighborsDetId;
48  if (! (nextId==EBDetId(0)))
49  vNeighborsDetId.emplace_back(DetId(nextId.rawId()));
50  return vNeighborsDetId;
51  }
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
DetId goSouth(const DetId &id) const override
move the Topology south (decrement iphi)
Definition: DetId.h:18
std::vector<DetId> EcalBarrelTopology::up ( const DetId id) const
inlineoverridevirtual

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

Implements CaloSubdetectorTopology.

Definition at line 80 of file EcalBarrelTopology.h.

References gather_cfg::cout.

81  {
82  std::cout << "EcalBarrelTopology::up() not yet implemented" << std::endl;
83  std::vector<DetId> vNeighborsDetId;
84  return vNeighborsDetId;
85  }
std::vector<DetId> EcalBarrelTopology::west ( const DetId id) const
inlineoverridevirtual

Get the neighbors of the given cell in west direction

Implements CaloSubdetectorTopology.

Definition at line 70 of file EcalBarrelTopology.h.

References goWest(), and DetId::rawId().

71  {
72  EBDetId nextId=goWest(id);
73  std::vector<DetId> vNeighborsDetId;
74  if (! (nextId==EBDetId(0)))
75  vNeighborsDetId.emplace_back(DetId(nextId.rawId()));
76  return vNeighborsDetId;
77  }
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
DetId goWest(const DetId &id) const override
move the Topology west (positive ieta)
Definition: DetId.h:18

Member Data Documentation

edm::ESHandle<CaloGeometry> EcalBarrelTopology::theGeom_
private

Definition at line 108 of file EcalBarrelTopology.h.