Class Reference for E1039 Core & Analysis Software
KalmanFilter.h
Go to the documentation of this file.
1 /*
2 KalmanFilter.h
3 
4 Definition of the light-weighted version of class KalmanFilter, provide only the core function
5 of the kalman filter, includes:
6 1. prediction
7 2. filter
8 3. smooth
9 
10 Author: Kun Liu, liuk@fnal.gov
11 Created: 10-14-2011
12 */
13 
14 #ifndef _KALMANFILTER_H
15 #define _KALMANFILTER_H
16 
17 #include <GlobalConsts.h>
18 
19 #include <phfield/PHField.h>
20 
21 #include <list>
22 #include <vector>
23 
24 #include <geom_svc/GeomSvc.h>
25 #include "KalmanUtil.h"
26 #include "GenFitExtrapolator.h"
27 
29 {
30 public:
32  static KalmanFilter* instance();
33  void close();
34 
36  KalmanFilter(bool limitedStep = true);
37  bool initExtrapolator(const PHField* field, const TGeoManager *geom);
38 
40  bool predict(Node& _node);
41  bool filter(Node& _node);
42  bool smooth(Node& _node, Node& _node_prev);
43 
45  void setCurrTrkpar(Node& _node) { _trkpar_curr = _node.getFiltered(); }
46  void setCurrTrkpar(TrkPar& _trkpar) { _trkpar_curr = _trkpar; }
47 
49  bool fit_node(Node& _node);
50 
52  void enableDumpCorrection() { _extrapolator.setPropCalc(true); _extrapolator.setLengthCalc(true); }
53 
54 private:
56  static KalmanFilter *p_kmfit;
57 
59  TrkPar _trkpar_curr;
60 
62  GenFitExtrapolator _extrapolator;
63 };
64 
65 #endif
void setPropCalc(bool option)
External control of modes.
void setLengthCalc(bool option)
bool filter(Node &_node)
bool initExtrapolator(const PHField *field, const TGeoManager *geom)
void setCurrTrkpar(TrkPar &_trkpar)
Definition: KalmanFilter.h:46
bool smooth(Node &_node, Node &_node_prev)
static KalmanFilter * instance()
singlton instance
void setCurrTrkpar(Node &_node)
set the current track parameter using the current node
Definition: KalmanFilter.h:45
bool fit_node(Node &_node)
Fit one node.
void enableDumpCorrection()
Enable the dump mode: stop calc prop matrix, start calc travel length.
Definition: KalmanFilter.h:52
bool predict(Node &_node)
Kalman filter steps.
KalmanFilter(bool limitedStep=true)
Real constructor.
TrkPar & getFiltered()
Definition: KalmanUtil.h:107
transient DST object for field storage and access
Definition: PHField.h:14