PandaRoot
PndMdtTrkFinder.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 #ifndef PNDMDTTRKFINDER_H
14 #define PNDMDTTRKFINDER_H 1
15 
16 #include <map>
17 #include <vector>
18 
19 #include "FairTask.h"
20 #include "PndMdtTrk.h"
21 #include "PndMdtRecoPar.h"
22 
23 #include "PndTrack.h"
24 #include "FairGeanePro.h"
25 
26 class TClonesArray;
27 
28 using std::map;
29 using std::vector;
30 
31 class PndMdtTrkFinder : public FairTask {
32 
33  public:
36 
39 
41  virtual InitStatus Init();
42 
44  virtual void Exec(Option_t *opt);
45 
46  virtual void SetParContainers();
47 
48  private:
49  PndMdtTrk *AddTrk(PndMdtTrk *track);
50 
52  TClonesArray *fHitArray;
53 
55  TClonesArray *fTrkArray;
56 
57  // PndMdtRecoPar *fRecoPar;
58 
59  ClassDef(PndMdtTrkFinder, 1);
60 };
61 
62 #endif
virtual void Exec(Option_t *opt)
virtual InitStatus Init()
virtual void SetParContainers()