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
|