source: trunk/MagicSoft/Mars/mjobs/MJPedestal.h@ 8440

Last change on this file since 8440 was 7561, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 6.2 KB
Line 
1#ifndef MARS_MJPedestal
2#define MARS_MJPedestal
3
4#ifndef MARS_MJCalib
5#include "MJCalib.h"
6#endif
7#ifndef MARS_MPedestalCam
8#include "MPedestalCam.h"
9#endif
10#ifndef MARS_MHPedestalCam
11#include "MHPedestalCam.h"
12#endif
13#ifndef MARS_MBadPixelsCam
14#include "MBadPixelsCam.h"
15#endif
16
17class TCanvas;
18class MParList;
19class MHCamera;
20class TH1D;
21class MExtractor;
22class MExtractPedestal;
23class MEvtLoop;
24
25class MJPedestal : public MJCalib
26{
27private:
28 static const TString fgReferenceFile; //! default for fReferenceFile ("pedestalref.rc")
29 static const TString fgBadPixelsFile; //! default for fBadPixelsFile ("badpixels_0_559.rc")
30
31 static const Float_t fgExtractWinLeft; //! default for fExtractWinLeft (now set to: 2.5)
32 static const Float_t fgExtractWinRight; //! default for fExtractWinRight (now set to: 6.0)
33
34 Axis_t fPedestalMin; //! Minimum Axis value for pedestal datacheck display
35 Axis_t fPedestalMax; //! Maximum Axis value for pedestal datacheck display
36 Axis_t fPedRmsMin; //! Minimum Axis value for ped. RMS datacheck display
37 Axis_t fPedRmsMax; //! Maximum Axis value for ped. RMS datacheck display
38
39 Float_t fRefPedClosedLids; //! Reference line pedestal for closed lids run
40 Float_t fRefPedExtraGalactic; //! Reference line pedestal for extragalactic source
41 Float_t fRefPedGalactic; //! Reference line pedestal for galactic source
42
43 Float_t fRefPedRmsClosedLidsInner; //! Ref. line ped. RMS for closed lids run - inner pixels
44 Float_t fRefPedRmsExtraGalacticInner; //! Ref. line ped. RMS for extragalactic source - inner pixels
45 Float_t fRefPedRmsGalacticInner; //! Ref. line ped. RMS for galactic source - inner pixels
46
47 Float_t fRefPedRmsClosedLidsOuter; //! Ref. line ped. RMS for closed lids run - outer pixels
48 Float_t fRefPedRmsExtraGalacticOuter; //! Ref. line ped. RMS for extragalactic source - outer pixels
49 Float_t fRefPedRmsGalacticOuter; //! Ref. line ped. RMS for galactic source - outer pixels
50
51 Float_t fExtractWinLeft; // Number of FADC slices to extract leftward from mean pulse pos.
52 Float_t fExtractWinRight; // Number of FADC slices to extract rightward from mean pulse pos.
53
54 TString fReferenceFile; // File name containing the reference values
55 TString fBadPixelsFile; // File name containing the bad pixels excluded beforehand
56
57 MExtractor *fExtractor; // Signal extractor, used to find the nr. of used FADC slices
58
59 MPedestalCam fPedestalCamIn; // Handed over pedestal results
60 MPedestalCam fPedestalCamOut; // Created pedestal results
61 MBadPixelsCam fBadPixels; // Bad Pixels
62 // MHPedestalCam fPedestalHist; // Histogramming pedestal Camera
63
64 enum Display_t { kDisplayNone, kDisplayNormal, kDisplayDataCheck }; // Possible Display types
65 Display_t fDisplayType; // Chosen Display type
66
67 enum Extract_t { kUseData, kUsePedRun }; // Possible flags for the extraction of the pedestal
68 Extract_t fExtractType; // Chosen extractor type
69
70 enum Extraction { kFundamental, kWithExtractorRndm, kWithExtractor };
71 Int_t fExtractionType; // Flag if the extractor is used to calculate the pedestals
72
73 Bool_t fIsUseHists; // Switch on histogramming or not
74 Bool_t fDeadPixelCheck; // Should the dead pixel check be done?
75
76 MExtractor *ReadCalibration();
77 Bool_t ReadPedestalCam();
78 Bool_t WriteResult();
79 //Bool_t WriteEventloop(MEvtLoop &evtloop) const;
80
81 void DisplayResult(MParList &plist);
82 void DisplayReferenceLines(MHCamera *cam, const Int_t what) const;
83 void DisplayOutliers(TH1D *hist) const;
84 void FixDataCheckHist(TH1D *hist) const;
85 Int_t PulsePosCheck(const MParList &plist) const;
86
87 Bool_t CheckEnvLocal();
88
89 const char* GetOutputFileName() const;
90
91 void ReadReferenceFile();
92
93 Bool_t WriteExtractor() const;
94
95public:
96 MJPedestal(const char *name=NULL, const char *title=NULL);
97 ~MJPedestal();
98
99 MPedestalCam &GetPedestalCam() { return fPedestalCamOut; }
100 const MBadPixelsCam &GetBadPixels() const { return fBadPixels; }
101
102 // const MHPedestalCam &GetPedestalHist() const { return fPedestalHist; }
103
104 const Bool_t IsUseData() const { return fExtractType == kUseData; }
105
106 Int_t Process();
107
108 void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
109 void SetPedestals(const MPedestalCam &ped) { ped.Copy(fPedestalCamIn); }
110 void SetExtractor(MExtractor* ext);
111 void SetUseData() { fExtractType = kUseData; }
112 void SetUseHists( const Bool_t b=kTRUE) { fIsUseHists = b; }
113 void SetDeadPixelCheck(const Bool_t b=kTRUE) { fDeadPixelCheck = b; }
114 void SetUsePedRun() { fExtractType = kUsePedRun; }
115 void SetDataCheckDisplay() { fDisplayType = kDisplayDataCheck; }
116 void SetNormalDisplay() { fDisplayType = kDisplayNormal; }
117 void SetNoDisplay() { fDisplayType = kDisplayNone; }
118
119 void SetExtractionFundamental() { fExtractionType=kFundamental; /*fPedestalCamOut.SetName("MPedestalFundamental");*/ }
120 void SetExtractionWithExtractorRndm() { fExtractionType=kWithExtractorRndm; /*fPedestalCamOut.SetName("MPedestalExtractorRndm");*/ }
121 void SetExtractionWithExtractor() { fExtractionType=kWithExtractor; /*fPedestalCamOut.SetName("MPedestalExtractor");*/ }
122
123 void SetReferenceFile( const TString ref=fgReferenceFile ) { fReferenceFile = ref; }
124 void SetBadPixelsFile( const TString ref=fgBadPixelsFile ) { fBadPixelsFile = ref; }
125
126 void SetExtractWinLeft ( const Float_t f=fgExtractWinLeft ) { fExtractWinLeft = f; }
127 void SetExtractWinRight( const Float_t f=fgExtractWinRight ) { fExtractWinRight = f; }
128
129 MExtractor *GetExtractor() const { return fExtractor; }
130
131 ClassDef(MJPedestal, 0) // Tool to create a pedestal file (MPedestalCam)
132};
133
134#endif
Note: See TracBrowser for help on using the repository browser.