source: trunk/MagicSoft/Mars/msignal/MExtractor.h@ 4098

Last change on this file since 4098 was 4047, checked in by gaug, 21 years ago
*** empty log message ***
File size: 2.5 KB
Line 
1#ifndef MARS_MExtractor
2#define MARS_MExtractor
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MExtractor //
7// //
8// Base class for the signal extractors //
9// //
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef MARS_MTask
13#include "MTask.h"
14#endif
15
16class MRawEvtData;
17class MRawRunHeader;
18
19class MPedestalCam;
20class MExtractedSignalCam;
21
22class MExtractor : public MTask
23{
24protected:
25 static const Byte_t fgSaturationLimit;
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 fHiGainFirst;
34 Byte_t fLoGainFirst;
35
36 Byte_t fHiGainLast;
37 Byte_t fLoGainLast;
38
39 Byte_t fHiLoLast;
40
41 Float_t fNumHiGainSamples;
42 Float_t fNumLoGainSamples;
43
44 Float_t fSqrtHiGainSamples;
45 Float_t fSqrtLoGainSamples;
46
47 Byte_t fSaturationLimit;
48
49 virtual void FindSignalHiGain(Byte_t *firstused, Byte_t *lowgain, Int_t &sum, Byte_t &sat) const;
50 virtual void FindSignalLoGain(Byte_t *firstused, Int_t &sum, Byte_t &sat) const;
51
52 virtual Int_t PreProcess(MParList *pList);
53 virtual Bool_t ReInit(MParList *pList);
54 virtual Int_t Process();
55 virtual void StreamPrimitive(ofstream &out) const;
56
57public:
58
59 MExtractor(const char *name=NULL, const char *title=NULL);
60
61 Byte_t GetHiGainFirst() const { return fHiGainFirst; }
62 Byte_t GetHiGainLast () const { return fHiGainLast ; }
63 Byte_t GetLoGainFirst() const { return fLoGainFirst; }
64 Byte_t GetLoGainLast () const { return fLoGainLast ; }
65 Float_t GetNumHiGainSamples() const { return fNumHiGainSamples; }
66 Float_t GetNumLoGainSamples() const { return fNumLoGainSamples; }
67
68 virtual void SetRange (Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0);
69 void SetSaturationLimit(Byte_t lim=fgSaturationLimit) { fSaturationLimit = lim; }
70
71 ClassDef(MExtractor, 0) // Signal Extractor Base Class
72};
73
74#endif
Note: See TracBrowser for help on using the repository browser.