source: trunk/modules/MadGraphShowerLeptonSelector.h

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

first commit

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