Ignore:
Timestamp:
03/09/04 14:36:31 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mjobs
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mjobs/MJCalibration.cc

    r3438 r3445  
    508508    MCalibrationChargeCalc   calcalc;
    509509
    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");
    513513    //
    514514    // Apply a filter against cosmics
     
    522522
    523523    tlist.AddToList(&read);
     524    tlist.AddToList(&merge);
    524525    tlist.AddToList(&apply);
    525     tlist.AddToList(&merge);
    526526    tlist.AddToList(&extract);
    527527    tlist.AddToList(&pinext); 
  • trunk/MagicSoft/Mars/mjobs/MJCalibration.h

    r3252 r3445  
    4040    TString GetOutputFile() const;
    4141
    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; }
    4444
    45     void SetBadPixels(MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
     45    void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
    4646
    4747    Bool_t ReadCalibrationCam();
  • trunk/MagicSoft/Mars/mjobs/MJExtractSignal.h

    r3253 r3445  
    4444    TString GetOutputFileD() const;
    4545
    46     const MPedPhotCam   &GetPedPhotCam() const { return fPedPhotCam; }
     46    MPedPhotCam &GetPedPhotCam() { return fPedPhotCam; }
    4747    const MBadPixelsCam &GetBadPixels()  const { return fBadPixels; }
    4848
    49     void SetBadPixels(MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
     49    void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
    5050
    5151    Bool_t ProcessD(MPedestalCam &pedcam);
  • trunk/MagicSoft/Mars/mjobs/MJPedestal.h

    r3155 r3445  
    4040    TString GetOutputFile() const;
    4141
    42     const MPedestalCam  &GetPedestalCam() const { return fPedestalCam; }
    43     const MBadPixelsCam &GetBadPixels()   const { return fBadPixels; }
     42    MPedestalCam &GetPedestalCam() { return fPedestalCam; }
     43    const MBadPixelsCam &GetBadPixels() const { return fBadPixels; }
    4444
    45     void SetBadPixels(MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
     45    void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
    4646
    4747    Bool_t ProcessFile();
Note: See TracChangeset for help on using the changeset viewer.