~jan.greis/maus/1811

« back to all changes in this revision

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

  • Committer: Adam Dobbs
  • Date: 2016-01-13 11:31:12 UTC
  • mfrom: (659.2.18 release-candidate)
  • Revision ID: phuccj@gmail.com-20160113113112-bhbguupn50eyvd0z
Tags: MAUS-v1.4, MAUS-v1.4.0
MAUS-v1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
 
161
161
  std::vector<double> GetSeedCovariance() const { return _seed_covariance_matrix; }
162
162
 
 
163
  int GetNumberDataPoints() const;
163
164
 
164
165
  /** @brief Returns an integer rating of the track (1:Excellent, 5:Terrible)
165
166
   */
166
 
  int GetRating() const;
 
167
  int GetRating() const { return this->_rating; }
 
168
  void SetRating(int rating) { this->_rating = rating; }
167
169
 
168
170
  /** @brief Returns an boolean value if it's a "good" track
169
171
   */
178
180
 
179
181
  double _P_value;
180
182
 
 
183
  int _rating;
 
184
 
181
185
  int _charge;
182
186
 
183
187
  AlgorithmUsed _algorithm_used;