Rev | Line | |
---|
[2] | 1 | #ifndef MadGraphJetLeptonMerger_h
|
---|
| 2 | #define MadGraphJetLeptonMerger_h
|
---|
| 3 |
|
---|
| 4 | #include "ExRootAnalysis/ExRootModule.h"
|
---|
| 5 |
|
---|
| 6 | class TObjArray;
|
---|
| 7 | class TIterator;
|
---|
| 8 |
|
---|
| 9 | class MadGraphJetLeptonMerger: public ExRootModule
|
---|
| 10 | {
|
---|
| 11 | public:
|
---|
| 12 |
|
---|
| 13 | MadGraphJetLeptonMerger();
|
---|
| 14 | ~MadGraphJetLeptonMerger();
|
---|
| 15 |
|
---|
| 16 | void Init();
|
---|
| 17 | void Process();
|
---|
| 18 | void Finish();
|
---|
| 19 |
|
---|
| 20 | private:
|
---|
| 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.