CMS 3D CMS Logo

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_, createfilelist::int, kHGeomHalf_, kHGhalf_, kSizeForDenseIndexing, nEtaZ_, nPhi_, FastTimeDDDConstants::numberEtaZ(), FastTimeDDDConstants::numberPhi(), subdet_, and type_.

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

virtual destructor

Definition at line 19 of file FastTimeTopology.h.

19 { }

Member Function Documentation

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

move the nagivator along x, y

Definition at line 110 of file FastTimeTopology.cc.

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

Referenced by detectorType(), and offsetBy().

111  {
112 
114  int iEtaZ = id_.iEtaZ + nrStepsX;
115  int iPhi = id_.iPhi + nrStepsY;
116  if (iPhi < 1) iPhi += nPhi_;
117  else if (iPhi > nPhi_) iPhi -= nPhi_;
118  if (id_.iType == 1 && iEtaZ < 0) {
119  iEtaZ = -iEtaZ;
120  id_.zside = -id_.zside;
121  }
122  id_.iPhi = iPhi;
123  id_.iEtaZ = iEtaZ;
124  DetId nextPoint = encode(id_);
125  if (valid(nextPoint)) return nextPoint;
126  else return DetId(0);
127 }
DecodedDetId decode(const DetId &id) const
Definition: DetId.h:18
bool valid(const DetId &id) const override
Is this a valid cell id.
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 32 of file FastTimeTopology.cc.

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

Referenced by down().

32  {
33 
34  if (validHashIndex(hi)) {
36  id_.iType = type_;
37  id_.zside = ((int)(hi)<kHGhalf_ ? -1 : 1);
38  int di = ((int)(hi)%kHGhalf_);
39  int iPhi = (di%nPhi_);
40  id_.iPhi = iPhi+1;
41  id_.iEtaZ = (((di-iPhi)/nPhi_)+1);
42  return encode(id_);
43  } else {
44  return DetId(0);
45  }
46 }
Definition: DetId.h:18
DetId encode(const DecodedDetId &id_) const
bool validHashIndex(uint32_t ix) const
int FastTimeTopology::detectorType ( ) const
inline

Definition at line 107 of file FastTimeTopology.h.

References changeXY(), and type_.

Referenced by FastTimeGeometryLoader::build().

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

Definition at line 48 of file FastTimeTopology.cc.

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

Referenced by down(), and FastTimeGeometry::indexFor().

48  {
49 
51  uint32_t idx = (uint32_t)((id_.zside > 0) ? kHGeomHalf_ : 0);
52  return idx;
53 }
DecodedDetId decode(const DetId &id) const
uint32_t FastTimeTopology::detId2denseId ( const DetId id) const
overridevirtual
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 74 of file FastTimeTopology.h.

References denseId2detId(), detId2denseGeomId(), detId2denseId(), and valid().

74  {
75  std::vector<DetId> vNeighborsDetId;
76  return vNeighborsDetId;
77  }
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 49 of file FastTimeTopology.h.

References goEast().

49  {
50  DetId nextId=goEast(id);
51  std::vector<DetId> vNeighborsDetId;
52  if (! (nextId==DetId(0)))
53  vNeighborsDetId.emplace_back(nextId);
54  return vNeighborsDetId;
55  }
DetId goEast(const DetId &id) const override
move the Topology east (positive ix)
Definition: DetId.h:18
DetId FastTimeTopology::encode ( const DecodedDetId id_) const
FastTimeTopology::DecodedDetId FastTimeTopology::geomDenseId2decId ( const uint32_t &  hi) const
DetId FastTimeTopology::goEast ( const DetId id) const
inlineoverridevirtual

move the Topology east (positive ix)

Reimplemented from CaloSubdetectorTopology.

Definition at line 46 of file FastTimeTopology.h.

References offsetBy().

Referenced by east().

46  {
47  return offsetBy(id,+1,0);
48  }
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 22 of file FastTimeTopology.h.

References offsetBy().

Referenced by north().

22  {
23  return offsetBy(id,0,+1);
24  }
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 34 of file FastTimeTopology.h.

References offsetBy().

Referenced by south().

