PandaRoot
PndFtsRecoHit.h
Go to the documentation of this file.
1 #ifndef PNDFTSRECOHIT_HH
2 #define PNDFTSRECOHIT_HH
3 
4 // Base Class Headers ----------------
5 #include "GFRecoHitIfc.h"
6 #include "GFWireHitPolicy.h"
7 #include "PndFtsHit.h"
8 #include "TClonesArray.h"
9 
10 // Collaborating Class Headers -------
11 #include <ostream> // remove if you do not need streaming op
12 
13 // Collaborating Class Declarations --
14 class PndFtsHit;
15 class TClonesArray;
16 
18 
19 class PndFtsRecoHit : public WireHitRecoHit {
20  public:
21  // Constructors/Destructors ---------
22  PndFtsRecoHit();
23  PndFtsRecoHit(PndFtsHit *currenthit);
24  PndFtsRecoHit(PndFtsHit *currenthit, TClonesArray *tubeArr);
25 
26  virtual ~PndFtsRecoHit();
27 
28  virtual GFAbsRecoHit *clone() { return new PndFtsRecoHit(*this); };
29 
30  // Operations ----------------------
31  virtual TMatrixT<double> getHMatrix(const GFAbsTrackRep *stateVector);
32 
33  private:
34  // Private Data Members ------------
35 
36  protected:
37  static const int NparHitRep = 7;
38 
39  // Private Methods -----------------
40 
41  public:
43 };
44 
45 #endif
46 
47 //--------------------------------------------------------------
48 // $Log$
49 //--------------------------------------------------------------
Base Class for genfit track representations. Defines interface for track parameterizations.
Definition: GFAbsTrackRep.h:80
RecoHit interface template class. Provides comfortable interface to create RecoHits.
Definition: GFRecoHitIfc.h:58
virtual GFAbsRecoHit * clone()
Get clone of this object.
Definition: PndFtsRecoHit.h:28
GFRecoHitIfc< GFWireHitPolicy > WireHitRecoHit
Definition: PndFtsRecoHit.h:15
virtual ~PndFtsRecoHit()
static const int NparHitRep
Definition: PndFtsRecoHit.h:37
virtual TMatrixT< double > getHMatrix(const GFAbsTrackRep *stateVector)
Get transformation matrix. Transformation between hit coordinates and track representation coordinate...
Base Class for representing a Hit in GENFIT.
Definition: GFAbsRecoHit.h:71
ClassDef(GFRecoHitIfc, 1)