FairRoot/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 
53  // Constructors/Destructors ---------
55 
56 
57  // Accessors -----------------------
58 
62 
63 
64  // Modifiers -----------------------
65 
74 
75  // Operations ----------------------
78  TMatrixT<double> hitCoord(GFAbsRecoHit*,const GFDetPlane&);
79 
82  TMatrixT<double> hitCov(GFAbsRecoHit*,const GFDetPlane&);
83 
84  virtual ~GFPlanarHitPolicy(){;}
85 
86  const std::string& getName(){return fPolicyName;}
87 
88  private:
89  static const std::string fPolicyName;
90 
91 protected:
92 
93  // Private Data Members ------------
94 
98 
99  // Private Methods -----------------
100 
101  public:
102  ClassDef(GFPlanarHitPolicy,1)
103 
104 };
105 
106 #endif
107 
Base Class for genfit track representations. Defines interface for track parameterizations.
Definition: GFAbsTrackRep.h:80
Double_t p
Definition: anasim.C:58
Detector plane genfit geometry class.
Definition: GFDetPlane.h:59
TMatrixT< double > hitCov(GFAbsRecoHit *, const GFDetPlane &)
Hit covariances in 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()
static const std::string fPolicyName
const GFDetPlane & detPlane(GFAbsRecoHit *, const GFAbsTrackRep *)
Returns the physical detector plane.
TMatrixT< double > hitCoord(GFAbsRecoHit *, const GFDetPlane &)
Hit coordinates in detector plane.
Policy class implementing a planar hit geometry.
Base Class for representing a Hit in GENFIT.
Definition: GFAbsRecoHit.h:73
GFDetPlane fPhysicalDetPlane
Physical detector plane. Given by detector hardware.