CMS 3D CMS Logo

PixelRod.h
Go to the documentation of this file.
1 #ifndef TkDetLayers_PixelRod_h
2 #define TkDetLayers_PixelRod_h
3 
4 
7 
11 #pragma GCC visibility push(hidden)
12 class PixelRod final : public DetRodOneR{
13  public:
15 
16  PixelRod(std::vector<const GeomDet*>& theDets);
17  ~PixelRod() override;
18 
19  // GeometricSearchDet interface
20 
21  const std::vector<const GeometricSearchDet*>& components() const override __attribute__ ((cold));
22 
23  std::pair<bool, TrajectoryStateOnSurface>
25  const MeasurementEstimator&) const override;
26 
27  void
28  compatibleDetsV( const TrajectoryStateOnSurface& startingState,
29  const Propagator& prop,
30  const MeasurementEstimator& est,
31  std::vector<DetWithState> & result) const override __attribute__ ((hot));
32 
33  void
35  const Propagator&,
36  const MeasurementEstimator&,
37  std::vector<DetGroup> &) const override;
38 
39 
40  private:
41  BinFinderType theBinFinder;
42 
43 
44 };
45 
46 
47 #pragma GCC visibility pop
48 #endif
std::vector< const GeomDet * > theDets
Definition: DetRodOneR.h:40
void groupedCompatibleDetsV(const TrajectoryStateOnSurface &, const Propagator &, const MeasurementEstimator &, std::vector< DetGroup > &) const override
Definition: PixelRod.cc:102
float __attribute__((vector_size(8))) cms_float32x2_t
Definition: ExtVec.h:12
BinFinderType theBinFinder
Definition: PixelRod.h:41
~PixelRod() override
Definition: PixelRod.cc:34
void compatibleDetsV(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetWithState > &result) const override __attribute__((hot))
Definition: PixelRod.cc:52
PeriodicBinFinderInZ< float > BinFinderType
Definition: PixelRod.h:14
const std::vector< const GeometricSearchDet * > & components() const override __attribute__((cold))
Returns basic components, if any.
Definition: PixelRod.cc:39
std::pair< const GeomDet *, TrajectoryStateOnSurface > DetWithState
std::pair< bool, TrajectoryStateOnSurface > compatible(const TrajectoryStateOnSurface &ts, const Propagator &, const MeasurementEstimator &) const override
Definition: PixelRod.cc:45
PixelRod(std::vector< const GeomDet * > &theDets)
Definition: PixelRod.cc:13