ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/TreeMod/interface/BaseSelMod.h
Revision: 1.2
Committed: Mon Mar 23 22:15:13 2009 UTC (16 years, 1 month ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_009, Mit_008
Changes since 1.1: +1 -2 lines
Log Message:
Cosmetics

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.2 // $Id: BaseSelMod.h,v 1.1 2008/12/10 14:20:10 loizides Exp $
3 loizides 1.1 //
4     // BaseSelMod
5     //
6     // This TAM module is the base selection module for all our selection modules.
7     //
8     // Authors: C.Loizides
9     //--------------------------------------------------------------------------------------------------
10    
11     #ifndef MITANA_TREEMOD_BASESELMOD_H
12     #define MITANA_TREEMOD_BASESELMOD_H
13    
14     #include "MitAna/TreeMod/interface/BaseMod.h"
15    
16     namespace mithep
17     {
18     class BaseSelMod : public BaseMod {
19     public:
20     BaseSelMod(const char *name="BaseSelMod", const char *title="Base selection module");
21    
22     ClassDef(BaseSelMod, 1) // Base TAM module
23     };
24     }
25     #endif