~e-santos10/maus/devel

« back to all changes in this revision

Viewing changes to src/common_cpp/Recon/SciFi/PatternRecognition.hh

  • Committer: Edward Santos
  • Date: 2014-01-27 12:08:22 UTC
  • mfrom: (1034.3.37 tracker_devel)
  • Revision ID: e.santos10@imperial.ac.uk-20140127120822-8pr90w50mwcfzwob
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
248
248
    /** @brief Set the verbosity level */
249
249
    void set_verbosity(const bool verb) { _verb = verb; }
250
250
 
251
 
    /** @brief Set up the residual data output files, and set the verbosity level to 2 */
252
 
    void initialise_residual_files();
253
 
 
254
251
  private:
255
 
    int _verb;             /** Verbosity: 0=little, 1=more couts, 2=files too */
 
252
    int _verb;                               /** Verbosity: 0=little, 1=more couts */
256
253
    static const int _n_trackers = 2;        /** Number of trackers */
257
254
    static const int _n_stations = 5;        /** Number of stations per tracker */
258
255
    static const int _n_bins = 100;          /** Number of bins in each residuals histogram */
279
276
    static const double _Pz_min = 50.;  /** MeV/c min Pz for helical tracks (this is a guess) */
280
277
 
281
278
    LeastSquaresFitter _lsq;  /** The linear least squares fitting class instance */
282
 
 
283
 
    // Some output files - only to be kept when in development stages
284
 
    std::ofstream * _f_res;
285
 
    std::ofstream * _f_res_good;
286
 
    std::ofstream * _f_res_chosen;
287
 
    std::ofstream * _f_trks;
288
279
};
289
280
 
290
281
} // ~namespace MAUS