File indexing completed on 2024-04-06 12:29:10
0001 #ifndef LagrangeChildUpdator_H
0002 #define LagrangeChildUpdator_H
0003
0004 #include "RecoVertex/KinematicFit/interface/ChildUpdator.h"
0005
0006
0007
0008
0009
0010
0011
0012
0013 class LagrangeChildUpdator : public ChildUpdator {
0014 public:
0015 LagrangeChildUpdator() {}
0016 ~LagrangeChildUpdator() override {}
0017
0018 RefCountedKinematicTree update(RefCountedKinematicTree tree) const override;
0019
0020 std::vector<RefCountedKinematicTree> update(const std::vector<RefCountedKinematicTree>& trees) const override;
0021
0022 LagrangeChildUpdator* clone() const override { return new LagrangeChildUpdator(*this); }
0023
0024 private:
0025 };
0026 #endif