KiTrack  1.7.0
Crit3_PT_MV.h
1 #ifndef Crit2_PT_MV_h
2 #define Crit2_PT_MV_h
3 
4 #include "Criteria/ICriterion.h"
5 
6 
7 namespace KiTrack{
8 
11  class Crit3_PT_MV : public ICriterion{
12 
13 
14 
15  public:
16 
17  Crit3_PT_MV ( float ptMin , float ptMax , float Bz = 3.5 );
18 
19  virtual bool areCompatible( Segment* parent , Segment* child )throw( BadSegmentLength );
20 
21  virtual ~Crit3_PT_MV(){};
22 
23 
24  private:
25 
26  float _ptMin;
27  float _ptMax;
28  float _Bz;
29 
30 
31  };
32 
33 }
34 
35 
36 
37 
38 
39 
40 
41 
42 
43 
44 
45 
46 
47 #endif
48 
A Segment is something like a track or a part of a track: it consists of hits linked together...
Definition: Segment.h:40
Wrong segment length exception.
Definition: KiTrackExceptions.h:72
Criterion: the transversal momentum.
Definition: Crit3_PT_MV.h:11
An Interface for Criteria.
Definition: ICriterion.h:20
virtual bool areCompatible(Segment *parent, Segment *child)
Definition: Crit3_PT_MV.cc:26