CMS 3D CMS Logo

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

#include <FastTimeTopology.h>

Inheritance diagram for FastTimeTopology:
CaloSubdetectorTopology

Classes

struct  DecodedDetId
 

Public Member Functions

const FastTimeDDDConstantsdddConstants () const
 
DecodedDetId decode (const DetId &id) const
 
DetId denseId2detId (uint32_t denseId) const override
 
int detectorType () const
 
virtual uint32_t detId2denseGeomId (const DetId &id) const
 
uint32_t detId2denseId (const DetId &id) const override
 Dense indexing. More...
 
std::vector< DetIddown (const DetId &id) const override
 
std::vector< DetIdeast (const DetId &id) const override
 
DetId encode (const DecodedDetId &id_) const
 
 FastTimeTopology (const FastTimeDDDConstants &hdcons, ForwardSubdetector subdet, int type)
 create a new Topology More...
 
DecodedDetId geomDenseId2decId (const uint32_t &hi) const
 
DetId goEast (const DetId &id) const override
 move the Topology east (positive ix) More...
 
DetId goNorth (const DetId &id) const override
 move the Topology north (increment iy) More...
 
DetId goSouth (const DetId &id) const override
 move the Topology south (decrement iy) More...
 
DetId goWest (const DetId &id) const override
 move the Topology west (negative ix) More...
 
std::vector< DetIdnorth (const DetId &id) const override
 
int numberCells () const
 
DetId offsetBy (const DetId startId, int nrStepsX, int nrStepsY) const
 
std::vector< DetIdsouth (const DetId &id) const override
 
ForwardSubdetector subDetector () const
 
DetId switchZSide (const DetId startId) const
 
unsigned int totalGeomModules () const
 
unsigned int totalModules () const
 
std::vector< DetIdup (const DetId &id) const override
 
bool valid (const DetId &id) const override
 Is this a valid cell id. More...
 
bool validHashIndex (uint32_t ix) const
 
std::vector< DetIdwest (const DetId &id) const override
 
 ~FastTimeTopology () 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 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 ~CaloSubdetectorTopology ()
 virtual destructor More...
 

Private Member Functions

DetId changeXY (const DetId &id, int nrStepsX, int nrStepsY) const
 move the nagivator along x, y More...
 

Private Attributes

const FastTimeDDDConstantshdcons_
 
int kHGeomHalf_
 
int kHGhalf_
 
unsigned int kSizeForDenseIndexing
 
int nEtaZ_
 
int nPhi_
 
ForwardSubdetector subdet_
 
int type_
 

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 11 of file FastTimeTopology.h.

Constructor & Destructor Documentation

FastTimeTopology::FastTimeTopology ( const FastTimeDDDConstants hdcons,
ForwardSubdetector  subdet,
int  type 
)

create a new Topology

Definition at line 6 of file FastTimeTopology.cc.

References gather_cfg::cout, hdcons_, kHGeomHalf_, kHGhalf_, kSizeForDenseIndexing, nEtaZ_, nPhi_, FastTimeDDDConstants::numberEtaZ(), FastTimeDDDConstants::numberPhi(), subdet_, and type_.

7  : hdcons_(hdcons), subdet_(sub), type_(type) {
10  kHGhalf_ = nEtaZ_ * nPhi_;
11  kHGeomHalf_ = 1;
12  kSizeForDenseIndexing = (unsigned int)(2 * kHGhalf_);
13 #ifdef EDM_ML_DEBUG
14  std::cout << "FastTimeTopology initialized for subDetetcor " << subdet_ << " Type " << type_ << " with " << nEtaZ_
15  << " cells along Z|Eta and " << nPhi_ << " cells along phi: total channels " << kSizeForDenseIndexing << ":"
16  << (2 * kHGeomHalf_) << std::endl;
17 #endif
18 }
ForwardSubdetector subdet_
int numberEtaZ(int type) const
int numberPhi(int type) const
unsigned int kSizeForDenseIndexing
const FastTimeDDDConstants & hdcons_
tuple cout
Definition: gather_cfg.py:144
FastTimeTopology::~FastTimeTopology ( )
inlineoverride

virtual destructor

Definition at line 17 of file FastTimeTopology.h.

17 {}

Member Function Documentation

DetId FastTimeTopology::changeXY ( const DetId id,
int  nrStepsX,
int  nrStepsY 
) const
private

move the nagivator along x, y

Definition at line 97 of file FastTimeTopology.cc.

References decode(), encode(), FastTimeTopology::DecodedDetId::iEtaZ, FastTimeTopology::DecodedDetId::iPhi, FastTimeTopology::DecodedDetId::iType, nPhi_, valid(), and FastTimeTopology::DecodedDetId::zside.

