ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/TreeMod/interface/BaseMod.h
Revision: 1.1
Committed: Thu Jun 12 08:47:57 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
Log Message:
Added base module that we can custom as we wish.

File Contents

# User Rev Content
1 loizides 1.1 // $Id: THIAnaBaseMod.h 4980 2008-01-25 12:03:31Z loizides $
2    
3     #ifndef TREEMOD_BASEMOD_H
4     #define TREEMOD_BASEMOD_H
5    
6     #include "MitAna/TAM/interface/TAModule.h"
7    
8     namespace mithep
9     {
10     class BaseMod : public TAModule {
11     public:
12     BaseMod(const char *name="BaseMod", const char *title="Base analysis module")
13     : TAModule(name,title) {}
14     ~BaseMod() {};
15    
16     ClassDef(BaseMod,1) // Base TAM module
17     };
18     }
19     #endif