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

Last change on this file since 5937 was 5937, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 5.5 KB
Line 
1#ifndef MARS_MJPedestal
2#define MARS_MJPedestal
3
4#ifndef MARS_MJob
5#include "MJob.h"
6#endif
7#ifndef MARS_MPedestalCam
8#include "MPedestalCam.h"
9#endif
10#ifndef MARS_MBadPixelsCam
11#include "MBadPixelsCam.h"
12#endif
13
14class TCanvas;
15class MParList;
16class MRunIter;
17class MHCamera;
18class TH1D;
19class MExtractor;
20class MExtractPedestal;
21class MEvtLoop;
22
23class MJPedestal : public MJob
24{
25private:
26 static const Double_t fgPedestalMin; //! Minimum Axis value for pedestal datacheck display
27 static const Double_t fgPedestalMax; //! Maximum Axis value for pedestal datacheck display
28 static const Double_t fgPedRmsMin; //! Minimum Axis value for ped. RMS datacheck display
29 static const Double_t fgPedRmsMax; //! Maximum Axis value for ped. RMS datacheck display
30
31 static const Float_t fgRefPedClosedLids; //! Reference line pedestal for closed lids run
32 static const Float_t fgRefPedExtraGalactic; //! Reference line pedestal for extragalactic source
33 static const Float_t fgRefPedGalactic; //! Reference line pedestal for galactic source
34
35 static const Float_t fgRefPedRmsClosedLidsInner; //! Ref. line ped. RMS for closed lids run - inner pixels
36 static const Float_t fgRefPedRmsExtraGalacticInner; //! Ref. line ped. RMS for extragalactic source - inner pixels
37 static const Float_t fgRefPedRmsGalacticInner; //! Ref. line ped. RMS for galactic source - inner pixels
38
39 static const Float_t fgRefPedRmsClosedLidsOuter; //! Ref. line ped. RMS for closed lids run - outer pixels
40 static const Float_t fgRefPedRmsExtraGalacticOuter; //! Ref. line ped. RMS for extragalactic source - outer pixels
41 static const Float_t fgRefPedRmsGalacticOuter; //! Ref. line ped. RMS for galactic source - outer pixels
42
43 MRunIter *fRuns; // Used pedestal runs
44 MExtractor *fExtractor; // Signal extractor, used to find the nr. of used FADC slices
45
46 MPedestalCam fPedestalCamIn; // Handed over pedestal results
47 MPedestalCam fPedestalCamOut; // Created pedestal results
48 MBadPixelsCam fBadPixels; // Bad Pixels
49
50 enum Display_t { kDataCheckDisplay, kNormalDisplay}; // Possible Display types
51 Display_t fDisplayType; // Chosen Display type
52
53 enum Storage_t { kNoStorage = BIT(0) }; // Possible flags for the storage of results
54 Byte_t fStorage; // Bit-field for chosen storage type
55
56 Bool_t fDataCheck; // Flag if the data check is run on raw data
57
58 enum Extract_t { kUseData, kUsePedRun, kUseHists }; // Possible flags for the extraction of the pedestal
59 Extract_t fExtractType; // Chosen extractor type
60
61 enum Extraction { kFundamental, kWithExtractorRndm, kWithExtractor };
62 Int_t fExtractionType; // Flag if the extractor is used to calculate the pedestals
63
64 MExtractor *ReadCalibration() const;
65 Bool_t ReadPedestalCam();
66 Bool_t WriteResult();
67 //Bool_t WriteEventloop(MEvtLoop &evtloop) const;
68
69 void DisplayResult(MParList &plist);
70 void DisplayReferenceLines(MHCamera *cam, const Int_t what) const;
71 void DisplayOutliers(TH1D *hist) const;
72 void FixDataCheckHist(TH1D *hist) const;
73
74 Bool_t IsNoStorage() const { return TESTBIT(fStorage, kNoStorage); }
75
76 Bool_t CheckEnvLocal();
77
78public:
79 MJPedestal(const char *name=NULL, const char *title=NULL);
80 ~MJPedestal();
81
82 MPedestalCam &GetPedestalCam() { return fPedestalCamOut; }
83 const MBadPixelsCam &GetBadPixels() const { return fBadPixels; }
84
85 const char* GetOutputFile() const;
86
87 const Bool_t IsDataCheck() const { return fDataCheck; }
88 const Bool_t IsUseData() const { return fExtractType == kUseData; }
89
90 Bool_t Process ();
91 Bool_t ProcessFile();
92
93 void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
94 void SetPedestals(const MPedestalCam &ped) { ped.Copy(fPedestalCamIn); }
95 void SetExtractor(MExtractor* ext);
96 void SetInput(MRunIter *iter) { fRuns = iter; }
97 void SetUseData() { fExtractType = kUseData; }
98 void SetUseHists() { fExtractType = kUseHists; }
99 void SetUsePedRun() { fExtractType = kUsePedRun; }
100 void SetDataCheck(const Bool_t b=kTRUE) { fDataCheck = b; b ? SetDataCheckDisplay() : SetNormalDisplay(); }
101 void SetDataCheckDisplay() { fDisplayType = kDataCheckDisplay; }
102 void SetNormalDisplay() { fDisplayType = kNormalDisplay; }
103
104 void SetExtractionFundamental() { fExtractionType=kFundamental; /*fPedestalCamOut.SetName("MPedestalFundamental");*/ }
105 void SetExtractionWithExtractorRndm() { fExtractionType=kWithExtractorRndm; /*fPedestalCamOut.SetName("MPedestalExtractorRndm");*/ }
106 void SetExtractionWithExtractor() { fExtractionType=kWithExtractor; /*fPedestalCamOut.SetName("MPedestalExtractor");*/ }
107
108 MExtractor *GetExtractor() const { return fExtractor; }
109
110 // Storage
111 void SetNoStorage(const Bool_t b=kTRUE) { b ? SETBIT(fStorage, kNoStorage) : CLRBIT(fStorage,kNoStorage); }
112 void SetNormalStorage() { CLRBIT(fStorage, kNoStorage); }
113
114 ClassDef(MJPedestal, 0) // Tool to create a pedestal file (MPedestalCam)
115};
116
117#endif
Note: See TracBrowser for help on using the repository browser.