| Line |   | 
|---|
| 1 | #ifndef MARS_MSimCamera
 | 
|---|
| 2 | #define MARS_MSimCamera
 | 
|---|
| 3 | 
 | 
|---|
| 4 | #ifndef MARS_MTask
 | 
|---|
| 5 | #include "MTask.h"
 | 
|---|
| 6 | #endif
 | 
|---|
| 7 | 
 | 
|---|
| 8 | class MParList;
 | 
|---|
| 9 | class MPhotonEvent;
 | 
|---|
| 10 | class MPhotonStatistics;
 | 
|---|
| 11 | class MRawRunHeader;
 | 
|---|
| 12 | class MAnalogChannels;
 | 
|---|
| 13 | 
 | 
|---|
| 14 | class MSpline3;
 | 
|---|
| 15 | 
 | 
|---|
| 16 | class MSimCamera : public MTask
 | 
|---|
| 17 | {
 | 
|---|
| 18 | private:
 | 
|---|
| 19 |     MPhotonEvent      *fEvt;        //! Event stroing the photons
 | 
|---|
| 20 |     MPhotonStatistics *fStat;       //! Valid time range of the phootn event
 | 
|---|
| 21 |     MRawRunHeader     *fRunHeader;  //! Sampling frequency
 | 
|---|
| 22 | 
 | 
|---|
| 23 |     MAnalogChannels   *fCamera;     //! Output of the analog signals
 | 
|---|
| 24 | 
 | 
|---|
| 25 |     MSpline3 *fSpline;
 | 
|---|
| 26 | 
 | 
|---|
| 27 |     // MTask
 | 
|---|
| 28 |     Int_t PreProcess(MParList *pList);
 | 
|---|
| 29 |     Int_t Process();
 | 
|---|
| 30 | 
 | 
|---|
| 31 | public:
 | 
|---|
| 32 |     MSimCamera(const char *name=NULL, const char *title=NULL);
 | 
|---|
| 33 | 
 | 
|---|
| 34 |     ClassDef(MSimCamera, 0) // Task to simulate the electronic noise and to convert photons into pulses
 | 
|---|
| 35 | };
 | 
|---|
| 36 | 
 | 
|---|
| 37 | #endif
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.