~jan.greis/maus/1811

« back to all changes in this revision

Viewing changes to src/common_cpp/DataStructure/SciFiStraightPRTrack.hh

Merging start

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
    /** Constructor using explicit parameters */
40
40
    SciFiStraightPRTrack(int tracker, int num_points, double x0, double mx, double x_chisq,
41
 
                         double y0, double my, double y_chisq);
 
41
                         double y0, double my, double y_chisq,
 
42
                         const DoubleArray& covariance);
42
43
 
43
44
    /** Constructor using SimpleLines */
44
 
    SciFiStraightPRTrack(int tracker, int num_points, SimpleLine line_x, SimpleLine line_y);
 
45
    SciFiStraightPRTrack(int tracker, int num_points, SimpleLine line_x, SimpleLine line_y,
 
46
                         const DoubleArray& covariance);
45
47
 
46
48
    /** Copy constructor */
47
49
    SciFiStraightPRTrack(const SciFiStraightPRTrack &_strk);
104
106
    /** Get the track type, for straight, 1 for helical */
105
107
    int get_type() const { return _type; }
106
108
 
 
109
 
107
110
  private:
108
111
    int _tracker;
109
112
    int _num_points;