source: trunk/MagicSoft/Mars/manalysis/MExtractSignal.h@ 2666

Last change on this file since 2666 was 2666, checked in by gaug, 21 years ago
*** empty log message ***
File size: 1.8 KB
Line 
1#ifndef MARS_MExtractSignal
2#define MARS_MExtractSignal
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MExtractSignal //
7// //
8// Integrates the time slices of the all pixels of a calibration event //
9// and substract the pedestal value //
10// //
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef MARS_MTask
14#include "MTask.h"
15#endif
16
17class MRawEvtData;
18class MRawRunHeader;
19
20class MPedestalCam;
21class MExtractedSignalCam;
22
23class MExtractSignal : public MTask
24{
25private:
26
27 MPedestalCam *fPedestals; // Pedestals of all pixels in the camera
28 MExtractedSignalCam *fSignals; // Extracted signal of all pixels in the camera
29
30 MRawEvtData *fRawEvt; // raw event data (time slices)
31 MRawRunHeader *fRunHeader; // RunHeader information
32
33 Byte_t fFirst;
34
35 Byte_t fNumHiGainSamples;
36 Byte_t fNumLoGainSamples;
37
38 Float_t fSqrtHiGainSamples;
39 Float_t fSqrtLoGainSamples;
40
41 Byte_t fSaturationLimit;
42 Float_t fConversionHiLo;
43
44 Bool_t ReInit(MParList *pList);
45 Int_t PreProcess(MParList *pList);
46 Int_t Process();
47 Int_t PostProcess();
48
49public:
50
51 MExtractSignal(const Byte_t first=4, const Byte_t last=9, const char *name=NULL, const char *title=NULL);
52
53 void SetSaturationLimit(Byte_t lim) { fSaturationLimit = lim; }
54 void SetConversionHiLo(Float_t con) { fConversionHiLo = con; }
55
56 ClassDef(MExtractSignal, 0) // Task to fill the Extracted Signal Containers from raw data
57};
58
59#endif
Note: See TracBrowser for help on using the repository browser.