PandaRoot
GFPlanarHitPolicy.h
Go to the documentation of this file.
1 /* Copyright 2008-2010, Technische Universitaet Muenchen,
2  Authors: Christian Hoeppner & Sebastian Neubert
3 
4  This file is part of GENFIT.
5 
6  GENFIT is free software: you can redistribute it and/or modify
7  it under the terms of the GNU Lesser General Public License as published
8  by the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  GENFIT is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU Lesser General Public License for more details.
15 
16  You should have received a copy of the GNU Lesser General Public License
17  along with GENFIT. If not, see <http://www.gnu.org/licenses/>.
18 */
23 #ifndef GFPLANARHITPOLICY_H
24 #define GFPLANARHITPOLICY_H
25 
26 #include <iostream>
27 #include <string>
28 
29 #include "TMatrixT.h"
30 #include "TObject.h"
31 
32 #include "GFDetPlane.h"
33 
34 class GFAbsRecoHit;
35 class GFAbsTrackRep;
36 
50 class GFPlanarHitPolicy : public TObject {
51  public:
52  // Constructors/Destructors ---------
54 
55  // Accessors -----------------------
56 
59  const GFDetPlane &detPlane(GFAbsRecoHit *, const GFAbsTrackRep *);
60 
61  // Modifiers -----------------------
62 
70  void setDetPlane(const GFDetPlane &p) { fPhysicalDetPlane = p; }
71 
72  // Operations ----------------------
75  TMatrixT<double> hitCoord(GFAbsRecoHit *, const GFDetPlane &);
76 
79  TMatrixT<double> hitCov(GFAbsRecoHit *, const GFDetPlane &);
80 
81  virtual ~GFPlanarHitPolicy() { ; }
82 
83  const std::string &getName() { return fPolicyName; }
84 
85  private:
86  static const std::string fPolicyName;
87 
88  protected:
89  // Private Data Members ------------
90 
94 
95  // Private Methods -----------------
96 
97  public:
98  ClassDef(GFPlanarHitPolicy, 1)
99 };
100 
101 #endif
102 
Base Class for genfit track representations. Defines interface for track parameterizations.
Definition: GFAbsTrackRep.h:80
Detector plane genfit geometry class.
Definition: GFDetPlane.h:58
const GFDetPlane & detPlane(GFAbsRecoHit *, const GFAbsTrackRep *)
Returns the physical detector plane.
virtual ~GFPlanarHitPolicy()
void setDetPlane(const GFDetPlane &p)
Set physical detector plane. Needs to be called before hit can be used.
const std::string & getName()
Policy class implementing a planar hit geometry.
Base Class for representing a Hit in GENFIT.
Definition: GFAbsRecoHit.h:71
GFDetPlane fPhysicalDetPlane
Physical detector plane. Given by detector hardware.
TMatrixT< double > hitCov(GFAbsRecoHit *, const GFDetPlane &)
Hit covariances in detector plane.
TMatrixT< double > hitCoord(GFAbsRecoHit *, const GFDetPlane &)
Hit coordinates in detector plane.