~durga/maus/rel709

« back to all changes in this revision

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

  • Committer: Adam Dobbs
  • Date: 2014-12-11 13:26:05 UTC
  • mfrom: (659.1.96 release-candidate)
  • Revision ID: phuccj@gmail.com-20141211132605-6g6j2927elggi2q6
Tags: MAUS-v0.9.2
MAUS-v0.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 
53
53
  /** @brief Sets the filtered chi2.
54
54
   */
55
 
  void set_f_chi2(double chi2) { _f_chi2 = chi2; }
56
 
 
57
 
  /** @brief Sets the smoothed chi2.
58
 
   */
59
 
  void set_s_chi2(double chi2) { _s_chi2 = chi2; }
 
55
  void set_chi2(double chi2) { _chi2 = chi2; }
60
56
 
61
57
  /** @brief Sets the ndf for this track.
62
58
   */
80
76
 
81
77
  /** @brief Returns the filtered chi2.
82
78
   */
83
 
  double f_chi2()    const   { return _f_chi2; }
84
 
 
85
 
  /** @brief Returns the smoothed chi2.
86
 
   */
87
 
  double s_chi2()    const   { return _s_chi2; }
 
79
  double chi2()    const   { return _chi2; }
88
80
 
89
81
  /** @brief Returns the ndf.
90
82
   */
119
111
 private:
120
112
  int _tracker;
121
113
 
122
 
  double _f_chi2;
123
 
 
124
 
  double _s_chi2;
 
114
  double _chi2;
125
115
 
126
116
  int _ndf;
127
117