CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoVertex/KinematicFit/src/LagrangeChildUpdator.cc

Go to the documentation of this file.
00001 #include "RecoVertex/KinematicFit/interface/LagrangeChildUpdator.h"
00002 
00003 RefCountedKinematicTree  LagrangeChildUpdator::update(RefCountedKinematicTree tree) const
00004 {
00005 //space for down update method
00006 //now does nothing, supposed to
00007 //update the states of daughter
00008 //particles down the kinematic decay chain
00009 
00010  RefCountedKinematicTree nTree = tree;
00011  return nTree;
00012 }
00013 std::vector<RefCountedKinematicTree>  LagrangeChildUpdator::update(std::vector<RefCountedKinematicTree> trees) const
00014 {
00015 //space for down update method
00016 //now does nothing, supposed to
00017 //update the states of daughter
00018 //particles down the kinematic decay chain
00019 
00020  std::vector<RefCountedKinematicTree> nTree = trees;
00021  
00022  return nTree;
00023 }