CMS 3D CMS Logo

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 <memory>
5 #include <vector>
6 #include <set>
7 #if !defined(__CINT__) && !defined(__MAKECINT__) && !defined(__REFLEX__)
8 #include <atomic>
9 #endif
14 
16 
25 public:
26  typedef std::vector<std::shared_ptr<const CaloCellGeometry> > CellSet;
28 
29  typedef std::set<DetId> DetIdSet;
30 
34 
35  typedef std::vector<CCGFloat> TrVec;
36  typedef std::vector<unsigned int> IVec;
37  typedef std::vector<CCGFloat> DimVec;
38 
40 
42  virtual ~CaloSubdetectorGeometry();
43 
47 
48  virtual void newCell(const GlobalPoint& f1,
49  const GlobalPoint& f2,
50  const GlobalPoint& f3,
51  const CCGFloat* parm,
52  const DetId& detId) = 0;
53 
55  virtual bool present(const DetId& id) const;
56 
58  virtual std::shared_ptr<const CaloCellGeometry> getGeometry(const DetId& id) const;
59 
64  virtual const std::vector<DetId>& getValidDetIds(DetId::Detector det = DetId::Detector(0), int subdet = 0) const;
65 
66  // Get closest cell, etc...
67  virtual DetId getClosestCell(const GlobalPoint& r) const;
68 
75  virtual DetIdSet getCells(const GlobalPoint& r, double dR) const;
76  virtual CellSet getCellSet(const GlobalPoint& r, double dR) const;
77 
78  CCGFloat deltaPhi(const DetId& detId) const;
79 
80  CCGFloat deltaEta(const DetId& detId) const;
81 
83 
85 
86  void allocatePar(ParVec::size_type n, unsigned int m);
87 
88  ParMgr* parMgr() { return m_parMgr; }
89  const ParMgr* parMgrConst() const { return m_parMgr; }
90 
91  ParVecVec& parVecVec() { return m_parVecVec; }
92  const ParVecVec& parVecVec() const { return m_parVecVec; }
93 
94  virtual unsigned int numberOfShapes() const { return 1; }
95  virtual unsigned int numberOfParametersPerShape() const { return 1; }
96  virtual unsigned int numberOfTransformParms() const { return 6; }
97 
98  virtual void fillDefaultNamedParameters() const { return; }
99 
100  virtual void getSummary(TrVec& trVector, IVec& iVector, DimVec& dimVector, IVec& dinsVector) const;
101 
102  virtual void initializeParms() { return; }
103 
104 protected:
105  virtual unsigned int indexFor(const DetId& id) const;
106  virtual unsigned int sizeForDenseIndex(const DetId& id) const;
107 
108  virtual const CaloCellGeometry* getGeometryRawPtr(uint32_t index) const = 0;
109  virtual std::shared_ptr<const CaloCellGeometry> cellGeomPtr(uint32_t index) const;
110 
111  ParVecVec m_parVecVec;
112 
113  static CCGFloat deltaR(const GlobalPoint& p1, const GlobalPoint& p2) { return reco::deltaR(p1, p2); }
114 
115  void addValidID(const DetId& id);
116 
117  std::vector<DetId> m_validIds;
118 
119 private:
120  ParMgr* m_parMgr;
121 
123 
125 
126 #if !defined(__CINT__) && !defined(__MAKECINT__) && !defined(__REFLEX__)
127  mutable std::atomic<std::vector<CCGFloat>*> m_deltaPhi;
128  mutable std::atomic<std::vector<CCGFloat>*> m_deltaEta;
129 #else
130  mutable std::vector<CCGFloat>* m_deltaPhi;
131  mutable std::vector<CCGFloat>* m_deltaEta;
132 #endif
133 };
134 
135 #endif
virtual const CaloCellGeometry * getGeometryRawPtr(uint32_t index) const =0
CaloCellGeometry::CornersMgr * m_cmgr
std::vector< CCGFloat > DimVec
std::vector< ParVec > ParVecVec
virtual unsigned int numberOfParametersPerShape() const
CaloSubdetectorGeometry & operator=(const CaloSubdetectorGeometry &)=delete
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:27
std::vector< unsigned int > IVec
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)
std::vector< std::shared_ptr< const CaloCellGeometry > > CellSet
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 std::shared_ptr< const CaloCellGeometry > cellGeomPtr(uint32_t index) const
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
std::atomic< std::vector< CCGFloat > * > m_deltaPhi
CaloCellGeometry::ParVec ParVec
double p2[4]
Definition: TauolaWrapper.h:90
constexpr auto deltaR(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:30
virtual DetId getClosestCell(const GlobalPoint &r) const
Definition: DetId.h:17
void addValidID(const DetId &id)
virtual std::shared_ptr< const CaloCellGeometry > getGeometry(const DetId &id) const
Get the cell geometry of a given detector id. Should return false if not found.
CaloCellGeometry::CornersMgr * cornersMgr()
Detector
Definition: DetId.h:24
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)
std::atomic< std::vector< CCGFloat > * > m_deltaEta
virtual unsigned int numberOfTransformParms() const
virtual unsigned int sizeForDenseIndex(const DetId &id) const