CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ChildUpdator.h
Go to the documentation of this file.
1 #ifndef ChildUpdator_H
2 #define ChildUpdator_H
3 
5 
16 class ChildUpdator {
17 public:
19 
20  virtual ~ChildUpdator() {}
30 
31  virtual std::vector<RefCountedKinematicTree> update(const std::vector<RefCountedKinematicTree> &trees) const = 0;
32 
33  virtual ChildUpdator *clone() const = 0;
34 
35 private:
36 };
37 #endif
virtual RefCountedKinematicTree update(RefCountedKinematicTree tree) const =0
virtual ChildUpdator * clone() const =0
list trees
Definition: dqmdumpme.py:37
virtual ~ChildUpdator()
Definition: ChildUpdator.h:20