#include <DTGeometry.h>
Public Member Functions | |
const DTChamber * | chamber (DTChamberId id) const |
Return a DTChamber given its id. | |
const std::vector< DTChamber * > & | chambers () const |
Return a vector of all Chamber. | |
virtual const DetIdContainer & | detIds () const |
Returm a vector of all GeomDet DetIds (including those of GeomDetUnits) | |
virtual const DetContainer & | dets () const |
Returm a vector of all GeomDet (including all GeomDetUnits) | |
virtual const DetTypeContainer & | detTypes () const |
Return a vector of all det types. | |
virtual const DetIdContainer & | detUnitIds () const |
Returm a vector of all GeomDetUnit DetIds. | |
virtual const DetUnitContainer & | detUnits () const |
Returm a vector of all GeomDetUnit. | |
DTGeometry () | |
Default constructor. | |
virtual const GeomDet * | idToDet (DetId) const |
virtual const GeomDetUnit * | idToDetUnit (DetId) const |
Return the pointer to the GeomDetUnit corresponding to a given DetId. | |
const DTLayer * | layer (DTLayerId id) const |
Return a layer given its id. | |
const std::vector< DTLayer * > & | layers () const |
Return a vector of all SuperLayer. | |
const DTSuperLayer * | superLayer (DTSuperLayerId id) const |
Return a DTSuperLayer given its id. | |
const std::vector < DTSuperLayer * > & | superLayers () const |
Return a vector of all SuperLayer. | |
virtual | ~DTGeometry () |
Destructor. | |
Private Types | |
typedef std::map< DetId, GeomDet * > | DTDetMap |
Private Member Functions | |
void | add (DTChamber *ch) |
Add a DTChamber to Geometry. | |
void | add (DTLayer *l) |
Add a DTLayer to Geometry. | |
void | add (DTSuperLayer *sl) |
Add a DTSuperLayer to Geometry. | |
Private Attributes | |
std::vector< DTChamber * > | theChambers |
DetIdContainer | theDetIds |
DetContainer | theDets |
DetTypeContainer | theDetTypes |
DetIdContainer | theDetUnitIds |
DetUnitContainer | theDetUnits |
std::vector< DTLayer * > | theLayers |
DTDetMap | theMap |
std::vector< DTSuperLayer * > | theSuperLayers |
Friends | |
class | DTGeometryBuilderFromCondDB |
class | DTGeometryBuilderFromDDD |
class | GeometryAligner |
The model of the geometry of Muon Drift Tube detectors.
The geometry owns the DTChamber s; these own their DTSuperLayer s which in turn own their DTLayer s.
Definition at line 27 of file DTGeometry.h.
typedef std::map<DetId, GeomDet*> DTGeometry::DTDetMap [private] |
Definition at line 29 of file DTGeometry.h.
DTGeometry::DTGeometry | ( | ) |
DTGeometry::~DTGeometry | ( | ) | [virtual] |
Destructor.
Definition at line 16 of file DTGeometry.cc.
References theChambers.
{ // delete all the chambers (which will delete the SL which will delete the // layers) for (std::vector<DTChamber*>::const_iterator ich=theChambers.begin(); ich!=theChambers.end(); ++ich) delete (*ich); }
void DTGeometry::add | ( | DTChamber * | ch | ) | [private] |
Add a DTChamber to Geometry.
Definition at line 29 of file DTGeometry.cc.
References GeomDet::geographicalId(), theChambers, theDets, and theMap.
{ theDets.push_back(ch); theChambers.push_back(ch); theMap.insert(DTDetMap::value_type(ch->geographicalId(),ch)); }
void DTGeometry::add | ( | DTLayer * | l | ) | [private] |
Add a DTLayer to Geometry.
Definition at line 43 of file DTGeometry.cc.
References GeomDet::geographicalId(), prof2calltree::l, theDets, theDetUnits, theLayers, and theMap.
{ theDetUnits.push_back(l); theDets.push_back(l); theLayers.push_back(l); theMap.insert(DTDetMap::value_type(l->geographicalId(),l)); }
void DTGeometry::add | ( | DTSuperLayer * | sl | ) | [private] |
Add a DTSuperLayer to Geometry.
Definition at line 36 of file DTGeometry.cc.
References GeomDet::geographicalId(), theDets, theMap, and theSuperLayers.
{ theDets.push_back(sl); theSuperLayers.push_back(sl); theMap.insert(DTDetMap::value_type(sl->geographicalId(),sl)); }
const DTChamber * DTGeometry::chamber | ( | DTChamberId | id | ) | const |
Return a DTChamber given its id.
Definition at line 102 of file DTGeometry.cc.
References idToDet().
Referenced by DTResidualCalibration::analyze(), DTRecHitSegmentResidual::compute(), DTCalibValidation::compute(), MuonSimHitProducer::produce(), and DTResidualCalibration::segmentToWireDistance().
const std::vector< DTChamber * > & DTGeometry::chambers | ( | ) | const |
Return a vector of all Chamber.
Definition at line 87 of file DTGeometry.cc.
References theChambers.
Referenced by FWRecoGeometryESProducer::addDTGeometry(), DTResidualCalibration::beginRun(), and AlignableMuon::buildDTBarrel().
{ return theChambers; }
const DTGeometry::DetIdContainer & DTGeometry::detIds | ( | ) | const [virtual] |
Returm a vector of all GeomDet DetIds (including those of GeomDetUnits)
Implements TrackingGeometry.
Definition at line 67 of file DTGeometry.cc.
References theDetIds.
{ // FIXME - fill it at runtime return theDetIds; }
const DTGeometry::DetContainer & DTGeometry::dets | ( | ) | const [virtual] |
Returm a vector of all GeomDet (including all GeomDetUnits)
Implements TrackingGeometry.
Definition at line 56 of file DTGeometry.cc.
References theDets.
{ return theDets; }
const DTGeometry::DetTypeContainer & DTGeometry::detTypes | ( | ) | const [virtual] |
Return a vector of all det types.
Implements TrackingGeometry.
Definition at line 23 of file DTGeometry.cc.
References theDetTypes.
{ // FIXME - fill it at runtime return theDetTypes; }
const DTGeometry::DetIdContainer & DTGeometry::detUnitIds | ( | ) | const [virtual] |
Returm a vector of all GeomDetUnit DetIds.
Implements TrackingGeometry.
Definition at line 61 of file DTGeometry.cc.
References theDetUnitIds.
{ // FIXME - fill it at runtime return theDetUnitIds; }
const DTGeometry::DetUnitContainer & DTGeometry::detUnits | ( | ) | const [virtual] |
Returm a vector of all GeomDetUnit.
Implements TrackingGeometry.
Definition at line 51 of file DTGeometry.cc.
References theDetUnits.
{ return theDetUnits; }
Return the pointer to the GeomDet corresponding to a given DetId (valid also for GeomDetUnits)
Implements TrackingGeometry.
Definition at line 78 of file DTGeometry.cc.
Referenced by MuonDTDetLayerGeometryBuilder::buildLayers(), chamber(), DTHitQualityUtils::findMuSimSegmentDirAndPos(), idToDetUnit(), layer(), and superLayer().
const GeomDetUnit * DTGeometry::idToDetUnit | ( | DetId | ) | const [virtual] |
Return the pointer to the GeomDetUnit corresponding to a given DetId.
Implements TrackingGeometry.
Definition at line 73 of file DTGeometry.cc.
References idToDet().
Referenced by MuonSimHitsValidAnalyzer::fillDT(), and MuonSimHitProducer::produce().
{ return dynamic_cast<const GeomDetUnit*>(idToDet(id)); }
Return a layer given its id.
Definition at line 112 of file DTGeometry.cc.
References idToDet().
Referenced by DTRecHitSegmentResidual::compute(), DTRecHitQuality::compute(), DTCalibValidation::compute(), GlobalRecHitsAnalyzer::compute(), GlobalRecHitsProducer::compute(), GlobalHitsProdHist::fillMuon(), GlobalHitsAnalyzer::fillMuon(), GlobalHitsProducer::fillMuon(), DTHitQualityUtils::findMuSimSegmentDirAndPos(), and DTResidualCalibration::segmentToWireDistance().
const std::vector< DTLayer * > & DTGeometry::layers | ( | ) | const |
Return a vector of all SuperLayer.
Definition at line 97 of file DTGeometry.cc.
References theLayers.
Referenced by FWRecoGeometryESProducer::addDTGeometry().
{ return theLayers; }
const DTSuperLayer * DTGeometry::superLayer | ( | DTSuperLayerId | id | ) | const |
Return a DTSuperLayer given its id.
Definition at line 107 of file DTGeometry.cc.
References idToDet().
{ return (const DTSuperLayer*)(idToDet(id)); }
const std::vector< DTSuperLayer * > & DTGeometry::superLayers | ( | ) | const |
Return a vector of all SuperLayer.
Definition at line 92 of file DTGeometry.cc.
References theSuperLayers.
{ return theSuperLayers; }
friend class DTGeometryBuilderFromCondDB [friend] |
Definition at line 87 of file DTGeometry.h.
friend class DTGeometryBuilderFromDDD [friend] |
Definition at line 86 of file DTGeometry.h.
friend class GeometryAligner [friend] |
Definition at line 89 of file DTGeometry.h.
std::vector<DTChamber*> DTGeometry::theChambers [private] |
Definition at line 104 of file DTGeometry.h.
Referenced by add(), chambers(), and ~DTGeometry().
DetIdContainer DTGeometry::theDetIds [mutable, private] |
Definition at line 124 of file DTGeometry.h.
Referenced by detIds().
DetContainer DTGeometry::theDets [private] |
Definition at line 118 of file DTGeometry.h.
DetTypeContainer DTGeometry::theDetTypes [mutable, private] |
Definition at line 122 of file DTGeometry.h.
Referenced by detTypes().
DetIdContainer DTGeometry::theDetUnitIds [mutable, private] |
Definition at line 123 of file DTGeometry.h.
Referenced by detUnitIds().
DetUnitContainer DTGeometry::theDetUnits [private] |
Definition at line 117 of file DTGeometry.h.
Referenced by add(), and detUnits().
std::vector<DTLayer*> DTGeometry::theLayers [private] |
Definition at line 110 of file DTGeometry.h.
DTDetMap DTGeometry::theMap [private] |
Definition at line 113 of file DTGeometry.h.
std::vector<DTSuperLayer*> DTGeometry::theSuperLayers [private] |
Definition at line 109 of file DTGeometry.h.
Referenced by add(), and superLayers().