34  {
35  return offsetBy(id,0,-1);
36  }
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 58 of file FastTimeTopology.h.

References offsetBy().

Referenced by west().

58  {
59  return offsetBy(id,-1,0);
60  }
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 25 of file FastTimeTopology.h.

References goNorth().

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

Definition at line 90 of file FastTimeTopology.h.

References kHGeomHalf_.

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

Definition at line 62 of file FastTimeTopology.cc.

References changeXY(), DetId::det(), DetId::Forward, triggerObjects_cff::id, createfilelist::int, subdet_, DetId::subdetId(), and valid().

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

63  {
64 
65  if (startId.det() == DetId::Forward && startId.subdetId() == (int)(subdet_)){
66  DetId id = changeXY(startId,nrStepsX,nrStepsY);
67  if (valid(id)) return id;
68  }
69  return DetId(0);
70 }
ForwardSubdetector subdet_
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:41
Definition: DetId.h:18
bool valid(const DetId &id) const override
Is this a valid cell id.
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:39
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 37 of file FastTimeTopology.h.

References goSouth().

37  {
38  DetId nextId= goSouth(id);
39  std::vector<DetId> vNeighborsDetId;
40  if (! (nextId==DetId(0)))
41  vNeighborsDetId.emplace_back(nextId);
42  return vNeighborsDetId;
43  }
Definition: DetId.h:18
DetId goSouth(const DetId &id) const override
move the Topology south (decrement iy)
ForwardSubdetector FastTimeTopology::subDetector ( ) const
inline

Definition at line 106 of file FastTimeTopology.h.

References subdet_.

Referenced by FastTimeGeometryLoader::build().

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

Definition at line 72 of file FastTimeTopology.cc.

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

Referenced by dddConstants().

72  {
73 
74  if (startId.det() == DetId::Forward && startId.subdetId() == (int)(subdet_)){
76  id_.zside =-id_.zside;
77  DetId id = encode(id_);
78  if (valid(id)) return id;
79  }
80  return DetId(0);
81 }
DecodedDetId decode(const DetId &id) const
ForwardSubdetector subdet_
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:41
Definition: DetId.h:18
bool valid(const DetId &id) const override
Is this a valid cell id.
DetId encode(const DecodedDetId &id_) const
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:39
unsigned int FastTimeTopology::totalGeomModules ( ) const
inline
unsigned int FastTimeTopology::totalModules ( ) const
inline

Definition at line 88 of file FastTimeTopology.h.

References kSizeForDenseIndexing.

88 {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 69 of file FastTimeTopology.h.

69  {
70  std::vector<DetId> vNeighborsDetId;
71  return vNeighborsDetId;
72  }
bool FastTimeTopology::valid ( const DetId id) const
overridevirtual
bool FastTimeTopology::validHashIndex ( uint32_t  ix) const
inline

Definition at line 86 of file FastTimeTopology.h.

References kSizeForDenseIndexing.

Referenced by denseId2detId().

86 {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 61 of file FastTimeTopology.h.

References goWest().

61  {
62  DetId nextId=goWest(id);
63  std::vector<DetId> vNeighborsDetId;
64  if (! (nextId==DetId(0)))
65  vNeighborsDetId.emplace_back(nextId);
66  return vNeighborsDetId;
67  }
DetId goWest(const DetId &id) const override
move the Topology west (negative ix)
Definition: DetId.h:18

Member Data Documentation

const FastTimeDDDConstants& FastTimeTopology::hdcons_
private

Definition at line 113 of file FastTimeTopology.h.

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

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

Definition at line 115 of file FastTimeTopology.h.

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

unsigned int FastTimeTopology::kSizeForDenseIndexing
private

Definition at line 116 of file FastTimeTopology.h.

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

int FastTimeTopology::nEtaZ_
private

Definition at line 115 of file FastTimeTopology.h.

Referenced by FastTimeTopology().

int FastTimeTopology::nPhi_
private

Definition at line 115 of file FastTimeTopology.h.

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

ForwardSubdetector FastTimeTopology::subdet_
private

Definition at line 114 of file FastTimeTopology.h.

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

int FastTimeTopology::type_
private