#include <KinematicParticleFitter.h>
Public Member Functions | |
std::vector < RefCountedKinematicTree > | fit (KinematicConstraint *cs, const std::vector< RefCountedKinematicTree > &trees) const |
RefCountedKinematicTree | fit (KinematicConstraint *cs, RefCountedKinematicTree tree) const |
KinematicParticleFitter () | |
KinematicParticleFitter (const ParentParticleFitter &fitter, const ChildUpdator &updator) | |
~KinematicParticleFitter () | |
Private Attributes | |
ChildUpdator * | cUpdator |
ParentParticleFitter * | parentFitter |
Class making kinematic fit of the particle inside the KinematicTree. The daughter states of the tree get automathically refitted according to the changes done to mother state. Mechanism is split in 2 parts: ParentParticleFitter to fit the mother particle and ChildUpdator to update the states of daughter particles. Child updator is currently not implemented. Fitter is designed to use any user provided algorithm for state refit.
Definition at line 23 of file KinematicParticleFitter.h.
KinematicParticleFitter::KinematicParticleFitter | ( | ) |
Default constructor using LMS with Lagrange multipliers for particle refit.
Definition at line 5 of file KinematicParticleFitter.cc.
References cUpdator, and parentFitter.
KinematicParticleFitter::KinematicParticleFitter | ( | const ParentParticleFitter & | fitter, |
const ChildUpdator & | updator | ||
) |
Constructor allowing use of any fitter-updator pair implemented
Definition at line 11 of file KinematicParticleFitter.cc.
References ParentParticleFitter::clone(), ChildUpdator::clone(), cUpdator, and parentFitter.
KinematicParticleFitter::~KinematicParticleFitter | ( | ) |
Definition at line 17 of file KinematicParticleFitter.cc.
References cUpdator, and parentFitter.
std::vector< RefCountedKinematicTree > KinematicParticleFitter::fit | ( | KinematicConstraint * | cs, |
const std::vector< RefCountedKinematicTree > & | trees | ||
) | const |
Method applying the constraint to the TOP particle inside the Kinematic Tree. Tree containing the refitted state is returned. The initial state of the particle and constraint applyed are stored in particle's corresponding data memebers In case of failure, an empty vector is returned.
Definition at line 23 of file KinematicParticleFitter.cc.
References cUpdator, ParentParticleFitter::fit(), parentFitter, and ChildUpdator::update().
Referenced by KineExample::analyze(), CandKinematicVertexFitter::fill(), and trackingPlots.Iteration::modules().
RefCountedKinematicTree KinematicParticleFitter::fit | ( | KinematicConstraint * | cs, |
RefCountedKinematicTree | tree | ||
) | const |
Method refitting a top particle of the single tree. for backup compatibility and constraints not allowing multiple track refits. In case of failure, an invalid tree is returned.
Definition at line 33 of file KinematicParticleFitter.cc.
References cUpdator, ParentParticleFitter::fit(), parentFitter, and ChildUpdator::update().
Referenced by trackingPlots.Iteration::modules().
|
private |
Definition at line 67 of file KinematicParticleFitter.h.
Referenced by fit(), KinematicParticleFitter(), and ~KinematicParticleFitter().
|
private |
Definition at line 66 of file KinematicParticleFitter.h.
Referenced by fit(), KinematicParticleFitter(), and ~KinematicParticleFitter().