Line | |
---|
1 | #ifndef MadGraphIsolatedLeptonFinder_h
|
---|
2 | #define MadGraphIsolatedLeptonFinder_h
|
---|
3 |
|
---|
4 | #include "ExRootAnalysis/ExRootModule.h"
|
---|
5 |
|
---|
6 | class TClonesArray;
|
---|
7 | class TObjArray;
|
---|
8 | class TIterator;
|
---|
9 |
|
---|
10 | class ExRootFilter;
|
---|
11 | class MadGraphParticleClassifier;
|
---|
12 |
|
---|
13 | class ExRootGenParticle;
|
---|
14 |
|
---|
15 | class MadGraphIsolatedLeptonFinder: public ExRootModule
|
---|
16 | {
|
---|
17 | public:
|
---|
18 |
|
---|
19 | MadGraphIsolatedLeptonFinder();
|
---|
20 | ~MadGraphIsolatedLeptonFinder();
|
---|
21 |
|
---|
22 | void Init();
|
---|
23 | void Process();
|
---|
24 | void Finish();
|
---|
25 |
|
---|
26 | private:
|
---|
27 |
|
---|
28 | Double_t GetMinDeltaR(ExRootGenParticle *lepton);
|
---|
29 |
|
---|
30 | TIterator *fItParticle; //!
|
---|
31 |
|
---|
32 | ExRootFilter *fFilter; //!
|
---|
33 | MadGraphParticleClassifier *fClassifier; //!
|
---|
34 |
|
---|
35 | TClonesArray *fBranchParticle; //!
|
---|
36 |
|
---|
37 | TObjArray *fOutputArray; //!
|
---|
38 |
|
---|
39 | Double_t fMinPT, fMinDeltaR;
|
---|
40 |
|
---|
41 | ClassDef(MadGraphIsolatedLeptonFinder, 1)
|
---|
42 | };
|
---|
43 |
|
---|
44 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.