~christopher-hunt08/maus/maus_integrated_kalman

« back to all changes in this revision

Viewing changes to src/common_cpp/Recon/Kalman/KalmanTrackFit.hh

  • Committer: Durga Rajaram
  • Date: 2014-07-16 15:13:05 UTC
  • mfrom: (659.1.92 cand)
  • Revision ID: durga@fnal.gov-20140716151305-q27rv1y9p03v9lks
Tags: MAUS-v0.9, MAUS-v0.9.0
MAUS-v0.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 
54
54
  virtual ~KalmanTrackFit();
55
55
 
 
56
  void SaveGeometry(std::vector<ThreeVector> positions,
 
57
                    std::vector<HepRotation> rotations);
 
58
 
56
59
  /** @brief The main worker. All Kalman Filtering lives within.
57
60
   */
58
61
  void Process(std::vector<KalmanSeed*> seeds, SciFiEvent &event);
76
79
 
77
80
  bool _verbose;
78
81
 
 
82
  std::vector<ThreeVector> _RefPos;
 
83
 
 
84
  std::vector<HepRotation> _Rot;
 
85
 
79
86
  KalmanPropagator *_propagator;
80
87
 
81
88
  KalmanFilter     *_filter;