Referenced by offsetBy().

97  {
99  int iEtaZ = id_.iEtaZ + nrStepsX;
100  int iPhi = id_.iPhi + nrStepsY;
101  if (iPhi < 1)
102  iPhi += nPhi_;
103  else if (iPhi > nPhi_)
104  iPhi -= nPhi_;
105  if (id_.iType == 1 && iEtaZ < 0) {
106  iEtaZ = -iEtaZ;
107  id_.zside = -id_.zside;
108  }
109  id_.iPhi = iPhi;
110  id_.iEtaZ = iEtaZ;
111  DetId nextPoint = encode(id_);
112  if (valid(nextPoint))
113  return nextPoint;
114  else
115  return DetId(0);
116 }
DecodedDetId decode(const DetId &id) const
bool valid(const DetId &id) const override
Is this a valid cell id.
Definition: DetId.h:17
DetId encode(const DecodedDetId &id_) const
const FastTimeDDDConstants& FastTimeTopology::dddConstants ( ) const
inline
FastTimeTopology::DecodedDetId FastTimeTopology::decode ( const DetId id) const
DetId FastTimeTopology::denseId2detId ( uint32_t  denseId) const
override

Definition at line 26 of file FastTimeTopology.cc.

References encode(), FastTimeTopology::DecodedDetId::iEtaZ, FastTimeTopology::DecodedDetId::iPhi, FastTimeTopology::DecodedDetId::iType, kHGhalf_, nPhi_, type_, validHashIndex(), and FastTimeTopology::DecodedDetId::zside.

26  {
27  if (validHashIndex(hi)) {
29  id_.iType = type_;
30  id_.zside = ((int)(hi) < kHGhalf_ ? -1 : 1);
31  int di = ((int)(hi) % kHGhalf_);
32  int iPhi = (di % nPhi_);
33  id_.iPhi = iPhi + 1;
34  id_.iEtaZ = (((di - iPhi) / nPhi_) + 1);
35  return encode(id_);
36  } else {
37  return DetId(0);
38  }
39 }
Definition: DetId.h:17
DetId encode(const DecodedDetId &id_) const
bool validHashIndex(uint32_t ix) const
int FastTimeTopology::detectorType ( ) const
inline

Definition at line 97 of file FastTimeTopology.h.

References type_.

Referenced by FastTimeGeometryLoader::build().

97 { return type_; }
uint32_t FastTimeTopology::detId2denseGeomId ( const DetId id) const
virtual

Definition at line 41 of file FastTimeTopology.cc.

References decode(), kHGeomHalf_, and FastTimeTopology::DecodedDetId::zside.

Referenced by FastTimeGeometry::indexFor().

41  {
43  uint32_t idx = (uint32_t)((id_.zside > 0) ? kHGeomHalf_ : 0);
44  return idx;
45 }
DecodedDetId decode(const DetId &id) const
uint32_t FastTimeTopology::detId2denseId ( const DetId id) const
overridevirtual

Dense indexing.

Reimplemented from CaloSubdetectorTopology.

Definition at line 20 of file FastTimeTopology.cc.

References decode(), FastTimeTopology::DecodedDetId::iEtaZ, FastTimeTopology::DecodedDetId::iPhi, kHGhalf_, nPhi_, and FastTimeTopology::DecodedDetId::zside.

20  {
22  uint32_t idx = (uint32_t)(((id_.zside > 0) ? kHGhalf_ : 0) + ((id_.iEtaZ - 1) * nPhi_ + id_.iPhi - 1));
23  return idx;
24 }
DecodedDetId decode(const DetId &id) const
std::vector<DetId> FastTimeTopology::down ( const DetId id) const
inlineoverridevirtual

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

Implements CaloSubdetectorTopology.

Definition at line 64 of file FastTimeTopology.h.

64  {
65  std::vector<DetId> vNeighborsDetId;
66  return vNeighborsDetId;
67  }
std::vector<DetId> FastTimeTopology::east ( const DetId id) const
inlineoverridevirtual

Get the neighbors of the given cell in east direction

Implements CaloSubdetectorTopology.

Definition at line 41 of file FastTimeTopology.h.

References goEast().

41  {
42  DetId nextId = goEast(id);
43  std::vector<DetId> vNeighborsDetId;
44  if (!(nextId == DetId(0)))
45  vNeighborsDetId.emplace_back(nextId);
46  return vNeighborsDetId;
47  }
DetId goEast(const DetId &id) const override
move the Topology east (positive ix)
Definition: DetId.h:17
DetId FastTimeTopology::encode ( const DecodedDetId id_) const
FastTimeTopology::DecodedDetId FastTimeTopology::geomDenseId2decId ( const uint32_t &  hi) const

