ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/DataObject.h
Revision: 1.1
Committed: Wed Jun 4 09:08:36 2008 UTC (16 years, 11 months ago) by loizides
Content type: text/plain
Branch: MAIN
Log Message:
Added initial data inheritances. Objects are empty.

File Contents

# User Rev Content
1 loizides 1.1 // $Id: Particle.h,v 1.2 2008/06/02 04:43:14 loizides Exp $
2    
3     #ifndef DATATREE_DATAOBJECT_H
4     #define DATATREE_DATAOBJECT_H
5    
6     #include <TObject.h>
7     #include "MitAna/DataTree/interface/Types.h"
8    
9     //--------------------------------------------------------------------------------------------------
10     //
11     // DataObject
12     //
13     // Authors: C.Loizides
14     //
15     //--------------------------------------------------------------------------------------------------
16    
17     namespace mithep
18     {
19     class DataObject : public TObject
20     {
21     public:
22     DataObject() {}
23     ~DataObject() {}
24    
25     ClassDef(DataObject, 1) // Basic data object class
26     };
27    
28     } /*namespace mithep*/
29    
30     #endif /*DATATREE_DATAOBJECT_H*/