1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/** Implementation of the Model for GEM Geometry
*
* \author M. Maggi - INFN Bari
*/
#include "Geometry/GEMGeometry/interface/GEMGeometry.h"
#include "Geometry/CommonDetUnit/interface/GeomDet.h"
GEMGeometry::GEMGeometry() {}
GEMGeometry::~GEMGeometry() {}
const GEMGeometry::DetTypeContainer& GEMGeometry::detTypes() const { return theEtaPartitionTypes; }
const GEMGeometry::DetContainer& GEMGeometry::detUnits() const { return theEtaPartitions; }
const GEMGeometry::DetContainer& GEMGeometry::dets() const { return theDets; }
const GEMGeometry::DetIdContainer& GEMGeometry::detUnitIds() const { return theEtaPartitionIds; }
const GEMGeometry::DetIdContainer& GEMGeometry::detIds() const { return theDetIds; }
const GeomDet* GEMGeometry::idToDetUnit(DetId id) const { return dynamic_cast<const GeomDet*>(idToDet(id)); }
const GeomDet* GEMGeometry::idToDet(DetId id) const {
mapIdToDet::const_iterator i = theMap.find(GEMDetId(id).rawId());
return (i != theMap.end()) ? i->second : nullptr;
}
const std::vector<const GEMRegion*>& GEMGeometry::regions() const { return allRegions; }
const std::vector<const GEMStation*>& GEMGeometry::stations() const { return allStations; }
const std::vector<const GEMRing*>& GEMGeometry::rings() const { return allRings; }
const std::vector<const GEMSuperChamber*>& GEMGeometry::superChambers() const { return allSuperChambers; }
const std::vector<const GEMChamber*>& GEMGeometry::chambers() const { return allChambers; }
const std::vector<const GEMEtaPartition*>& GEMGeometry::etaPartitions() const { return allEtaPartitions; }
const GEMRegion* GEMGeometry::region(int re) const {
for (auto region : allRegions) {
if (re != region->region())
continue;
return region;
}
return nullptr;
}
const GEMStation* GEMGeometry::station(int re, int st) const {
for (auto station : allStations) {
if (re != station->region() || st != station->station())
continue;
return station;
}
return nullptr;
}
const GEMRing* GEMGeometry::ring(int re, int st, int ri) const {
for (auto ring : allRings) {
if (re != ring->region() || st != ring->station() || ri != ring->ring())
continue;
return ring;
}
return nullptr;
}
const GEMSuperChamber* GEMGeometry::superChamber(GEMDetId id) const {
return dynamic_cast<const GEMSuperChamber*>(idToDet(id.superChamberId()));
}
const GEMChamber* GEMGeometry::chamber(GEMDetId id) const {
return dynamic_cast<const GEMChamber*>(idToDet(id.chamberId()));
}
const GEMEtaPartition* GEMGeometry::etaPartition(GEMDetId id) const {
return dynamic_cast<const GEMEtaPartition*>(idToDetUnit(id));
}
void GEMGeometry::add(const GEMRegion* region) { allRegions.emplace_back(region); }
void GEMGeometry::add(const GEMStation* station) { allStations.emplace_back(station); }
void GEMGeometry::add(const GEMRing* ring) { allRings.emplace_back(ring); }
void GEMGeometry::add(const GEMSuperChamber* superChamber) {
allSuperChambers.emplace_back(superChamber);
theDets.emplace_back(superChamber);
theDetIds.emplace_back(superChamber->geographicalId());
theMap.insert(std::make_pair((superChamber->geographicalId()).rawId(), superChamber));
}
void GEMGeometry::add(const GEMEtaPartition* etaPartition) {
theDets.emplace_back(etaPartition);
allEtaPartitions.emplace_back(etaPartition);
theEtaPartitions.emplace_back(etaPartition);
theEtaPartitionIds.emplace_back(etaPartition->geographicalId());
theDetIds.emplace_back(etaPartition->geographicalId());
theEtaPartitionTypes.emplace_back(&etaPartition->type());
theMap.insert(std::make_pair((etaPartition->geographicalId()).rawId(), etaPartition));
}
void GEMGeometry::add(const GEMChamber* chamber) {
allChambers.emplace_back(chamber);
theDets.emplace_back(chamber);
theDetIds.emplace_back(chamber->geographicalId());
theMap.insert(std::make_pair((chamber->geographicalId()).rawId(), chamber));
}
bool GEMGeometry::hasME0() const { return station(1, 0) != nullptr and station(-1, 0) != nullptr; }
bool GEMGeometry::hasGE11() const { return station(1, 1) != nullptr and station(-1, 1) != nullptr; }
bool GEMGeometry::hasGE21() const { return station(1, 2) != nullptr and station(-1, 2) != nullptr; }
|