LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
GFWireHitPolicy.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 GFWIREHITPOLICY_H
23 #define GFWIREHITPOLICY_H
24 
25 #include "TMatrixT.h"
26 #include "TObject.h"
27 
29 
30 namespace genf {
31 
32  class GFAbsRecoHit;
33  class GFAbsTrackRep;
34 
52  class GFWireHitPolicy : public TObject {
53  public:
55 
56  // 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 ~GFWireHitPolicy() { ; }
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(GFWireHitPolicy,1);
91  };
92 } // namespace genf
93 #endif
94 
const std::string & getName()
Generic Interface to magnetic fields in GENFIT.
Definition: GFAbsBField.h:34
const GFDetPlane & detPlane(GFAbsRecoHit *, GFAbsTrackRep *)
Get detector plane Calls GFAbsTrackRep::extrapolateToLine for POCA.
Base Class for genfit track representations. Defines interface for track parameterizations.
Definition: GFAbsTrackRep.h:81
void checkPlane(GFAbsRecoHit *, const GFDetPlane &)
Check if the detector plane is valid.
policy class for hits in wire detectors (STT and DCH) which do not measure the coordinate along the w...
Float_t d
Definition: plot.C:235
TMatrixT< Double_t > hitCoord(GFAbsRecoHit *, const GFDetPlane &)
Hit coordinates in detector plane.
void setMaxDistance(double d)
TMatrixT< Double_t > hitCov(GFAbsRecoHit *, const GFDetPlane &)
Hit covariances in detector plane.
static const std::string fPolicyName