CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
EcalEndcapHardcodedTopology.h
Go to the documentation of this file.
1 #ifndef GEOMETRY_CALOTOPOLOGY_ECALENDCAPHARDCODEDTOPOLOGY_H
2 #define GEOMETRY_CALOTOPOLOGY_ECALENDCAPHARDCODEDTOPOLOGY_H 1
3 
4 #include <vector>
5 #include <iostream>
8 
10 public:
13 
15 
17  DetId goNorth(const DetId& id) const override { return incrementIy(EEDetId(id)); }
18  std::vector<DetId> north(const DetId& id) const override {
19  EEDetId nextId = goNorth(id);
20  std::vector<DetId> vNeighborsDetId;
21  if (!(nextId == EEDetId(0)))
22  vNeighborsDetId.emplace_back(DetId(nextId.rawId()));
23  return vNeighborsDetId;
24  }
25 
27  DetId goSouth(const DetId& id) const override { return decrementIy(EEDetId(id)); }
28  std::vector<DetId> south(const DetId& id) const override {
29  EEDetId nextId = goSouth(id);
30  std::vector<DetId> vNeighborsDetId;
31  if (!(nextId == EEDetId(0)))
32  vNeighborsDetId.emplace_back(DetId(nextId.rawId()));
33  return vNeighborsDetId;
34  }
35 
37  DetId goEast(const DetId& id) const override { return incrementIx(EEDetId(id)); }
38  std::vector<DetId> east(const DetId& id) const override {
39  EEDetId nextId = goEast(id);
40  std::vector<DetId> vNeighborsDetId;
41  if (!(nextId == EEDetId(0)))
42  vNeighborsDetId.emplace_back(DetId(nextId.rawId()));
43  return vNeighborsDetId;
44  }
45 
47  DetId goWest(const DetId& id) const override { return decrementIx(EEDetId(id)); }
48  std::vector<DetId> west(const DetId& id) const override {
49  EEDetId nextId = goWest(id);
50  std::vector<DetId> vNeighborsDetId;
51  if (!(nextId == EEDetId(0)))
52  vNeighborsDetId.emplace_back(DetId(nextId.rawId()));
53  return vNeighborsDetId;
54  }
55 
56  std::vector<DetId> up(const DetId& /*id*/) const override {
57  std::cout << "EcalEndcapHardcodedTopology::up() not yet implemented" << std::endl;
58  std::vector<DetId> vNeighborsDetId;
59  return vNeighborsDetId;
60  }
61 
62  std::vector<DetId> down(const DetId& /*id*/) const override {
63  std::cout << "EcalEndcapHardcodedTopology::down() not yet implemented" << std::endl;
64  std::vector<DetId> vNeighborsDetId;
65  return vNeighborsDetId;
66  }
67 
68 private:
70  EEDetId incrementIx(const EEDetId&) const;
71 
73  EEDetId decrementIx(const EEDetId&) const;
74 
76  EEDetId incrementIy(const EEDetId&) const;
77 
79  EEDetId decrementIy(const EEDetId&) const;
80 };
81 
82 #endif
EcalEndcapHardcodedTopology()
create a new Topology
DetId goWest(const DetId &id) const override
move the Topology west (negative ix)
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
DetId goSouth(const DetId &id) const override
move the Topology south (decrement iy)
EEDetId decrementIy(const EEDetId &) const
move the nagivator to smaller iy
std::vector< DetId > up(const DetId &) const override
DetId goEast(const DetId &id) const override
move the Topology east (positive ix)
DetId goNorth(const DetId &id) const override
move the Topology north (increment iy)
std::vector< DetId > west(const DetId &id) const override
EEDetId incrementIx(const EEDetId &) const
move the nagivator to larger ix
Definition: DetId.h:17
std::vector< DetId > down(const DetId &) const override
EEDetId decrementIx(const EEDetId &) const
move the nagivator to smaller ix
tuple cout
Definition: gather_cfg.py:144
std::vector< DetId > south(const DetId &id) const override
std::vector< DetId > east(const DetId &id) const override
std::vector< DetId > north(const DetId &id) const override
EEDetId incrementIy(const EEDetId &) const
move the nagivator to larger iy