| Line | |
|---|
| 1 | #ifndef MARS_MSrcPosRndm
|
|---|
| 2 | #define MARS_MSrcPosRndm
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MTask
|
|---|
| 5 | #include "MTask.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MSrcPosCam;
|
|---|
| 9 | class MHSrcPosCam;
|
|---|
| 10 |
|
|---|
| 11 | class MSrcPosRndm : public MTask
|
|---|
| 12 | {
|
|---|
| 13 | private:
|
|---|
| 14 | MSrcPosCam *fSrcPos; //!
|
|---|
| 15 | MHSrcPosCam *fHist; //!
|
|---|
| 16 |
|
|---|
| 17 | Double_t fConvMm2Deg;
|
|---|
| 18 |
|
|---|
| 19 | Int_t PreProcess(MParList *plist);
|
|---|
| 20 | Int_t Process();
|
|---|
| 21 |
|
|---|
| 22 | public:
|
|---|
| 23 | MSrcPosRndm() : fSrcPos(0), fHist(0)
|
|---|
| 24 | {
|
|---|
| 25 | fName = "MSrcPosRndm";
|
|---|
| 26 | fTitle = "Overwrite the source position with a random one from MHSrcPosCam";
|
|---|
| 27 | }
|
|---|
| 28 |
|
|---|
| 29 | ClassDef(MSrcPosRndm, 0) //Overwrite the source position with a random one from MHSrcPosCam
|
|---|
| 30 | };
|
|---|
| 31 |
|
|---|
| 32 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.