BOSS 7.0.1
BESIII Offline Software System
Loading...
Searching...
No Matches
InstallArea/include/TrkReco/TrkReco/T3DLineFitter.h
Go to the documentation of this file.
1//-----------------------------------------------------------------------------
2// $Id: T3DLineFitter.h,v 1.15 2012/05/28 05:16:29 maoh Exp $
3//-----------------------------------------------------------------------------
4// Filename : T3DLineFitter.h
5// Section : Tracking
6// Owner : Kenji Inami
7// Email : [email protected]
8//-----------------------------------------------------------------------------
9// Description : A class to fit a TTrackBase object to a 3D line.
10// See http://bsunsrv1.kek.jp/~yiwasaki/tracking/
11//-----------------------------------------------------------------------------
12
13#ifndef T3DLINEFITTER_FLAG_
14#define T3DLINEFITTER_FLAG_
15
16#ifdef TRKRECO_DEBUG_DETAIL
17#ifndef TRKRECO_DEBUG
18#define TRKRECO_DEBUG
19#endif
20#endif
21
22#include <string>
23
24#define HEP_SHORT_NAMES
25#ifndef CLHEP_VECTOR3D_H
26#include "CLHEP/Geometry/Vector3D.h"
27#endif
28#ifndef ENABLE_BACKWARDS_COMPATIBILITY
30#endif
31
32//#include "helix/Helix.h"
33//#include "TrkReco/Helix.h"
34#include "TrackUtil/Helix.h"
35#include "TrkReco/TMFitter.h"
36
37class TMLink;
38class T3DLine;
39
40/// A class to fit a TTrackBase object to a 3D line.
41class T3DLineFitter : public TMFitter {
42
43public:
44 /// Constructor.
45 T3DLineFitter(const std::string & name);
46 T3DLineFitter(const std::string & name,bool m_sag,int m_prop,bool m_tof);
47
48 /// Destructor
49 virtual ~T3DLineFitter();
50
51public:// Selectors
52 /// dumps debug information.
53 void dump(const std::string & message = std::string(""),
54 const std::string & prefix = std::string("")) const;
55
56public:// Modifiers
57 virtual int fit(TTrackBase &) const;
58 virtual int fit(TTrackBase &, float t0Offset) const;
59
60 void sag(bool);
61 void propagation(int);
62 void tof(bool);
63
64private:
65 /// calculates dXda. 'TMLink' and 'T3DLine' are inputs. Others are outputs.
66 int dxda(const TMLink&,
67 const T3DLine&,
68 Vector & dxda,
69 Vector & dyda,
70 Vector & dzda,
71 HepVector3D & wireDirection) const;
72
73 /// calculates drift distance and its error.
74 void drift(const T3DLine &,
75 const TMLink &,
76 float t0Offset,
77 double & distance,
78 double & err) const;
79
80private:
81 bool _sag;
82 int _propagation;
83 bool _tof;
84
85};
86
87//-----------------------------------------------------------------------------
88
89#ifdef TRKRECO_NO_INLINE
90#define inline
91#else
92#undef inline
93#define T3DLINEFITTER_INLINE_DEFINE_HERE
94#endif
95
96#ifdef T3DLINEFITTER_INLINE_DEFINE_HERE
97
98#endif
99
100#undef inline
101
102#endif /* T3DLINEFITTER_FLAG_ */
HepGeom::Vector3D< double > HepVector3D
A class to fit a TTrackBase object to a 3D line.
void dump(const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
dumps debug information.
void propagation(int)
virtual int fit(TTrackBase &) const
void sag(bool)
void tof(bool)
virtual ~T3DLineFitter()
Destructor.
A class to represent a track in tracking.
A class to fit a TTrackBase object.
const std::string & name(void) const
returns name.
A virtual class for a track class in tracking.