PandaRoot
PndSTEGem.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 
29 #ifndef PndSTEGem_H_
30 #define PndSTEGem_H_
31 
32 #include "PndSTETrackBase.h"
33 #include "PndGemHit.h"
34 #include "TClonesArray.h"
35 
36 #include <vector>
37 
38 class TClonesArray;
39 
40 class PndSTEGem : public PndSTETrackBase {
41  public:
43  PndSTEGem(){};
44 
46  virtual ~PndSTEGem(){
47 
48  };
49 
56  void AddHits(TClonesArray *inputTrackArray, TClonesArray *inputTrackCandArray, TClonesArray *inputHitArray);
57 
58  private:
67  std::vector<PndGemHit *> FindBestHitsWithHelix(PndTrack inputTrack, TClonesArray *gemHitArray);
68 
69  ClassDef(PndSTEGem, 1);
70 };
71 
72 #endif /* PndSTEGem_H_ */
PndSTEGem()
Definition: PndSTEGem.h:43
virtual ~PndSTEGem()
Definition: PndSTEGem.h:46
void AddHits(TClonesArray *inputTrackArray, TClonesArray *inputTrackCandArray, TClonesArray *inputHitArray)
Function to add the chosen hits to a track candidate.