3D vertex fitter based on the geometric properties (start position, direction, covariance) of the tracks. More...
#include <Geometric3DVertexFitter.h>
Classes | |
struct | Config |
struct | ParsCovsOnPlane |
struct | TracksFromVertexSorter |
Private Member Functions | |
double | chi2 (const ParsCovsOnPlane &pcp) const |
double | ip (const ParsCovsOnPlane &pcp) const |
double | ipErr (const ParsCovsOnPlane &pcp) const |
double | sip (const ParsCovsOnPlane &pcp) const |
ParsCovsOnPlane | getParsCovsOnPlane (detinfo::DetectorPropertiesData const &detProp, const trkf::VertexWrapper &vtx, const recob::Track &tk) const |
std::pair< TrackState, double > | weightedAverageState (ParsCovsOnPlane &pcop) const |
std::pair< TrackState, double > | weightedAverageState (SVector2 &par1, SVector2 &par2, SMatrixSym22 &cov1, SMatrixSym22 &cov2, recob::tracking::Plane &target) const |
Private Attributes | |
std::unique_ptr< TrackStatePropagator > | prop |
int | debugLevel |
double | sipCut |
3D vertex fitter based on the geometric properties (start position, direction, covariance) of the tracks.
This algorithm fits vertices with following procedure. First, tracks are sorted based on their start positions and the number of hits. A vertex is created from the first two tracks: it is defined as the weighted average of the points of closest approaches of the two tracks. Then the other tracks are added, to the vertex: the updated vertex is defined as the weighted average of the n-1 track vertex position and the point of closest approach of the n-th track. Methods to obtain the (unbiased) propagation distance, impact parameter, impact parameter error, impact parameter significance, and chi2 of a track with respect to the vertex are provided.
Inputs are: a set of tracks; interface is provided allowing these to be passed directly of through a PFParticle hierarchy.
Outputs are: a VertexWrapper, containing the vertex and the reference to the tracks actually used in the fit; also methods to produce recob::VertexAssnMeta are provided.
For configuration options see Geometric3DVertexFitter::Config
Definition at line 52 of file Geometric3DVertexFitter.h.
|
inline |
Definition at line 94 of file Geometric3DVertexFitter.h.
void trkf::Geometric3DVertexFitter::addTrackToVertex | ( | detinfo::DetectorPropertiesData const & | detProp, |
trkf::VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 429 of file Geometric3DVertexFitter.cxx.
double trkf::Geometric3DVertexFitter::chi2 | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 468 of file Geometric3DVertexFitter.cxx.
|
private |
Definition at line 456 of file Geometric3DVertexFitter.cxx.
double trkf::Geometric3DVertexFitter::chi2Unbiased | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 542 of file Geometric3DVertexFitter.cxx.
trkf::VertexWrapper trkf::Geometric3DVertexFitter::closestPointAlongTrack | ( | detinfo::DetectorPropertiesData const & | detProp, |
const recob::Track & | track, | ||
const recob::Track & | other | ||
) | const |
Definition at line 204 of file Geometric3DVertexFitter.cxx.
std::vector< recob::VertexAssnMeta > trkf::Geometric3DVertexFitter::computeMeta | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx | ||
) |
Definition at line 607 of file Geometric3DVertexFitter.cxx.
std::vector< recob::VertexAssnMeta > trkf::Geometric3DVertexFitter::computeMeta | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const std::vector< art::Ptr< recob::Track >> & | arttracks | ||
) |
Definition at line 614 of file Geometric3DVertexFitter.cxx.
std::vector< recob::VertexAssnMeta > trkf::Geometric3DVertexFitter::computeMeta | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const TrackRefVec & | trks | ||
) |
Definition at line 625 of file Geometric3DVertexFitter.cxx.
trkf::VertexWrapper trkf::Geometric3DVertexFitter::fitPFP | ( | detinfo::DetectorPropertiesData const & | detProp, |
size_t | iPF, | ||
const art::ValidHandle< std::vector< recob::PFParticle >> & | inputPFParticle, | ||
const std::unique_ptr< art::FindManyP< recob::Track >> & | assocTracks | ||
) | const |
Definition at line 4 of file Geometric3DVertexFitter.cxx.
trkf::VertexWrapper trkf::Geometric3DVertexFitter::fitTracks | ( | detinfo::DetectorPropertiesData const & | detProp, |
const std::vector< art::Ptr< recob::Track >> & | arttracks | ||
) | const |
Definition at line 33 of file Geometric3DVertexFitter.cxx.
trkf::VertexWrapper trkf::Geometric3DVertexFitter::fitTracks | ( | detinfo::DetectorPropertiesData const & | detProp, |
TrackRefVec & | tracks | ||
) | const |
Definition at line 44 of file Geometric3DVertexFitter.cxx.
trkf::VertexWrapper trkf::Geometric3DVertexFitter::fitTracksWithVtx | ( | detinfo::DetectorPropertiesData const & | detProp, |
const std::vector< art::Ptr< recob::Track >> & | tracks, | ||
const recob::tracking::Point_t & | vtxPos | ||
) | const |
Definition at line 103 of file Geometric3DVertexFitter.cxx.
trkf::VertexWrapper trkf::Geometric3DVertexFitter::fitTracksWithVtx | ( | detinfo::DetectorPropertiesData const & | detProp, |
TrackRefVec & | tracks, | ||
const recob::tracking::Point_t & | vtxPos | ||
) | const |
Definition at line 116 of file Geometric3DVertexFitter.cxx.
trkf::VertexWrapper trkf::Geometric3DVertexFitter::fitTwoTracks | ( | detinfo::DetectorPropertiesData const & | detProp, |
const recob::Track & | tk1, | ||
const recob::Track & | tk2 | ||
) | const |
Definition at line 265 of file Geometric3DVertexFitter.cxx.
|
private |
Definition at line 373 of file Geometric3DVertexFitter.cxx.
double trkf::Geometric3DVertexFitter::ip | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 483 of file Geometric3DVertexFitter.cxx.
|
private |
Definition at line 476 of file Geometric3DVertexFitter.cxx.
double trkf::Geometric3DVertexFitter::ipErr | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 501 of file Geometric3DVertexFitter.cxx.
|
private |
Definition at line 491 of file Geometric3DVertexFitter.cxx.
double trkf::Geometric3DVertexFitter::ipErrUnbiased | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 568 of file Geometric3DVertexFitter.cxx.
double trkf::Geometric3DVertexFitter::ipUnbiased | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 555 of file Geometric3DVertexFitter.cxx.
double trkf::Geometric3DVertexFitter::pDist | ( | const VertexWrapper & | vtx, |
const recob::Track & | tk | ||
) | const |
Definition at line 523 of file Geometric3DVertexFitter.cxx.
double trkf::Geometric3DVertexFitter::pDistUnbiased | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 594 of file Geometric3DVertexFitter.cxx.
double trkf::Geometric3DVertexFitter::sip | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 515 of file Geometric3DVertexFitter.cxx.
|
private |
Definition at line 509 of file Geometric3DVertexFitter.cxx.
double trkf::Geometric3DVertexFitter::sipUnbiased | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 581 of file Geometric3DVertexFitter.cxx.
trkf::VertexWrapper trkf::Geometric3DVertexFitter::unbiasedVertex | ( | detinfo::DetectorPropertiesData const & | detProp, |
const VertexWrapper & | vtx, | ||
const recob::Track & | tk | ||
) | const |
Definition at line 529 of file Geometric3DVertexFitter.cxx.
|
inlineprivate |
Definition at line 182 of file Geometric3DVertexFitter.h.
|
private |
Definition at line 140 of file Geometric3DVertexFitter.cxx.
|
private |
Definition at line 171 of file Geometric3DVertexFitter.h.
|
private |
Definition at line 170 of file Geometric3DVertexFitter.h.
|
private |
Definition at line 172 of file Geometric3DVertexFitter.h.