/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/GEMGeometry/src/ME0Geometry.cc
72 строки
3 KB
Shahzad Malik Muzaffar
[GEOMETRY] Drop Geometry/CommonDetUnit package
28 май 2026, 13:09
28 май 2026, 13:09
bcab810
Код
Авторство
О чём код?
/** Implementation of the Model for ME0 Geometry * * \author M. Maggi - INFN Bari */ #include "Geometry/GEMGeometry/interface/ME0Geometry.h" #include "Geometry/CommonTopologies/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)); }