CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 GCC11_FINAL : public TBLayer {
14  public:
15 
16  TIBLayer(std::vector<const TIBRing*>& innerRings,
17  std::vector<const TIBRing*>& outerRings) __attribute__ ((cold));
18 
19  ~TIBLayer() __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 __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 __attribute__ ((hot));
34 
35  float computeWindowSize( const GeomDet* det,
36  const TrajectoryStateOnSurface& tsos,
37  const MeasurementEstimator& est) const __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
def window
Definition: svgfig.py:642
std::tuple< bool, int, int > computeIndexes(GlobalPoint gInnerPoint, GlobalPoint gOuterPoint) const __attribute__((hot))
Definition: TIBLayer.cc:124
#define GCC11_FINAL
static bool overlap(const GlobalPoint &gpos, const GeometricSearchDet &ring, float window) __attribute__((hot))
Definition: TIBLayer.cc:178
void searchNeighbors(const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, const SubLayerCrossing &crossing, float window, std::vector< DetGroup > &result, bool checkClosest) const __attribute__((hot))
Definition: TIBLayer.cc:140
TIBLayer(std::vector< const TIBRing * > &innerRings, std::vector< const TIBRing * > &outerRings) __attribute__((cold))
Definition: TIBLayer.cc:20
~TIBLayer() __attribute__((cold))
Definition: TIBLayer.cc:89
GeneralBinFinderInZforGeometricSearchDet< float > theOuterBinFinder
Definition: TIBLayer.h:43
tuple result
Definition: query.py:137
BoundCylinder * cylinder(const std::vector< const GeometricSearchDet * > &rings) __attribute__((cold))
Definition: TIBLayer.cc:95
GeneralBinFinderInZforGeometricSearchDet< float > theInnerBinFinder
Definition: TIBLayer.h:42
float __attribute__((vector_size(8))) float32x2_t
Definition: ExtVec.h:12
float computeWindowSize(const GeomDet *det, const TrajectoryStateOnSurface &tsos, const MeasurementEstimator &est) const __attribute__((hot))
Definition: TIBLayer.cc:189