CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackerGeometry.h
Go to the documentation of this file.
1 #ifndef Geometry_TrackerGeometryBuilder_TrackerGeometry_H
2 #define Geometry_TrackerGeometryBuilder_TrackerGeometry_H
3 
8 
9 class GeometricDet;
10 
12 
14 
15 // FIXME here just to allow prototyping...
16 namespace trackerTrie {
17  typedef GeomDet const* PDet;
20  typedef Node const * node_pointer; // sigh....
22 }
23 
24 
29 class TrackerGeometry final : public TrackingGeometry {
30 
31  explicit TrackerGeometry(GeometricDet const* gd=0);
32 
34 
35  void addType(GeomDetType const * p);
36  void addDetUnit(GeomDetUnit const * p);
37  void addDetUnitId(DetId p);
38  void addDet(GeomDet const * p);
39  void addDetId(DetId p);
40  void finalize();
41 
42 public:
44 
45  virtual ~TrackerGeometry() ;
46 
47 
48  virtual const DetTypeContainer& detTypes() const;
49  virtual const DetUnitContainer& detUnits() const;
50  virtual const DetContainer& dets() const;
51  virtual const DetIdContainer& detUnitIds() const;
52  virtual const DetIdContainer& detIds() const;
53  virtual const TrackerGeomDet* idToDetUnit(DetId) const;
54  virtual const TrackerGeomDet* idToDet(DetId) const;
55 
57  unsigned int numberOfLayers(int subdet) const;
58  bool isThere(GeomDetEnumerators::SubDetector subdet) const;
59 
60  unsigned int offsetDU(SubDetector sid) const { return theOffsetDU[sid];}
61  unsigned int endsetDU(SubDetector sid) const { return theEndsetDU[sid];}
62  // Magic : better be called at the right moment...
63  void setOffsetDU(SubDetector sid) { theOffsetDU[sid]=detUnits().size();}
64  void setEndsetDU(SubDetector sid) { theEndsetDU[sid]=detUnits().size();}
65 
66  GeometricDet const * trackerDet() const {return theTrackerDet;}
67 
68  const DetContainer& detsPXB() const;
69  const DetContainer& detsPXF() const;
70  const DetContainer& detsTIB() const;
71  const DetContainer& detsTID() const;
72  const DetContainer& detsTOB() const;
73  const DetContainer& detsTEC() const;
74 
75 private:
76 
78 
80  friend class GeometryAligner;
81 
82  DetTypeContainer theDetTypes; // owns the DetTypes
83  DetUnitContainer theDetUnits; // they're all also into 'theDets', so we assume 'theDets' owns them
84  unsigned int theOffsetDU[6]; // offsets in the above
85  unsigned int theEndsetDU[6]; // end offsets in the above
86  DetContainer theDets; // owns *ONLY* the GeomDet * corresponding to GluedDets.
89  mapIdToDetUnit theMapUnit; // does not own GeomDetUnit *
90  mapIdToDet theMap; // does not own GeomDet *
91 
92  DetContainer thePXBDets; // not owned: they're also in 'theDets'
93  DetContainer thePXFDets; // not owned: they're also in 'theDets'
94  DetContainer theTIBDets; // not owned: they're also in 'theDets'
95  DetContainer theTIDDets; // not owned: they're also in 'theDets'
96  DetContainer theTOBDets; // not owned: they're also in 'theDets'
97  DetContainer theTECDets; // not owned: they're also in 'theDets'
98 
100  unsigned int theNumberOfLayers[6];
101 
103 
104 };
105 
106 #endif
unsigned int theOffsetDU[6]
virtual const TrackerGeomDet * idToDetUnit(DetId) const
Return the pointer to the GeomDetUnit corresponding to a given DetId.
std::vector< GeomDetType const * > DetTypeContainer
GeometricDet const * trackerDet() const
void addDet(GeomDet const *p)
const GeomDetEnumerators::SubDetector geomDetSubDetector(int subdet) const
mapIdToDet theMap
Node const * node_pointer
edm::TrieNodeIter< PDet > node_iterator
void setEndsetDU(SubDetector sid)
this class represent the node of a trie, it contains a link to a sub node and a link to a brother (no...
Definition: Trie.h:34
Class to update a given geometry with a set of alignments.
unsigned int theNumberOfLayers[6]
TrackerGeometry(GeometricDet const *gd=0)
DetIdContainer theDetIds
DetIdContainer theDetUnitIds
GeomDetEnumerators::SubDetector theSubDetTypeMap[6]
DetContainer theTECDets
DetContainer theDets
unsigned int numberOfLayers(int subdet) const
void addDetId(DetId p)
DetUnitContainer theDetUnits
bool isThere(GeomDetEnumerators::SubDetector subdet) const
virtual const DetUnitContainer & detUnits() const
Returm a vector of all GeomDetUnit.
void addDetUnit(GeomDetUnit const *p)
virtual const DetIdContainer & detIds() const
Returm a vector of all GeomDet DetIds (including those of GeomDetUnits)
unsigned int endsetDU(SubDetector sid) const
mapIdToDetUnit theMapUnit
void setOffsetDU(SubDetector sid)
const DetContainer & detsTEC() const
DetTypeContainer theDetTypes
virtual ~TrackerGeometry()
void addType(GeomDetType const *p)
unsigned int offsetDU(SubDetector sid) const
virtual const DetTypeContainer & detTypes() const
Return a vector of all det types.
edm::Trie< PDet > DetTrie
const DetContainer & detsPXB() const
GeomDet const * PDet
static const GeomDetEnumerators::SubDetector geometricDetToGeomDet(GeometricDet::GDEnumType gdenum)
unsigned int theEndsetDU[6]
std::unordered_map< unsigned int, GeomDetUnit const * > mapIdToDetUnit
DetContainer theTIDDets
const DetContainer & detsTIB() const
std::unordered_map< unsigned int, GeomDet const * > mapIdToDet
Definition: DetId.h:18
DetContainer thePXBDets
DetContainer thePXFDets
GeomDetEnumerators::SubDetector SubDetector
void addDetUnitId(DetId p)
DetContainer theTIBDets
DetContainer theTOBDets
virtual const DetIdContainer & detUnitIds() const
Returm a vector of all GeomDetUnit DetIds.
const DetContainer & detsPXF() const
const DetContainer & detsTOB() const
edm::TrieNode< PDet > Node
std::vector< GeomDet const * > DetContainer
std::vector< GeomDetUnit const * > DetUnitContainer
GeometricDet const * theTrackerDet
virtual const DetContainer & dets() const
Returm a vector of all GeomDet (including all GeomDetUnits)
const DetContainer & detsTID() const
virtual const TrackerGeomDet * idToDet(DetId) const
std::vector< DetId > DetIdContainer