source: trunk/MagicSoft/Mars/mpointing/MSrcPosRndm.h@ 7560

Last change on this file since 7560 was 7560, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 591 bytes
Line 
1#ifndef MARS_MSrcPosRndm
2#define MARS_MSrcPosRndm
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MSrcPosCam;
9class MHSrcPosCam;
10
11class MSrcPosRndm : public MTask
12{
13private:
14 MSrcPosCam *fSrcPos; //!
15 MHSrcPosCam *fHist; //!
16
17 Int_t PreProcess(MParList *plist);
18 Int_t Process();
19
20public:
21 MSrcPosRndm() : fSrcPos(0), fHist(0)
22 {
23 fName = "MSrcPosRndm";
24 fTitle = "Overwrite the source position with a random one from MHSrcPosCam";
25 }
26
27 ClassDef(MSrcPosRndm, 0) //Overwrite the source position with a random one from MHSrcPosCam
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.