LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
KHitWireLine.cxx
Go to the documentation of this file.
1 
12 #include "cetlib_except/exception.h"
17 
18 namespace trkf {
19 
33  const std::shared_ptr<const Surface>& psurf)
34  : KHit(psurf), fHit(hit)
35  {
36  // Extract wire id.
37  geo::WireID wireid = hit->WireID();
38 
39  // Extract time information from hit.
40 
41  double t = hit->PeakTime();
42  double terr = hit->SigmaPeakTime();
43 
44  // Don't let the time error be less than 1./sqrt(12.) ticks.
45  // This should be removed when hit errors are fixed.
46 
47  if (terr < 1. / std::sqrt(12.)) terr = 1. / std::sqrt(12.);
48 
49  // Calculate position and error.
50 
51  double x = detProp.ConvertTicksToX(t, wireid.Plane, wireid.TPC, wireid.Cryostat);
52  double xerr = terr * detProp.GetXTicksCoefficient();
53 
54  // Check the surface (determined by wire id + drift time). If the
55  // surface pointer is null, make a new SurfWireLine surface and
56  // update the base class appropriately. Otherwise, just check
57  // that the specified surface agrees with the wire id + drift time.
58 
59  if (psurf.get() == 0) {
60  std::shared_ptr<const Surface> new_psurf(new SurfWireLine(wireid, x));
61  setMeasSurface(new_psurf);
62  }
63  else {
64  SurfWireLine check_surf(wireid, x);
65  if (!check_surf.isEqual(*psurf))
66  throw cet::exception("KHitWireLine") << "Measurement surface doesn't match hit.\n";
67  }
68 
69  setMeasPlane(wireid.Plane);
70 
71  // Update measurement vector and error matrix.
72 
73  trkf::KVector<1>::type mvec(1, 0.);
74  setMeasVector(mvec);
75 
77  merr(0, 0) = xerr * xerr;
78  setMeasError(merr);
79 
80  // Set the unique id from a combination of the channel number and the time.
81 
82  fID = (hit->Channel() % 200000) * 10000 + (int(std::abs(t)) % 10000);
83  }
84 
93  KHitWireLine::KHitWireLine(const geo::WireID& wireid, double x, double xerr)
94  : KHit(std::shared_ptr<const Surface>(new SurfWireLine(wireid, x)))
95  {
96  // Get services.
97 
99 
100  // Get plane number.
101 
102  setMeasPlane(wireid.Plane);
103 
104  // Update measurement vector and error matrix.
105  // The measured value (aka impact parameter) is always zero.
106 
107  trkf::KVector<1>::type mvec(1, 0.);
108  setMeasVector(mvec);
109 
111  merr(0, 0) = xerr * xerr;
112  setMeasError(merr);
113  }
114 
116  KVector<1>::type& pvec,
117  KSymMatrix<1>::type& perr,
118  KHMatrix<1>::type& hmatrix) const
119  {
120  // Make sure that the track surface and the measurement surface are the
121  // same. Throw an exception if they are not.
122 
123  if (!getMeasSurface()->isEqual(*tre.getSurface()))
124  throw cet::exception("KHitWireLine")
125  << "Track surface not the same as measurement surface.\n";
126 
127  // Prediction is the signed impact parameter (parameter 0).
128 
129  int size = tre.getVector().size();
130  pvec.resize(1, /* preserve */ false);
131  pvec.clear();
132  pvec(0) = tre.getVector()(0);
133 
134  perr.resize(1, /* preserve */ false);
135  perr.clear();
136  perr(0, 0) = tre.getError()(0, 0);
137 
138  // Update prediction error to include contribution from track slope.
139 
141  double pitch = geom->WirePitch();
142  double phi = tre.getVector()(2);
143  double cosphi = std::cos(phi);
144  double slopevar = pitch * pitch * cosphi * cosphi / 12.;
145  perr(0, 0) += slopevar;
146 
147  // Hmatrix - dr/dr = 1., all others are zero.
148 
149  hmatrix.resize(1, size, /* preserve */ false);
150  hmatrix.clear();
151  hmatrix(0, 0) = 1.;
152 
153  return true;
154  }
155 } // end namespace trkf
void setMeasSurface(const std::shared_ptr< const Surface > &psurf)
Measurement surface.
Definition: KHitBase.h:93
Float_t x
Definition: compare.C:6
const TrackError & getError() const
Track error matrix.
Definition: KETrack.h:52
const std::shared_ptr< const Surface > & getSurface() const
Surface.
Definition: KTrack.h:53
double GetXTicksCoefficient(int t, int c) const
constexpr auto abs(T v)
Returns the absolute value of the argument.
CryostatID_t Cryostat
Index of cryostat.
Definition: geo_types.h:211
STL namespace.
virtual bool isEqual(const Surface &surf) const
Test two surfaces for equality, within tolerance.
Definition: SurfYZLine.cxx:259
geo::WireID const & WireID() const
Initial tdc tick for hit.
Definition: Hit.h:280
ublas::symmetric_matrix< double, ublas::lower, ublas::row_major, ublas::bounded_array< double, N *(N+1)/2 > > type
decltype(auto) constexpr size(T &&obj)
ADL-aware version of std::size.
Definition: StdUtils.h:101
void setMeasVector(const typename KVector< N >::type &mvec)
Set measurement vector.
Definition: KHit.h:93
ublas::vector< double, ublas::bounded_array< double, N > > type
Linear surface defined by wire id and x coordinate.
void setMeasError(const typename KSymMatrix< N >::type &merr)
Set measurement error.
Definition: KHit.h:96
PlaneID_t Plane
Index of the plane within its TPC.
Definition: geo_types.h:481
Detector simulation of raw signals on wires.
int fID
Unique id.
Definition: KHitBase.h:119
double ConvertTicksToX(double ticks, int p, int t, int c) const
KMatrix< N, 5 >::type type
float PeakTime() const
Time of the signal peak, in tick units.
Definition: Hit.h:220
const TrackVector & getVector() const
Track state vector.
Definition: KTrack.h:54
Kalman filter wire-time measurement on a SurfWireLine surface.
KHitWireLine(const detinfo::DetectorPropertiesData &detProp, const art::Ptr< recob::Hit > &hit, const std::shared_ptr< const Surface > &psurf)
Constructor from Hit.
bool subpredict(const KETrack &tre, KVector< 1 >::type &pvec, KSymMatrix< 1 >::type &perr, KHMatrix< 1 >::type &hmatrix) const override
void setMeasPlane(int plane)
Measurement plane.
Definition: KHitBase.h:96
float SigmaPeakTime() const
Uncertainty for the signal peak, in tick units.
Definition: Hit.h:224
TPCID_t TPC
Index of the TPC within its cryostat.
Definition: geo_types.h:399
raw::ChannelID_t Channel() const
ID of the readout channel the hit was extracted from.
Definition: Hit.h:268
Length_t WirePitch(PlaneID const &planeid=plane_zero) const
Returns the distance between two consecutive wires.
art framework interface to geometry description
const std::shared_ptr< const Surface > & getMeasSurface() const
Measurement surface.
Definition: KHitBase.h:82
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33