ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/TreeMod/interface/BaseSelMod.h
Revision: 1.1
Committed: Wed Dec 10 14:20:10 2008 UTC (16 years, 4 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008pre2, Mit_008pre1, Mit_006b, Mit_006a
Log Message:
Started with base selection mod to be used for all selection modules.

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2     // $Id: BaseMod.h,v 1.14 2008/12/09 10:16:24 loizides Exp $
3     //
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     ~BaseSelMod() {}
22    
23     ClassDef(BaseSelMod, 1) // Base TAM module
24     };
25     }
26     #endif