PandaRoot
PndSttTrackFitter.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 // -------------------------------------------------------------------------
14 // ----- PndSttTrackFitter header file -----
15 // ----- Created 18/02/05 by V. Friese -----
16 // -------------------------------------------------------------------------
17 
27 #ifndef PNDSTTTRACKFITTER
28 #define PNDSTTTRACKFITTER 1
29 
30 #include "TObject.h"
31 #include "FairTrackParam.h"
32 
33 class PndSttTrack;
34 class PndTrackCand;
35 class TClonesArray;
36 
37 class PndSttTrackFitter : public TObject {
38 
39  public:
40  virtual void AddHitCollection(TClonesArray *){};
41 
44 
46  virtual ~PndSttTrackFitter(){};
47 
51  virtual void Init(){};
52 
61  virtual Int_t DoFit(PndTrackCand *pTrackCand, PndSttTrack *pTrack, Int_t pidHypo = 211) = 0;
62 
70  virtual void Extrapolate(PndSttTrack *track, Double_t r, FairTrackParam *param) = 0;
71 
73  virtual void SetTubeArray(TClonesArray *tubeArray) = 0;
74 
76 };
77 
78 #endif
virtual ~PndSttTrackFitter()
virtual void Init()
virtual void Extrapolate(PndSttTrack *track, Double_t r, FairTrackParam *param)=0
ClassDef(PndSttTrackFitter, 1)
virtual Int_t DoFit(PndTrackCand *pTrackCand, PndSttTrack *pTrack, Int_t pidHypo=211)=0
virtual void SetTubeArray(TClonesArray *tubeArray)=0
virtual void AddHitCollection(TClonesArray *)