LArSoft  v09_90_00
Liquid Argon Software toolkit - https://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 */
22 #ifndef GFWIREPOINTHITPOLICY_H
23 #define GFWIREPOINTHITPOLICY_H
24 
25 #include "TMatrixT.h"
26 #include "TObject.h"
27 
29 
48 namespace genf {
49 
50  class GFAbsRecoHit;
51  class GFAbsTrackRep;
52 
53  class GFWirepointHitPolicy : public TObject {
54  public:
56 
57  // Operations ----------------------
61 
64  TMatrixT<Double_t> hitCoord(GFAbsRecoHit*, const GFDetPlane&);
65 
68  TMatrixT<Double_t> hitCov(GFAbsRecoHit*, const GFDetPlane&);
69 
72  void checkPlane(GFAbsRecoHit*, const GFDetPlane&);
73 
74  virtual ~GFWirepointHitPolicy() { ; }
75 
76  double getMaxDistance() { return fMaxdistance; }
77  void setMaxDistance(double d) { fMaxdistance = d; }
78 
79  const std::string& getName() { return fPolicyName; }
80 
81  private:
82  static const std::string fPolicyName;
83 
84  // Private Data Members ------------
86  double fMaxdistance;
87  // Private Methods -----------------
88 
89  // public:
90  // ClassDef(GFWirepointHitPolicy,1);
91  };
92 
93 } // namespace genf
94 #endif
95 
const std::string & getName()
const GFDetPlane & detPlane(GFAbsRecoHit *, GFAbsTrackRep *)
Get detector plane.
Generic Interface to magnetic fields in GENFIT.
Definition: GFAbsBField.h:34
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:81
Float_t d
Definition: plot.C:235
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.