Definition at line 73 of file FastTimeTopology.cc.

References kHGeomHalf_, totalGeomModules(), and FastTimeTopology::DecodedDetId::zside.

73  {
75  if (hi < totalGeomModules()) {
76  id_.zside = ((int)(hi) < kHGeomHalf_ ? -1 : 1);
77  }
78  return id_;
79 }
unsigned int totalGeomModules() const
DetId FastTimeTopology::goEast ( const DetId id) const
inlineoverridevirtual

move the Topology east (positive ix)

Reimplemented from CaloSubdetectorTopology.

Definition at line 40 of file FastTimeTopology.h.

References offsetBy().

Referenced by east().

40 { return offsetBy(id, +1, 0); }
DetId offsetBy(const DetId startId, int nrStepsX, int nrStepsY) const
DetId FastTimeTopology::goNorth ( const DetId id) const
inlineoverridevirtual

move the Topology north (increment iy)

Reimplemented from CaloSubdetectorTopology.

Definition at line 20 of file FastTimeTopology.h.

References offsetBy().

Referenced by north().

20 { return offsetBy(id, 0, +1); }
DetId offsetBy(const DetId startId, int nrStepsX, int nrStepsY) const
DetId FastTimeTopology::goSouth ( const DetId id) const
inlineoverridevirtual

move the Topology south (decrement iy)

Reimplemented from CaloSubdetectorTopology.

Definition at line 30 of file FastTimeTopology.h.

References offsetBy().

Referenced by south().

30 { return offsetBy(id, 0, -1); }
DetId offsetBy(const DetId startId, int nrStepsX, int nrStepsY) const
DetId FastTimeTopology::goWest ( const DetId id) const
inlineoverridevirtual

move the Topology west (negative ix)

Reimplemented from CaloSubdetectorTopology.

Definition at line 50 of file FastTimeTopology.h.

References offsetBy().

Referenced by west().

50 { return offsetBy(id, -1, 0); }
DetId offsetBy(const DetId startId, int nrStepsX, int nrStepsY) const
std::vector<DetId> FastTimeTopology::north ( const DetId id) const
inlineoverridevirtual

Get the neighbors of the given cell in north direction

Implements CaloSubdetectorTopology.

Definition at line 21 of file FastTimeTopology.h.

References goNorth().

21  {
22  DetId nextId = goNorth(id);
23  std::vector<DetId> vNeighborsDetId;
24  if (!(nextId == DetId(0)))
25  vNeighborsDetId.emplace_back(nextId);
26  return vNeighborsDetId;
27  }
DetId goNorth(const DetId &id) const override
move the Topology north (increment iy)
Definition: DetId.h:17
int FastTimeTopology::numberCells ( ) const
inline

Definition at line 80 of file FastTimeTopology.h.

References kHGeomHalf_.

80 { return kHGeomHalf_; }
DetId FastTimeTopology::offsetBy ( const DetId  startId,
int  nrStepsX,
int  nrStepsY 
) const

Definition at line 53 of file FastTimeTopology.cc.

References changeXY(), DetId::det(), DetId::Forward, gpuClustering::id, subdet_, DetId::subdetId(), and valid().

Referenced by goEast(), goNorth(), goSouth(), and goWest().

53  {
54  if (startId.det() == DetId::Forward && startId.subdetId() == (int)(subdet_)) {
55  DetId id = changeXY(startId, nrStepsX, nrStepsY);
56  if (valid(id))
57  return id;
58  }
59  return DetId(0);
60 }
uint16_t *__restrict__ id
ForwardSubdetector subdet_
bool valid(const DetId &id) const override
Is this a valid cell id.
DetId changeXY(const DetId &id, int nrStepsX, int nrStepsY) const
move the nagivator along x, y
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
Definition: DetId.h:17
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46
std::vector<DetId> FastTimeTopology::south ( const DetId id) const
inlineoverridevirtual

Get the neighbors of the given cell in south direction

Implements CaloSubdetectorTopology.

Definition at line 31 of file FastTimeTopology.h.

References goSouth().

31  {
32  DetId nextId = goSouth(id);
33  std::vector<DetId> vNeighborsDetId;
34  if (!(nextId == DetId(0)))
35  vNeighborsDetId.emplace_back(nextId);
36  return vNeighborsDetId;
37  }
DetId goSouth(const DetId &id) const override
move the Topology south (decrement iy)
Definition: DetId.h:17
ForwardSubdetector FastTimeTopology::subDetector ( ) const
inline

Definition at line 96 of file FastTimeTopology.h.

