HighLAND
HighlandMiniTreeConverter.hxx
1 #ifndef HighlandMiniTreeConverter_h
2 #define HighlandMiniTreeConverter_h
3 
4 #include "DataClasses.hxx"
5 #include "MiniTreeConverter.hxx"
6 
7 /// Creates the appropriate AnaSpillB type. The rest of the work is done by the base converter
8 
10 
11  public:
12  HighlandMiniTreeConverter(bool readRooTrackerVtx=false):MiniTreeConverter(readRooTrackerVtx){}
13  virtual ~HighlandMiniTreeConverter(){}
14 
15  // Create the appropriate spill instance
16  virtual AnaSpillB* MakeSpill() { return new AnaSpill(); }
17 };
18 
19 #endif
20 
21 
Creates the appropriate AnaSpillB type. The rest of the work is done by the base converter.