CMS 3D CMS Logo

TIBLayer.h
Go to the documentation of this file.
1 #ifndef TkDetLayers_TIBLayer_h
2 #define TkDetLayers_TIBLayer_h
3 
4 #include "TBLayer.h"
5 #include "TIBRing.h"
7 
12 #pragma GCC visibility push(hidden)
13 class TIBLayer final : public TBLayer {
14 public:
15  TIBLayer(std::vector<const TIBRing*>& innerRings, std::vector<const TIBRing*>& outerRings) __attribute__((cold));
16 
17  ~TIBLayer() override __attribute__((cold));
18 
19 private:
20  // private methods for the implementation of groupedCompatibleDets()
21 
22  std::tuple<bool, int, int> computeIndexes(GlobalPoint gInnerPoint, GlobalPoint gOuterPoint) const override
23  __attribute__((hot));
24 
26  const Propagator& prop,
27  const MeasurementEstimator& est,
28  const SubLayerCrossing& crossing,
29  float window,
30  std::vector<DetGroup>& result,
31  bool checkClosest) const override __attribute__((hot));
32 
33  float computeWindowSize(const GeomDet* det,
34  const TrajectoryStateOnSurface& tsos,
35  const MeasurementEstimator& est) const override __attribute__((hot));
36 
37  static bool overlap(const GlobalPoint& gpos, const GeometricSearchDet& ring, float window) __attribute__((hot));
38 
41 
42  BoundCylinder* cylinder(const std::vector<const GeometricSearchDet*>& rings) __attribute__((cold));
43 };
44 
45 #pragma GCC visibility pop
46 #endif
static bool overlap(const GlobalPoint &gpos, const GeometricSearchDet &ring, float window) __attribute__((hot))
Definition: TIBLayer.cc:144
float __attribute__((vector_size(8))) cms_float32x2_t
Definition: ExtVec.h:12
TIBLayer(std::vector< const TIBRing * > &innerRings, std::vector< const TIBRing * > &outerRings) __attribute__((cold))
Definition: TIBLayer.cc:18
GeneralBinFinderInZforGeometricSearchDet< float > theOuterBinFinder
Definition: TIBLayer.h:40
~TIBLayer() override __attribute__((cold))
Definition: TIBLayer.cc:65
def window(xmin, xmax, ymin, ymax, x=0, y=0, width=100, height=100, xlogbase=None, ylogbase=None, minusInfinity=-1000, flipx=False, flipy=True)
Definition: svgfig.py:643
BoundCylinder * cylinder(const std::vector< const GeometricSearchDet * > &rings) __attribute__((cold))
Definition: TIBLayer.cc:67
GeneralBinFinderInZforGeometricSearchDet< float > theInnerBinFinder
Definition: TIBLayer.h:39
void searchNeighbors(const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, const SubLayerCrossing &crossing, float window, std::vector< DetGroup > &result, bool checkClosest) const override __attribute__((hot))
Definition: TIBLayer.cc:104
float computeWindowSize(const GeomDet *det, const TrajectoryStateOnSurface &tsos, const MeasurementEstimator &est) const override __attribute__((hot))
Definition: TIBLayer.cc:152
std::tuple< bool, int, int > computeIndexes(GlobalPoint gInnerPoint, GlobalPoint gOuterPoint) const override __attribute__((hot))
Definition: TIBLayer.cc:92