~c-e-pidcott/maus/devel

« back to all changes in this revision

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

  • Committer: c.e.pidcott at ac
  • Date: 2012-12-03 13:48:31 UTC
  • mfrom: (674.1.22 itaylor-devel)
  • Revision ID: c.e.pidcott@warwick.ac.uk-20121203134831-zeimkngw2w2led4w
Ian'sĀ developmentĀ branch

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:8080/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
 
 
18
 
 
19
#ifndef HELICALTRACK_HH
 
20
#define HELICALTRACK_HH
 
21
 
 
22
// C headers
 
23
#include <assert.h>
 
24
#include <math.h>
 
25
 
 
26
// C++ headers
 
27
#include <string>
 
28
#include <vector>
 
29
 
 
30
#include "TMath.h"
 
31
#include "TMatrixD.h"
 
32
 
 
33
#include "src/common_cpp/Recon/Kalman/KalmanTrack.hh"
 
34
#include "src/common_cpp/DataStructure/SciFiHelicalPRTrack.hh"
 
35
 
 
36
namespace MAUS {
 
37
 
 
38
class HelicalTrack : public KalmanTrack {
 
39
 public:
 
40
 
 
41
  virtual ~HelicalTrack();
 
42
 
 
43
  void update_propagator(KalmanSite *old_site, KalmanSite *new_site);
 
44
};
 
45
 
 
46
} // ~namespace MAUS
 
47
 
 
48
#endif