1 |
loizides |
1.1 |
//--------------------------------------------------------------------------------------------------
|
2 |
|
|
// $Id: BaseMod.h,v 1.2 2008/06/18 19:08:14 loizides Exp $
|
3 |
|
|
//
|
4 |
|
|
// Selector
|
5 |
|
|
//
|
6 |
|
|
//
|
7 |
|
|
// Authors: C.Loizides
|
8 |
|
|
//
|
9 |
|
|
//--------------------------------------------------------------------------------------------------
|
10 |
|
|
|
11 |
|
|
#ifndef TREEMOD_SELECTOR_H
|
12 |
|
|
#define TREEMOD_SELECTOR_H
|
13 |
|
|
|
14 |
|
|
#include "MitAna/TAM/interface/TAModule.h"
|
15 |
|
|
#include "MitAna/TAM/interface/TAMSelector.h"
|
16 |
|
|
|
17 |
|
|
namespace mithep {
|
18 |
|
|
class Selector : public TAMSelector
|
19 |
|
|
{
|
20 |
|
|
public:
|
21 |
|
|
Selector();
|
22 |
|
|
~Selector();
|
23 |
|
|
|
24 |
|
|
//void Init(TTree* tree);
|
25 |
|
|
//Bool_t Notify();
|
26 |
|
|
//Bool_t Process(Long64_t entry);
|
27 |
|
|
//void SlaveBegin(TTree* tree);
|
28 |
|
|
//void SlaveTerminate();
|
29 |
|
|
// void Terminate();
|
30 |
|
|
|
31 |
|
|
ClassDef(Selector,1)
|
32 |
|
|
};
|
33 |
|
|
}
|
34 |
|
|
#endif
|