References subdet_.

Referenced by FastTimeGeometryLoader::build().

96 { return subdet_; }
ForwardSubdetector subdet_
DetId FastTimeTopology::switchZSide ( const DetId  startId) const

Definition at line 62 of file FastTimeTopology.cc.

References decode(), DetId::det(), encode(), DetId::Forward, gpuClustering::id, subdet_, DetId::subdetId(), valid(), and FastTimeTopology::DecodedDetId::zside.

62  {
63  if (startId.det() == DetId::Forward && startId.subdetId() == (int)(subdet_)) {
65  id_.zside = -id_.zside;
66  DetId id = encode(id_);
67  if (valid(id))
68  return id;
69  }
70  return DetId(0);
71 }
DecodedDetId decode(const DetId &id) const
uint16_t *__restrict__ id
ForwardSubdetector subdet_
bool valid(const DetId &id) const override
Is this a valid cell id.
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
Definition: DetId.h:17
DetId encode(const DecodedDetId &id_) const
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46
unsigned int FastTimeTopology::totalGeomModules ( ) const
inline
unsigned int FastTimeTopology::totalModules ( ) const
inline

Definition at line 78 of file FastTimeTopology.h.

References kSizeForDenseIndexing.

78 { return kSizeForDenseIndexing; }
unsigned int kSizeForDenseIndexing
std::vector<DetId> FastTimeTopology::up ( const DetId id) const
inlineoverridevirtual

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

Implements CaloSubdetectorTopology.

Definition at line 59 of file FastTimeTopology.h.

59  {
60  std::vector<DetId> vNeighborsDetId;
61  return vNeighborsDetId;
62  }
bool FastTimeTopology::valid ( const DetId id) const
overridevirtual

Is this a valid cell id.

Reimplemented from CaloSubdetectorTopology.

Definition at line 47 of file FastTimeTopology.cc.

References decode(), hdcons_, FastTimeTopology::DecodedDetId::iEtaZ, FastTimeTopology::DecodedDetId::iPhi, FastTimeDDDConstants::isValidXY(), and FastTimeTopology::DecodedDetId::iType.

Referenced by changeXY(), offsetBy(), and switchZSide().

47  {
49  bool flag = hdcons_.isValidXY(id_.iType, id_.iEtaZ, id_.iPhi);
50  return flag;
51 }
DecodedDetId decode(const DetId &id) const
bool isValidXY(int type, int izeta, int iphi) const
const FastTimeDDDConstants & hdcons_
bool FastTimeTopology::validHashIndex ( uint32_t  ix) const
inline

Definition at line 76 of file FastTimeTopology.h.

References kSizeForDenseIndexing.

Referenced by denseId2detId().

76 { return (ix < kSizeForDenseIndexing); }
unsigned int kSizeForDenseIndexing
std::vector<DetId> FastTimeTopology::west ( const DetId id) const
inlineoverridevirtual

Get the neighbors of the given cell in west direction

Implements CaloSubdetectorTopology.

Definition at line 51 of file FastTimeTopology.h.

References goWest().

51  {
52  DetId nextId = goWest(id);
53  std::vector<DetId> vNeighborsDetId;
54  if (!(nextId == DetId(0)))
55  vNeighborsDetId.emplace_back(nextId);
56  return vNeighborsDetId;
57  }
DetId goWest(const DetId &id) const override
move the Topology west (negative ix)
Definition: DetId.h:17

Member Data Documentation

const FastTimeDDDConstants& FastTimeTopology::hdcons_
private

Definition at line 103 of file FastTimeTopology.h.

Referenced by dddConstants(), FastTimeTopology(), and valid().

int FastTimeTopology::kHGeomHalf_
private
int FastTimeTopology::kHGhalf_
private

Definition at line 105 of file FastTimeTopology.h.

Referenced by denseId2detId(), detId2denseId(), and FastTimeTopology().

unsigned int FastTimeTopology::kSizeForDenseIndexing
private

Definition at line 106 of file FastTimeTopology.h.

Referenced by FastTimeTopology(), totalModules(), and validHashIndex().

int FastTimeTopology::nEtaZ_
private

Definition at line 105 of file FastTimeTopology.h.

Referenced by FastTimeTopology().

int FastTimeTopology::nPhi_
private

Definition at line 105 of file FastTimeTopology.h.

Referenced by changeXY(), denseId2detId(), detId2denseId(), and FastTimeTopology().

ForwardSubdetector FastTimeTopology::subdet_
private

Definition at line 104 of file FastTimeTopology.h.

Referenced by FastTimeTopology(), offsetBy(), subDetector(), and switchZSide().

int FastTimeTopology::type_
private