/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/RPCGeometry/src/RPCGeometry.cc
68 строк
2 KB
Shahzad Malik Muzaffar
[GEOMETRY] Drop Geometry/CommonDetUnit package
28 май 2026, 13:09
28 май 2026, 13:09
bcab810
Код
Авторство
О чём код?
/** Implementation of the Model for RPC Geometry * * \author M. Maggi - INFN Bari */ #include <Geometry/RPCGeometry/interface/RPCGeometry.h> #include <Geometry/CommonTopologies/interface/GeomDet.h> #include "FWCore/MessageLogger/interface/MessageLogger.h" RPCGeometry::RPCGeometry() {} RPCGeometry::~RPCGeometry() { // delete all the chamber associated to the geometry //for (std::vector<RPCChamber*>::const_iterator ich = allChambers.begin(); // ich != allChambers.end(); ++ich){ // delete (*ich); //} } const RPCGeometry::DetTypeContainer& RPCGeometry::detTypes() const { return theRollTypes; } const RPCGeometry::DetContainer& RPCGeometry::detUnits() const { return theRolls; } const RPCGeometry::DetContainer& RPCGeometry::dets() const { return theDets; } const RPCGeometry::DetIdContainer& RPCGeometry::detUnitIds() const { return theRollIds; } const RPCGeometry::DetIdContainer& RPCGeometry::detIds() const { return theDetIds; } const GeomDet* RPCGeometry::idToDetUnit(DetId id) const { return dynamic_cast<const GeomDet*>(idToDet(id)); } const GeomDet* RPCGeometry::idToDet(DetId id) const { mapIdToDet::const_iterator i = theMap.find(id); if (i != theMap.end()) return i->second; LogDebug("RPCGeometry") << "Invalid DetID: no GeomDet associated " << RPCDetId(id); GeomDet* geom = nullptr; return geom; } const std::vector<const RPCChamber*>& RPCGeometry::chambers() const { return allChambers; } const std::vector<const RPCRoll*>& RPCGeometry::rolls() const { return allRolls; } const RPCChamber* RPCGeometry::chamber(RPCDetId id) const { return dynamic_cast<const RPCChamber*>(idToDet(id.chamberId())); } const RPCRoll* RPCGeometry::roll(RPCDetId id) const { return dynamic_cast<const RPCRoll*>(idToDetUnit(id)); } void RPCGeometry::add(RPCRoll* roll) { theDets.emplace_back(roll); allRolls.emplace_back(roll); theRolls.emplace_back(roll); theRollIds.emplace_back(roll->geographicalId()); theDetIds.emplace_back(roll->geographicalId()); GeomDetType* _t = const_cast<GeomDetType*>(&roll->type()); theRollTypes.emplace_back(_t); theMap.insert(std::pair<DetId, GeomDetUnit*>(roll->geographicalId(), roll)); } void RPCGeometry::add(RPCChamber* chamber) { allChambers.emplace_back(chamber); theDets.emplace_back(chamber); theDetIds.emplace_back(chamber->geographicalId()); theMap.insert(std::pair<DetId, GeomDet*>(chamber->geographicalId(), chamber)); }