~mwinter4/maus/ckov-update

« back to all changes in this revision

Viewing changes to src/common_cpp/Recon/Global/TrackFitter.hh

  • Committer: Chris Rogers
  • Date: 2012-11-23 11:19:42 UTC
  • mfrom: (659.1.50 release-candidate)
  • Revision ID: chris.rogers@stfc.ac.uk-20121123111942-5wi23zn7zx396q2d
Tags: MAUS-v0.4.1
MAUS-v0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of MAUS: http://micewww.pp.rl.ac.uk/projects/maus
 
2
 *
 
3
 * MAUS is free software: you can redistribute it and/or modify
 
4
 * it under the terms of the GNU General Public License as published by
 
5
 * the Free Software Foundation, either version 3 of the License, or
 
6
 * (at your option) any later version.
 
7
 *
 
8
 * MAUS is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with MAUS.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 */
 
17
/* Author: Peter Lane
 
18
 */
 
19
 
 
20
#ifndef SRC_COMMON_CPP_RECONSTRUCTION_TRACK_FITTER_HH
 
21
#define SRC_COMMON_CPP_RECONSTRUCTION_TRACK_FITTER_HH
 
22
 
 
23
#include <vector>
 
24
 
 
25
#include "Recon/Global/TrackPoint.hh"
 
26
#include "Recon/Global/Track.hh"
 
27
 
 
28
namespace MAUS {
 
29
 
 
30
class OpticsModel;
 
31
 
 
32
namespace recon {
 
33
namespace global {
 
34
 
 
35
class TrackFitter {
 
36
 public:
 
37
  TrackFitter(const MAUS::OpticsModel & optics_model, const double start_plane)
 
38
      : optics_model_(&optics_model), start_plane_(start_plane) { }
 
39
  virtual ~TrackFitter() { }
 
40
  virtual void Fit(const Track & detector_events, Track & track) = 0;
 
41
 protected:
 
42
  MAUS::OpticsModel const * optics_model_;
 
43
  const double start_plane_;
 
44
 
 
45
  TrackFitter() : optics_model_(NULL), start_plane_(0.0) { }
 
46
};
 
47
 
 
48
}  // namespace global
 
49
}  // namespace recon
 
50
}  // namespace MAUS
 
51
 
 
52
#endif