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

Last change on this file since 2958 was 2958, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 2.0 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;
22class MArrivalTime;
23
24class MExtractSignal : public MTask
25{
26private:
27 static const Byte_t fgSaturationLimit;
28 static const Byte_t fgFirst;
29 static const Byte_t fgLast;
30
31 MPedestalCam *fPedestals; // Pedestals of all pixels in the camera
32 MExtractedSignalCam *fSignals; // Extracted signal of all pixels in the camera
33
34 MRawEvtData *fRawEvt; // raw event data (time slices)
35 MRawRunHeader *fRunHeader; // RunHeader information
36
37 MArrivalTime *fArrivalTime; // Arrival Time of FADC sample
38
39 Byte_t fHiGainFirst;
40 Byte_t fLoGainFirst;
41
42 Byte_t fNumHiGainSamples;
43 Byte_t fNumLoGainSamples;
44
45 Float_t fSqrtHiGainSamples;
46 Float_t fSqrtLoGainSamples;
47
48 Byte_t fSaturationLimit;
49
50 Int_t PreProcess(MParList *pList);
51 Int_t Process();
52 void StreamPrimitive(ofstream &out) const;
53
54public:
55 MExtractSignal(const char *name=NULL, const char *title=NULL);
56
57 void SetRange(Byte_t hifirst=fgFirst, Byte_t hilast=fgLast, Byte_t lofirst=fgFirst, Byte_t lolast=fgLast);
58 void SetSaturationLimit(Byte_t lim) { fSaturationLimit = lim; }
59
60 ClassDef(MExtractSignal, 0) // Task to fill the Extracted Signal Containers from raw data
61};
62
63#endif
Note: See TracBrowser for help on using the repository browser.