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 
16  TIBLayer(std::vector<const TIBRing*>& innerRings,
17  std::vector<const TIBRing*>& outerRings) __attribute__ ((cold));
18 
19  ~TIBLayer() override __attribute__ ((cold));
20 
21  private:
22  // private methods for the implementation of groupedCompatibleDets()
23 
24  std::tuple<bool,int,int> computeIndexes(GlobalPoint gInnerPoint, GlobalPoint gOuterPoint) const override __attribute__ ((hot));
25 
26 
27  void searchNeighbors( const TrajectoryStateOnSurface& tsos,
28  const Propagator& prop,
29  const MeasurementEstimator& est,
30  const SubLayerCrossing& crossing,
31  float window,
32  std::vector<DetGroup>& result,
33  bool checkClosest) const override __attribute__ ((hot));
34 
35  float computeWindowSize( const GeomDet* det,
36  const TrajectoryStateOnSurface& tsos,
37  const MeasurementEstimator& est) const override __attribute__ ((hot));
38 
39  static bool overlap( const GlobalPoint& gpos, const GeometricSearchDet& ring, float window) __attribute__ ((hot));
40 
41 
44 
45  BoundCylinder* cylinder( const std::vector<const GeometricSearchDet*>& rings) __attribute__ ((cold));
46 
47 
48 };
49 
50 
51 #pragma GCC visibility pop
52 #endif
static bool overlap(const GlobalPoint &gpos, const GeometricSearchDet &ring, float window) __attribute__((hot))
Definition: TIBLayer.cc:177
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:43
~TIBLayer() override __attribute__((cold))
Definition: TIBLayer.cc:88
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:94
GeneralBinFinderInZforGeometricSearchDet< float > theInnerBinFinder
Definition: TIBLayer.h:42
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:139
float computeWindowSize(const GeomDet *det, const TrajectoryStateOnSurface &tsos, const MeasurementEstimator &est) const override __attribute__((hot))
Definition: TIBLayer.cc:188
std::tuple< bool, int, int > computeIndexes(GlobalPoint gInnerPoint, GlobalPoint gOuterPoint) const override __attribute__((hot))
Definition: TIBLayer.cc:123