ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Track.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_TRACK_H
4     #define DATATREE_TRACK_H
5    
6     #include "MitAna/DataTree/interface/DataObject.h"
7    
8     //--------------------------------------------------------------------------------------------------
9     //
10     // Track
11     //
12     // Details to be worked out...
13     //
14     // Authors: C.Loizides, xxx
15     //
16     //--------------------------------------------------------------------------------------------------
17    
18     namespace mithep
19     {
20     class Track : public DataObject
21     {
22     public:
23     Track() {}
24     ~Track() {}
25    
26     ClassDef(Track, 1) // Track class
27     };
28    
29     } /*namespace mithep*/
30    
31     #endif /*DATATREE_TRACK_H*/