Belle II Software  release-05-01-25
Fitter.cc
1 //-----------------------------------------------------------------------------
2 // $Id$
3 //-----------------------------------------------------------------------------
4 // Filename : Fitter.cc
5 // Section : TRG CDC
6 // Owner : Yoshihito Iwasaki
7 // Email : yoshihito.iwasaki@kek.jp
8 //-----------------------------------------------------------------------------
9 // Description : A class to fit a TTrackBase object.
10 //-----------------------------------------------------------------------------
11 // $Log$
12 //-----------------------------------------------------------------------------
13 
14 #define TRGCDC_SHORT_NAMES
15 
16 #include "trg/cdc/Fitter.h"
17 #include "trg/cdc/TrackBase.h"
18 
19 namespace Belle2 {
25  TRGCDCFitter::TRGCDCFitter(const std::string& name) : _name(name)
26  {
27  }
28 
30  {
31  }
32 
33  void
34  TRGCDCFitter::fitDone(TCTBase& t) const
35  {
36  t._fitted = true;
37  }
38 
39  void
40  TRGCDCFitter::dump(const std::string&, const std::string&) const
41  {
42  }
43 
45 } // namespace Belle2
46 
Belle2::TRGCDCFitter::dump
void dump(const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
dump debug info
Definition: Fitter.cc:40
Belle2::TRGCDCFitter::~TRGCDCFitter
virtual ~TRGCDCFitter()
Destructor.
Definition: Fitter.cc:29
Belle2::TRGCDCFitter::TRGCDCFitter
TRGCDCFitter(const std::string &name)
Constructor.
Definition: Fitter.cc:25
Belle2::TRGCDCFitter::fitDone
void fitDone(TRGCDCTrackBase &) const
sets the fitted flag. (Bad implementation)
Definition: Fitter.cc:34
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19