Changeset 6689 for trunk/MagicSoft


Ignore:
Timestamp:
02/28/05 19:18:13 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6683 r6689  
    2929     - fixed the situation where the maximum bin is already found in the
    3030       low-gain samples.
     31
     32   * mjobs/MJCalibration.cc
     33     - write the MPedestalCams also to disk (needed for data-check).
     34
    3135
    3236 2005/02/25 Abelardo Moralejo
  • trunk/MagicSoft/Mars/mhcalib/MHCalibrationCam.cc

    r6528 r6689  
    704704        MBadPixelsPix &bad = fIntensBad ? (*fIntensBad)[i] : (*fBadPixels)[i];
    705705        InitHists(pix,bad,i);
     706
     707        if (fCam)
     708          (*fCam)[i].SetPixId(i);
    706709      }
    707710  }
  • trunk/MagicSoft/Mars/mjobs/MJCalibration.cc

    r6563 r6689  
    21042104        cont.Add(IsIntensity() ? (TObject*)&fIntensRelTimeCam : (TObject*)&fRelTimeCam);
    21052105
     2106        if (fExtractorCam.GetSize() != 0)
     2107          cont.Add(&fExtractorCam);
     2108       
     2109        TObject *pedcam = plist.FindObject("MPedestalCam");
     2110        if (!pedcam)
     2111          *fLog << warn << " - WARNING - MPedestalCam (fundamental)... not found for writing!" << endl;
     2112        else
     2113          cont.Add(pedcam);
     2114       
    21062115        TObject *geom = plist.FindObject("MGeomCam");
    21072116        if (!geom)
Note: See TracChangeset for help on using the changeset viewer.