PandaRoot
PndGemTrackFinder.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 // ----- PndGemTrackFinder header file -----
15 // ----- Created 19.03.2009 by R. Karabowicz -----
16 // ----- according to the PndDchTrackFinder -----
17 // -------------------------------------------------------------------------
18 
29 #ifndef PNDGEMTRACKFINDER
30 #define PNDGEMTRACKFINDER 1
31 
32 #include "TObject.h"
33 
34 class TClonesArray;
35 
36 class PndGemTrackFinder : public TObject {
37 
38  public:
41 
43  virtual ~PndGemTrackFinder(){};
44 
48  virtual void Init(){};
49  virtual void Finish(){};
50 
54  virtual void SetParContainers(){};
55 
64  virtual Int_t DoFind(TClonesArray *hitOrDigiArray, TClonesArray *trackArray, TClonesArray *trackCandArray) = 0;
65 
67 };
68 
69 #endif
virtual Int_t DoFind(TClonesArray *hitOrDigiArray, TClonesArray *trackArray, TClonesArray *trackCandArray)=0
Abstract base class for concrete Gem track finding algorithm.
ClassDef(PndGemTrackFinder, 1)
virtual ~PndGemTrackFinder()
virtual void Finish()
virtual void Init()
virtual void SetParContainers()