Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DDANAEVIODOMTree.h
Go to the documentation of this file.
1 // DDANAEVIODOMTree.h
2 
3 // E.Wolin, 19-Mar-2010
4 
5 
6 #ifndef _DDANAEVIODOMTree_
7 #define _DDANAEVIODOMTree_
8 
9 
10 #include "JANA/JObject.h"
11 #include "evioUtil.hxx"
12 
13 
14 using namespace jana;
15 using namespace evio;
16 
17 
18 //------------------------------------------------------------------------------------
19 
20 
21 class DDANAEVIODOMTree : public JObject {
22 
23  public:
24  JOBJECT_PUBLIC(DDANAEVIODOMTree);
25 
26  DDANAEVIODOMTree(uint16_t tag, uint8_t num) : tree(tag,num) {};
28 
29 
30  // EVIO DOM tree holds event
31  evioDOMTree tree;
32 
33 
34  private:
36 };
37 
38 
39 
40 #endif // _DDANAEVIODOMTree_
41 
42 
43 //------------------------------------------------------------------------------------
44 //------------------------------------------------------------------------------------
DDANAEVIODOMTree(uint16_t tag, uint8_t num)