KiTrack  1.7.0
Crit4_DistToExtrapolation.h
1 #ifndef Crit4_DistToExtrapolation_h
2 #define Crit4_DistToExtrapolation_h
3 
4 
5 #include "Criteria/ICriterion.h"
6 
7 namespace KiTrack{
8 
14 
15 
16 
17  public:
18 
22  Crit4_DistToExtrapolation ( float distMin , float distMax );
23 
24  virtual bool areCompatible( Segment* parent , Segment* child )throw( BadSegmentLength );
25 
26  virtual ~Crit4_DistToExtrapolation(){};
27 
28  private:
29 
30  float _distMin;
31  float _distMax;
32 
33  };
34 
35 }
36 
37 #endif
A Segment is something like a track or a part of a track: it consists of hits linked together...
Definition: Segment.h:40
virtual bool areCompatible(Segment *parent, Segment *child)
Definition: Crit4_DistToExtrapolation.cc:28
Wrong segment length exception.
Definition: KiTrackExceptions.h:72
An Interface for Criteria.
Definition: ICriterion.h:20
Criterion: use the first 3 hits to extrapolate the location in xy for a given z of the last hit...
Definition: Crit4_DistToExtrapolation.h:13
Crit4_DistToExtrapolation(float distMin, float distMax)
Definition: Crit4_DistToExtrapolation.cc:13