source: trunk/modules/MadGraphJetLeptonMerger.h@ 11

Last change on this file since 11 was 2, checked in by Pavel Demin, 16 years ago

first commit

File size: 577 bytes
Line 
1#ifndef MadGraphJetLeptonMerger_h
2#define MadGraphJetLeptonMerger_h
3
4#include "ExRootAnalysis/ExRootModule.h"
5
6class TObjArray;
7class TIterator;
8
9class MadGraphJetLeptonMerger: public ExRootModule
10{
11public:
12
13 MadGraphJetLeptonMerger();
14 ~MadGraphJetLeptonMerger();
15
16 void Init();
17 void Process();
18 void Finish();
19
20private:
21
22 const TObjArray *fInputLeptons; //!
23 const TObjArray *fInputJets; //!
24
25 TIterator *fItInputLeptons; //!
26 TIterator *fItInputJets; //!
27
28 TObjArray *fOutputArray; //!
29
30 Int_t fJetNumberMax;
31
32 ClassDef(MadGraphJetLeptonMerger, 1)
33};
34
35#endif
Note: See TracBrowser for help on using the repository browser.