Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:11

0001 #include "RecoVertex/KinematicFit/interface/LagrangeChildUpdator.h"
0002 
0003 RefCountedKinematicTree LagrangeChildUpdator::update(RefCountedKinematicTree tree) const {
0004   //space for down update method
0005   //now does nothing, supposed to
0006   //update the states of daughter
0007   //particles down the kinematic decay chain
0008 
0009   RefCountedKinematicTree nTree = tree;
0010   return nTree;
0011 }
0012 std::vector<RefCountedKinematicTree> LagrangeChildUpdator::update(
0013     const std::vector<RefCountedKinematicTree> &trees) const {
0014   //space for down update method
0015   //now does nothing, supposed to
0016   //update the states of daughter
0017   //particles down the kinematic decay chain
0018 
0019   std::vector<RefCountedKinematicTree> nTree = trees;
0020 
0021   return nTree;
0022 }