Changeset 2905


Ignore:
Timestamp:
01/24/04 01:55:16 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2904 r2905  
    1313   * mcalib/MCalibrationBlindPix.h
    1414   * mcalib/MHCalibrationBlindPixel.[h,cc]
     15   * mcalib/MCalibrationPINDiode.h
     16   * mcalib/MHCalibrationPINDiode.[h,cc]
    1517   * mcalib/MCalibrationPix.[h,cc]
    1618   * mcalib/MHCalibrationPixel.[h,cc]
     
    2729     - clean up  setters
    2830     - pass to bit-fields for all flags
     31
     32   * mcalib/MCalibrationCam.cc
     33     - exclude Blind Pixel from Camera display
     34     - do not fill &val when return kFALSE
    2935
    3036
  • trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc

    r2884 r2905  
    341341    return kFALSE;
    342342
    343   if (!(*this)[idx].IsFitValid())
    344     {
    345       val = -1.;
    346       return kFALSE;
    347     }
    348  
     343  if ( (!(*this)[idx].IsFitValid()) || (*this)[idx].IsExcluded())
     344    return kFALSE;
     345 
     346  if (idx == gkCalibrationBlindPixelId)
     347    return kFALSE;
     348
    349349  switch (type)
    350350    {
     
    474474
    475475  *fLog << inf << endl;
    476   *fLog << inf << mean << " Mean number of Photons for an Inner Pixel (inside Plexiglass): "
     476  *fLog << inf << "Mean number of Photons for an Inner Pixel (inside Plexiglass): "
    477477        << fMeanPhotInsidePlexiglass << endl;
    478   *fLog << inf << endl;
    479478
    480479  TIter Next(fPixels);
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationPINDiode.cc

    r2885 r2905  
    7878    Int_t nbins   = 32;
    7979
    80     fHPTime = new TH1I("HPTime","Distribution of Mean Arrival Times",nbins,tfirst,tlast);
     80    fHPTime = new TH1F("HPTime","Distribution of Mean Arrival Times",nbins,tfirst,tlast);
    8181    fHPTime->SetXTitle("Mean Arrival Times [FADC slice nr]");
    8282    fHPTime->SetYTitle("Nr. of events");
Note: See TracChangeset for help on using the changeset viewer.