Belle II Software  release-08-01-10
Fitter.cc
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 //-----------------------------------------------------------------------------
10 // Description : A class to fit a TTrackBase object.
11 //-----------------------------------------------------------------------------
12 
13 #define TRGCDC_SHORT_NAMES
14 
15 #include "trg/cdc/Fitter.h"
16 #include "trg/cdc/TrackBase.h"
17 
18 namespace Belle2 {
24  TRGCDCFitter::TRGCDCFitter(const std::string& name) : _name(name)
25  {
26  }
27 
29  {
30  }
31 
32  void
33  TRGCDCFitter::fitDone(TCTBase& t) const
34  {
35  t._fitted = true;
36  }
37 
38  void
39  TRGCDCFitter::dump(const std::string&, const std::string&) const
40  {
41  }
42 
44 } // namespace Belle2
45 
void dump(const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
dump debug info
Definition: Fitter.cc:39
virtual ~TRGCDCFitter()
Destructor.
Definition: Fitter.cc:28
void fitDone(TRGCDCTrackBase &) const
sets the fitted flag. (Bad implementation)
Definition: Fitter.cc:33
TRGCDCFitter(const std::string &name)
Constructor.
Definition: Fitter.cc:24
Abstract base class for different kinds of events.