Changeset 3354


Ignore:
Timestamp:
02/28/04 19:58:11 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcalib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.cc

    r3352 r3354  
    489489    {
    490490    case 0:
    491       if ((*this)[idx].IsExcluded() || !(*this)[idx].IsChargeValid())
     491      if ((*this)[idx].IsExcluded())
    492492        return kFALSE;
    493493      val = (*this)[idx].GetMeanCharge();
    494494      break;
    495495    case 1:
    496       if ((*this)[idx].IsExcluded() || !(*this)[idx].IsChargeValid())
     496      if ((*this)[idx].IsExcluded())
    497497        return kFALSE;
    498498      val = (*this)[idx].GetMeanChargeErr();
    499499      break;
    500500    case 2:
    501       if ((*this)[idx].IsExcluded() || !(*this)[idx].IsChargeValid())
     501      if ((*this)[idx].IsExcluded())
    502502        return kFALSE;
    503503      val = (*this)[idx].GetSigmaCharge();
    504504      break;
    505505    case 3:
    506       if ((*this)[idx].IsExcluded() || !(*this)[idx].IsChargeValid())
     506      if ((*this)[idx].IsExcluded())
    507507        return kFALSE;
    508508      val = (*this)[idx].GetSigmaChargeErr();
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeHiGainPix.h

    r3264 r3354  
    2525  ~MHCalibrationChargeHiGainPix(){}
    2626
    27   void Init();
    28  
    2927  // Setters
    3028  void SetChargeNbins(const Int_t  bins =fgChargeNbins)          { fChargeNbins = bins;     }
     
    3533  void SetAbsTimeFirst(const Axis_t first=fgAbsTimeFirst)        { fAbsTimeFirst = first;   }
    3634  void SetAbsTimeLast (const Axis_t last =fgAbsTimeLast)         { fAbsTimeLast  = last;    }
    37 
    38   void ChangeHistId(Int_t i);
    3935
    4036  // Draw
Note: See TracChangeset for help on using the changeset viewer.