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
|
/** Implementation of the Model for ME0 Geometry
*
* \author M. Maggi - INFN Bari
*/
#include "Geometry/GEMGeometry/interface/ME0Geometry.h"
#include "Geometry/CommonDetUnit/interface/GeomDet.h"
ME0Geometry::ME0Geometry() {}
ME0Geometry::~ME0Geometry() {}
const ME0Geometry::DetTypeContainer& ME0Geometry::detTypes() const { return theEtaPartitionTypes; }
const ME0Geometry::DetContainer& ME0Geometry::detUnits() const { return theEtaPartitions; }
const ME0Geometry::DetContainer& ME0Geometry::dets() const { return theDets; }
const ME0Geometry::DetIdContainer& ME0Geometry::detUnitIds() const { return theEtaPartitionIds; }
const ME0Geometry::DetIdContainer& ME0Geometry::detIds() const { return theDetIds; }
const GeomDet* ME0Geometry::idToDetUnit(DetId id) const { return dynamic_cast<const GeomDet*>(idToDet(id)); }
const GeomDet* ME0Geometry::idToDet(DetId id) const {
mapIdToDet::const_iterator i = theMap.find(id);
return (i != theMap.end()) ? i->second : nullptr;
}
const std::vector<ME0Chamber const*>& ME0Geometry::chambers() const { return allChambers; }
const std::vector<ME0Layer const*>& ME0Geometry::layers() const { return allLayers; }
const std::vector<ME0EtaPartition const*>& ME0Geometry::etaPartitions() const { return allEtaPartitions; }
const ME0EtaPartition* ME0Geometry::etaPartition(ME0DetId id) const {
return dynamic_cast<const ME0EtaPartition*>(idToDetUnit(id));
}
const ME0Layer* ME0Geometry::layer(ME0DetId id) const {
return dynamic_cast<const ME0Layer*>(idToDetUnit(id.layerId()));
}
const ME0Chamber* ME0Geometry::chamber(ME0DetId id) const {
return dynamic_cast<const ME0Chamber*>(idToDetUnit(id.chamberId()));
}
void ME0Geometry::add(ME0EtaPartition* etaPartition) {
allEtaPartitions.emplace_back(etaPartition);
theEtaPartitions.emplace_back(etaPartition);
theEtaPartitionIds.emplace_back(etaPartition->geographicalId());
theDets.emplace_back(etaPartition);
theDetIds.emplace_back(etaPartition->geographicalId());
theEtaPartitionTypes.emplace_back(&etaPartition->type());
theMap.insert(std::pair<DetId, GeomDet*>(etaPartition->geographicalId(), etaPartition));
}
void ME0Geometry::add(ME0Layer* layer) {
allLayers.emplace_back(layer);
// theLayers.emplace_back(layer); ??? what would this be fore?
// theLayerIds.emplace_back(layer->geographicalId()); ??? what would this be fore?
theDets.emplace_back(layer);
theDetIds.emplace_back(layer->geographicalId());
theEtaPartitionTypes.emplace_back(&layer->type());
theMap.insert(std::pair<DetId, GeomDet*>(layer->geographicalId(), layer));
}
void ME0Geometry::add(ME0Chamber* chamber) {
allChambers.emplace_back(chamber);
theDets.emplace_back(chamber);
theDetIds.emplace_back(chamber->geographicalId());
theMap.insert(std::pair<DetId, GeomDet*>(chamber->geographicalId(), chamber));
}
|