CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CaloSubdetectorGeometry.h
Go to the documentation of this file.
1 #ifndef GEOMETRY_CALOGEOMETRY_CALOSUBDETECTORGEOMETRY_H
2 #define GEOMETRY_CALOGEOMETRY_CALOSUBDETECTORGEOMETRY_H 1
3 
4 #include <vector>
5 #include <set>
10 
12 
13 
25 
26  public:
27  typedef std::vector<CaloCellGeometry const *> CellSet;
29 
30  typedef std::set<DetId> DetIdSet;
31 
32 
36 
37  typedef std::vector<CCGFloat> TrVec ;
38  typedef std::vector<unsigned int> IVec ;
39  typedef std::vector<CCGFloat> DimVec ;
40 
42 
44  virtual ~CaloSubdetectorGeometry();
45 
46  virtual void newCell( const GlobalPoint& f1 ,
47  const GlobalPoint& f2 ,
48  const GlobalPoint& f3 ,
49  const CCGFloat* parm ,
50  const DetId& detId ) = 0 ;
51 
53  virtual bool present( const DetId& id ) const;
54 
56  virtual const CaloCellGeometry* getGeometry( const DetId& id ) const ;
57 
62  virtual const std::vector<DetId>& getValidDetIds( DetId::Detector det = DetId::Detector(0) ,
63  int subdet = 0 ) const ;
64 
65  // Get closest cell, etc...
66  virtual DetId getClosestCell( const GlobalPoint& r ) const ;
67 
74  virtual DetIdSet getCells( const GlobalPoint& r, double dR ) const ;
75  virtual CellSet getCellSet( const GlobalPoint& r, double dR ) const ;
76 
77  CCGFloat deltaPhi( const DetId& detId ) const ;
78 
79  CCGFloat deltaEta( const DetId& detId ) const ;
80 
82 
84 
85  void allocatePar( ParVec::size_type n, unsigned int m ) ;
86 
87  ParMgr* parMgr() { return m_parMgr ; }
88  const ParMgr* parMgrConst() const { return m_parMgr ; }
89 
91  const ParVecVec& parVecVec() const { return m_parVecVec ; }
92 
93  virtual unsigned int numberOfShapes() const { return 1 ; }
94  virtual unsigned int numberOfParametersPerShape() const { return 1 ; }
95  virtual unsigned int numberOfTransformParms() const { return 6 ; }
96 
97  virtual void fillDefaultNamedParameters() const { return ; }
98 
99  virtual void getSummary( TrVec& trVector,
100  IVec& iVector,
101  DimVec& dimVector,
102  IVec& dinsVector ) const ;
103 
104  virtual void initializeParms() { return ; }
105 
106  protected:
107 
108  virtual unsigned int indexFor(const DetId& id) const;
109  virtual unsigned int sizeForDenseIndex(const DetId& id) const;
110 
111  virtual const CaloCellGeometry* cellGeomPtr( uint32_t index ) const = 0 ;
112 
114 
115  static CCGFloat deltaR( const GlobalPoint& p1,
116  const GlobalPoint& p2 )
117  { return reco::deltaR( p1, p2 ) ; }
118 
119  mutable std::vector<DetId> m_validIds ;
120 
121  private:
122 
124 
126 
130 
131  mutable bool m_sortedIds ;
132 
133  mutable std::vector<CCGFloat>* m_deltaPhi ;
134  mutable std::vector<CCGFloat>* m_deltaEta ;
135 };
136 
137 
138 #endif
CaloCellGeometry::CornersMgr * m_cmgr
std::vector< CCGFloat > DimVec
std::vector< ParVec > ParVecVec
virtual unsigned int numberOfParametersPerShape() const
virtual void newCell(const GlobalPoint &f1, const GlobalPoint &f2, const GlobalPoint &f3, const CCGFloat *parm, const DetId &detId)=0
const ParMgr * parMgrConst() const
CCGFloat deltaPhi(const DetId &detId) const
MgrType::size_type size_type
Definition: EZArrayFL.h:30
std::vector< CCGFloat > * m_deltaEta
std::vector< unsigned int > IVec
std::vector< CaloCellGeometry const * > CellSet
std::vector< CCGFloat > TrVec
virtual void fillDefaultNamedParameters() const
CCGFloat deltaEta(const DetId &detId) const
CaloCellGeometry::CCGFloat CCGFloat
void allocatePar(ParVec::size_type n, unsigned int m)
virtual CellSet getCellSet(const GlobalPoint &r, double dR) const
virtual const std::vector< DetId > & getValidDetIds(DetId::Detector det=DetId::Detector(0), int subdet=0) const
Get a list of valid detector ids (for the given subdetector)
virtual const CaloCellGeometry * getGeometry(const DetId &id) const
Get the cell geometry of a given detector id. Should return false if not found.
virtual void getSummary(TrVec &trVector, IVec &iVector, DimVec &dimVector, IVec &dinsVector) const
virtual bool present(const DetId &id) const
is this detid present in the geometry?
virtual DetIdSet getCells(const GlobalPoint &r, double dR) const
Get a list of all cells within a dR of the given cell.
virtual unsigned int numberOfShapes() const
std::vector< DetId > m_validIds
auto deltaR(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:30
CaloCellGeometry::ParVec ParVec
double p2[4]
Definition: TauolaWrapper.h:90
virtual const CaloCellGeometry * cellGeomPtr(uint32_t index) const =0
virtual DetId getClosestCell(const GlobalPoint &r) const
Definition: DetId.h:20
CaloCellGeometry::CornersMgr * cornersMgr()
Detector
Definition: DetId.h:26
std::vector< CCGFloat > * m_deltaPhi
CaloCellGeometry::ParVecVec ParVecVec
Definition: EZMgrFL.h:8
const ParVecVec & parVecVec() const
CaloCellGeometry::ParMgr ParMgr
static CCGFloat deltaR(const GlobalPoint &p1, const GlobalPoint &p2)
virtual unsigned int indexFor(const DetId &id) const
virtual ~CaloSubdetectorGeometry()
The base class DOES assume that it owns the CaloCellGeometry objects.
double p1[4]
Definition: TauolaWrapper.h:89
void allocateCorners(CaloCellGeometry::CornersVec::size_type n)
CaloSubdetectorGeometry & operator=(const CaloSubdetectorGeometry &)
virtual unsigned int numberOfTransformParms() const
virtual unsigned int sizeForDenseIndex(const DetId &id) const