PandaRoot
PndHypRecoSPHit.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 // File and Version Information:
15 // $Id$
16 //
17 // Description:
18 // an xyz reco hit (z being considered as a free parameter)
19 // hitCoord=(x,y)^T
20 // s=z
21 //
22 // Environment:
23 // Software developed for the PANDA Detector at FAIR.
24 //
25 // Author List:
26 // Sebastian Neubert TUM (original author)
27 //
28 // modified for hyp purpose by A. Sanchez
29 //-----------------------------------------------------------
30 
31 #ifndef PNDHYPRECOSPHIT_HH
32 #define PNDHYPRECOSPHIT_HH
33 
34 // Base Class Headers ----------------
35 #include "GFRecoHitIfc.h"
36 #include "GFSpacepointHitPolicy.h"
37 
38 // Collaborating Class Headers -------
39 #include <ostream> // remove if you do not need streaming op
40 
41 // Collaborating Class Declarations --
42 class FairMCPoint;
43 class FairHit;
44 class PndHypHit;
45 
47 
49  public:
50  // Constructors/Destructors ---------
52  PndHypRecoSPHit(double x, double y, double z, double sigx, double sigy, double sigz);
53  PndHypRecoSPHit(const TVector3 &pos, const TVector3 &sig);
54  PndHypRecoSPHit(PndHypHit *point);
55 
56  virtual ~PndHypRecoSPHit();
57 
58  virtual GFAbsRecoHit *clone();
59 
60  // Operations ----------------------
61  virtual TMatrixT<double> getHMatrix(const GFAbsTrackRep *stateVector);
62 
63  private:
64  // Private Data Members ------------
65  static const int NparHitRep = 3;
66 
67  // Private Methods -----------------
68 
69  public:
71 };
72 
73 #endif
74 
75 //--------------------------------------------------------------
76 // $Log$
77 //--------------------------------------------------------------
Base Class for genfit track representations. Defines interface for track parameterizations.
Definition: GFAbsTrackRep.h:92
virtual GFAbsRecoHit * clone()
Get clone of this object.
virtual ~PndHypRecoSPHit()
Base Class for representing a Hit in GENFIT.
Definition: GFAbsRecoHit.h:83
virtual TMatrixT< double > getHMatrix(const GFAbsTrackRep *stateVector)
Get transformation matrix. Transformation between hit coordinates and track representation coordinate...
GFRecoHitIfc< GFSpacepointHitPolicy > SpacepointRecoHit