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 
7 
8 class GeometricDet;
9 
11 
13 
14 // FIXME here just to allow prototyping...
15 namespace trackerTrie {
16  typedef GeomDet const* PDet;
19  typedef Node const * node_pointer; // sigh....
21 }
22 
23 
28 class TrackerGeometry final : public TrackingGeometry {
29 
30  explicit TrackerGeometry(GeometricDet const* gd=0);
31 
33 
34  void addType(GeomDetType const * p);
35  void addDetUnit(GeomDetUnit const * p);
36  void addDetUnitId(DetId p);
37  void addDet(GeomDet const * p);
38  void addDetId(DetId p);
39  void finalize();
40 
41 public:
43 
44  virtual ~TrackerGeometry() ;
45 
46 
47  virtual const DetTypeContainer& detTypes() const;
48  virtual const DetUnitContainer& detUnits() const;
49  virtual const DetContainer& dets() const;
50  virtual const DetIdContainer& detUnitIds() const;
51  virtual const DetIdContainer& detIds() const;
52  virtual const TrackerGeomDet* idToDetUnit(DetId) const;
53  virtual const TrackerGeomDet* idToDet(DetId) const;
54 
55 
56  unsigned int offsetDU(SubDetector sid) const { return theOffsetDU[sid];}
57  unsigned int endsetDU(SubDetector sid) const { return theEndsetDU[sid];}
58  // Magic : better be called at the right moment...
59  void setOffsetDU(SubDetector sid) { theOffsetDU[sid]=detUnits().size();}
60  void setEndsetDU(SubDetector sid) { theEndsetDU[sid]=detUnits().size();}
61 
62  GeometricDet const * trackerDet() const {return theTrackerDet;}
63 
64  const DetContainer& detsPXB() const;
65  const DetContainer& detsPXF() const;
66  const DetContainer& detsTIB() const;
67  const DetContainer& detsTID() const;
68  const DetContainer& detsTOB() const;
69  const DetContainer& detsTEC() const;
70 
71 private:
72 
74 
76  friend class GeometryAligner;
77 
78  DetTypeContainer theDetTypes; // owns the DetTypes
79  DetUnitContainer theDetUnits; // they're all also into 'theDets', so we assume 'theDets' owns them
80  unsigned int theOffsetDU[6]; // offsets in the above
81  unsigned int theEndsetDU[6]; // end offsets in the above
82  DetContainer theDets; // owns *ONLY* the GeomDet * corresponding to GluedDets.
85  mapIdToDetUnit theMapUnit; // does not own GeomDetUnit *
86  mapIdToDet theMap; // does not own GeomDet *
87 
88  DetContainer thePXBDets; // not owned: they're also in 'theDets'
89  DetContainer thePXFDets; // not owned: they're also in 'theDets'
90  DetContainer theTIBDets; // not owned: they're also in 'theDets'
91  DetContainer theTIDDets; // not owned: they're also in 'theDets'
92  DetContainer theTOBDets; // not owned: they're also in 'theDets'
93  DetContainer theTECDets; // not owned: they're also in 'theDets'
94 
95 
96 };
97 
98 #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)
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.
TrackerGeometry(GeometricDet const *gd=0)
DetIdContainer theDetIds
DetIdContainer theDetUnitIds
DetContainer theTECDets
DetContainer theDets
void addDetId(DetId p)
DetUnitContainer theDetUnits
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
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