Changeset 3069 for trunk/MagicSoft/Mars/mjobs/MJExtractSignal.h
- Timestamp:
- 02/09/04 15:44:04 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJExtractSignal.h
r2992 r3069 4 4 #ifndef MARS_MPedPhotCam 5 5 #include "MPedPhotCam.h" 6 #endif 7 #ifndef MARS_MBadPixelsCam 8 #include "MBadPixelsCam.h" 6 9 #endif 7 10 … … 21 24 MRunIter *fRuns; 22 25 23 MPedPhotCam fPedPhotCam; 26 MPedPhotCam fPedPhotCam; 27 MBadPixelsCam fBadPixels; 24 28 25 29 void DisplayResult(MParList &plist); … … 40 44 TString GetOutputFileD() const; 41 45 46 const MPedPhotCam &GetPedPhotCam() const { return fPedPhotCam; } 47 const MBadPixelsCam &GetBadPixels() const { return fBadPixels; } 48 49 void SetBadPixels(MBadPixelsCam &bad) { bad.Copy(fBadPixels); } 50 42 51 Bool_t ProcessD(MPedestalCam &pedcam); 43 52 Bool_t ProcessP(MPedestalCam &pedcam, MCalibrationCam &calcam); 44 45 const MPedPhotCam &GetPedPhotCam() const { return fPedPhotCam; }46 53 47 54 ClassDef(MJExtractSignal, 0) // Tool to create a pedestal file (MPedestalCam)
Note:
See TracChangeset
for help on using the changeset viewer.