KiTrack  1.7.0
Crit2_DeltaRho.h
1 #ifndef Crit2_DeltaRho_h
2 #define Crit2_DeltaRho_h
3 
4 
5 #include "Criteria/ICriterion.h"
6 
7 namespace KiTrack{
8 
11  class Crit2_DeltaRho : public ICriterion{
12 
13 
14 
15  public:
16 
17  Crit2_DeltaRho ( float deltaRhoMin , float deltaRhoMax );
18 
19  virtual bool areCompatible( Segment* parent , Segment* child )throw( BadSegmentLength );
20 
21  virtual ~Crit2_DeltaRho(){};
22 
23 
24  private:
25 
26  float _deltaRhoMax;
27  float _deltaRhoMin;
28 
29 
30 
31  };
32 
33 }
34 
35 #endif
36 
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: Crit2_DeltaRho.cc:23
Wrong segment length exception.
Definition: KiTrackExceptions.h:72
An Interface for Criteria.
Definition: ICriterion.h:20
Criterion: the difference of the sqrt(x^2 + y^2) of two hits.
Definition: Crit2_DeltaRho.h:11