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

Last change on this file since 5514 was 5514, checked in by gaug, 20 years ago
*** empty log message ***
File size: 5.4 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 MEvtLoop;
21
22class MJPedestal : public MJob
23{
24private:
25
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 static const TString fgNameExtractorCam; //! "ExtractorResolution"
44
45 MRunIter *fRuns; // Used pedestal runs
46 MExtractor *fExtractor; // Signal extractor, used to find the nr. of used FADC slices
47
48 MPedestalCam fPedestalCamIn; // Handed over pedestal results
49 MPedestalCam fPedestalCamOut; // Created pedestal results
50 MBadPixelsCam fBadPixels; // Bad Pixels
51
52 TString fNameExtractorCam; // Name of the outgoing MPedestalCam if fExtractorResolution
53
54 enum Display_t {kDataCheckDisplay, kNormalDisplay}; // Possible Display types
55 Display_t fDisplayType; // Chosen Display type
56
57 enum Storage_t { kNoStorage }; // Possible flags for the storage of results
58 Byte_t fStorage; // Bit-field for chosen storage type
59
60 Bool_t fDataCheck; // Flag if the data check is run on raw data
61
62 enum Extract_t {kUseData, kUsePedRun, kUseHists }; // Possible flags for the extraction of the pedestal
63 Extract_t fExtractType; // Chosen extractor type
64
65 Bool_t fExtractorResolution; // Flag if the extractor is used to calculate the pedestals
66
67 MExtractor *ReadCalibration() const;
68 Bool_t ReadPedestalCam();
69 Bool_t WriteResult();
70 //Bool_t WriteEventloop(MEvtLoop &evtloop) const;
71
72 void DisplayResult(MParList &plist);
73 void DisplayReferenceLines(MHCamera *cam, const Int_t what) const;
74 void DisplayOutliers(TH1D *hist) const;
75 void FixDataCheckHist(TH1D *hist) const;
76
77 Bool_t IsNoStorage() const { return TESTBIT(fStorage, kNoStorage); }
78
79 Bool_t CheckEnvLocal();
80
81public:
82
83 MJPedestal(const char *name=NULL, const char *title=NULL);
84
85 MPedestalCam &GetPedestalCam() { return fPedestalCamOut; }
86 const MBadPixelsCam &GetBadPixels() const { return fBadPixels; }
87
88 const char* GetNameExtractorCam() const { return fNameExtractorCam.Data(); }
89 const char* GetOutputFile() const;
90
91 const Bool_t IsDataCheck() const { return fDataCheck; }
92 const Bool_t IsUseData() const { return fExtractType == kUseData; }
93
94 Bool_t Process ();
95 Bool_t ProcessFile();
96
97 void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
98 void SetPedestals(const MPedestalCam &ped) { ped.Copy(fPedestalCamIn); }
99 void SetExtractor(MExtractor* ext) { fExtractor = ext; }
100 void SetInput(MRunIter *iter) { fRuns = iter; }
101 void SetUseData() { fExtractType = kUseData; }
102 void SetUseHists() { fExtractType = kUseHists; }
103 void SetUsePedRun() { fExtractType = kUsePedRun; }
104 void SetDataCheck(const Bool_t b=kTRUE) { fDataCheck = b; b ? SetDataCheckDisplay() : SetNormalDisplay(); }
105 void SetDataCheckDisplay() { fDisplayType = kDataCheckDisplay; }
106 void SetNormalDisplay() { fDisplayType = kNormalDisplay; }
107 void SetExtractorResolution(const Bool_t b=kTRUE) { fExtractorResolution = b; }
108 void SetNameExtractorCam( const char* name= fgNameExtractorCam.Data()) { fNameExtractorCam = name; }
109
110
111 // Storage
112 void SetNoStorage(const Bool_t b) { b ? SETBIT(fStorage, kNoStorage) : CLRBIT(fStorage,kNoStorage); }
113 void SetNormalStorage() { CLRBIT(fStorage, kNoStorage); }
114
115 ClassDef(MJPedestal, 0) // Tool to create a pedestal file (MPedestalCam)
116};
117
118#endif
Note: See TracBrowser for help on using the repository browser.