LCTuple  1.6.0
CWBranchesSet.h
1 #ifndef CWBranchesSet_h
2 #define CWBranchesSet_h 1
3 
4 #include <string>
5 
6 class TTree ;
7 
8 namespace EVENT{
9  class LCCollection ;
10  class LCEvent ;
11 }
12 
21 
22  public:
23 
24  virtual void initBranches( TTree* tree, const std::string& prefix="" )=0 ;
25 
26  virtual void fill(const EVENT::LCCollection* col, EVENT::LCEvent* evt )=0 ;
27 
28  virtual ~CWBranchesSet(){}
29 
30 } ;
31 
32 #endif
33 
34 
35 
CWBranchesSet holds a set of branches in a columnwise ntuple that are filled from one collection...
Definition: CWBranchesSet.h:20