Belle II Software development
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
18namespace Belle2 {
23
25 {
26 }
27
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
std::string _name
name
Definition Fitter.h:66
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
const std::string & name(void) const
returns name.
Definition Fitter.h:82
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.