LArSoft  v06_85_00
Liquid Argon Software toolkit - http://larsoft.org/
GFWirepointHitPolicy.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 */
24 #ifndef GFWIREPOINTHITPOLICY_H
25 #define GFWIREPOINTHITPOLICY_H
26 
27 #include "TMatrixT.h"
28 #include "TObject.h"
29 
31 
50 namespace genf {
51 
52 class GFAbsRecoHit;
53 class GFAbsTrackRep;
54 
55 class GFWirepointHitPolicy : public TObject {
56 public:
57 
58 
60 
61  // Operations ----------------------
65 
68  TMatrixT<Double_t> hitCoord(GFAbsRecoHit*,const GFDetPlane&);
69 
72  TMatrixT<Double_t> hitCov(GFAbsRecoHit*,const GFDetPlane&);
73 
76  void checkPlane(GFAbsRecoHit*,const GFDetPlane&);
77 
78  virtual ~GFWirepointHitPolicy(){;}
79 
80  double getMaxDistance(){return fMaxdistance;}
81  void setMaxDistance(double d){fMaxdistance=d;}
82 
83  const std::string& getName(){return fPolicyName;}
84  private:
85  static const std::string fPolicyName;
86 
87  // Private Data Members ------------
89  double fMaxdistance;
90  // Private Methods -----------------
91 
92  // public:
93  // ClassDef(GFWirepointHitPolicy,1);
94 
95 };
96 
97 } // namespace genf
98 #endif
99 
const std::string & getName()
const GFDetPlane & detPlane(GFAbsRecoHit *, GFAbsTrackRep *)
Get detector plane.
Generic Interface to magnetic fields in GENFIT.
TMatrixT< Double_t > hitCov(GFAbsRecoHit *, const GFDetPlane &)
Hit covariances in detector plane.
Base Class for genfit track representations. Defines interface for track parameterizations.
Definition: GFAbsTrackRep.h:85
Float_t d
Definition: plot.C:237
TMatrixT< Double_t > hitCoord(GFAbsRecoHit *, const GFDetPlane &)
Hit coordinates in detector plane.
static const std::string fPolicyName
void checkPlane(GFAbsRecoHit *, const GFDetPlane &)
Check if the detector plane is valid.