Line | |
---|
1 | #ifndef MARS_MGenPrimaryParticle
|
---|
2 | #define MARS_MGenPrimaryParticle
|
---|
3 |
|
---|
4 | #ifndef ROOT_TRandom
|
---|
5 | #include <TRandom.h>
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef MARS_MTask
|
---|
9 | #include "MTask.h"
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | class TF1;
|
---|
13 | class MParList;
|
---|
14 | class MSinglePairInput;
|
---|
15 |
|
---|
16 | class MGenPrimaryParticle : public MTask
|
---|
17 | {
|
---|
18 | private:
|
---|
19 | MParList *fList;
|
---|
20 |
|
---|
21 | TF1 *fSrc;
|
---|
22 |
|
---|
23 | TRandom fRand;
|
---|
24 |
|
---|
25 | Double_t fPi2;
|
---|
26 |
|
---|
27 | public:
|
---|
28 | MGenPrimaryParticle(const char *name=NULL, const char *title=NULL);
|
---|
29 | ~MGenPrimaryParticle();
|
---|
30 |
|
---|
31 | Bool_t PreProcess(MParList *pList);
|
---|
32 | Bool_t Process();
|
---|
33 | Bool_t PostProcess();
|
---|
34 |
|
---|
35 | ClassDef(MGenPrimaryParticle, 0) //
|
---|
36 | };
|
---|
37 |
|
---|
38 | #endif
|
---|
39 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.