Changeset 3445 for trunk/MagicSoft/Mars/mjobs
- Timestamp:
- 03/09/04 14:36:31 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mjobs
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r3438 r3445 508 508 MCalibrationChargeCalc calcalc; 509 509 510 MFillH fillpin ( "MHCalibrationChargePINDiode" , "MExtractedSignalPINDiode");511 MFillH fillblind("MHCalibrationChargeBlindPix" , "MExtractedSignalBlindPixel");512 MFillH fillcam ("MHCalibrationChargeCam" , "MExtractedSignalCam");510 MFillH fillpin ("MHCalibrationChargePINDiode", "MExtractedSignalPINDiode"); 511 MFillH fillblind("MHCalibrationChargeBlindPix", "MExtractedSignalBlindPixel"); 512 MFillH fillcam ("MHCalibrationChargeCam", "MExtractedSignalCam"); 513 513 // 514 514 // Apply a filter against cosmics … … 522 522 523 523 tlist.AddToList(&read); 524 tlist.AddToList(&merge); 524 525 tlist.AddToList(&apply); 525 tlist.AddToList(&merge);526 526 tlist.AddToList(&extract); 527 527 tlist.AddToList(&pinext); -
trunk/MagicSoft/Mars/mjobs/MJCalibration.h
r3252 r3445 40 40 TString GetOutputFile() const; 41 41 42 const MCalibrationChargeCam &GetCalibrationCam() const{ return fCalibrationCam; }43 const MBadPixelsCam &GetBadPixels()const { return fBadPixels; }42 MCalibrationChargeCam &GetCalibrationCam() { return fCalibrationCam; } 43 const MBadPixelsCam &GetBadPixels() const { return fBadPixels; } 44 44 45 void SetBadPixels( MBadPixelsCam &bad) { bad.Copy(fBadPixels); }45 void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); } 46 46 47 47 Bool_t ReadCalibrationCam(); -
trunk/MagicSoft/Mars/mjobs/MJExtractSignal.h
r3253 r3445 44 44 TString GetOutputFileD() const; 45 45 46 const MPedPhotCam &GetPedPhotCam() const{ return fPedPhotCam; }46 MPedPhotCam &GetPedPhotCam() { return fPedPhotCam; } 47 47 const MBadPixelsCam &GetBadPixels() const { return fBadPixels; } 48 48 49 void SetBadPixels( MBadPixelsCam &bad) { bad.Copy(fBadPixels); }49 void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); } 50 50 51 51 Bool_t ProcessD(MPedestalCam &pedcam); -
trunk/MagicSoft/Mars/mjobs/MJPedestal.h
r3155 r3445 40 40 TString GetOutputFile() const; 41 41 42 const MPedestalCam &GetPedestalCam() const{ return fPedestalCam; }43 const MBadPixelsCam &GetBadPixels() 42 MPedestalCam &GetPedestalCam() { return fPedestalCam; } 43 const MBadPixelsCam &GetBadPixels() const { return fBadPixels; } 44 44 45 void SetBadPixels( MBadPixelsCam &bad) { bad.Copy(fBadPixels); }45 void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); } 46 46 47 47 Bool_t ProcessFile();
Note:
See TracChangeset
for help on using the changeset viewer.