source: trunk/modules/MadGraphShowerPartonSelector.h@ 12

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

first commit

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