Changeset 3145 for trunk


Ignore:
Timestamp:
02/13/04 20:07:08 (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/MCalibrationPix.cc

    r3128 r3145  
    6464const Float_t MCalibrationPix::gkAverageQE                = 0.25;     
    6565const Float_t MCalibrationPix::gkAverageQEErr             = 0.03; 
     66const Float_t MCalibrationPix::gkConversionHiLo           = 10.;
     67const Float_t MCalibrationPix::gkConversionHiLoError        = 2.5;
    6668// --------------------------------------------------------------------------
    6769//
  • trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h

    r3128 r3145  
    1414  static const Float_t gkAverageQE;           // The average quantum efficieny agreed on for the first analysis
    1515  static const Float_t gkAverageQEErr;        // The error of average quantum efficieny
     16 
     17  static const Float_t gkConversionHiLo;      // The default conversion factor HI gain - Lo Gain
     18  static const Float_t gkConversionHiLoError; // The error of the default conversion factor
    1619 
    1720  static const Float_t gkElectronicPedRms;    // The pure electronic component of the RMS
     
    2629  static const Float_t gkConvFFactorRelErrorLimit; // The limit (in units of [1]) for acceptance of the rel. error of the conversion factor with the FFactor method
    2730
    28   Int_t   fPixId;                     // the pixel Id
     31  Int_t   fPixId;               // the pixel Id
    2932
    3033  UInt_t  fFlags;               // Flag for the set Bits
     
    109112  void SetPedestal(const Float_t ped, const Float_t pedrms,
    110113                   const Float_t higainsamp, const Float_t logainsamp);
    111   void SetConversionHiLo(const Float_t c)      { fConversionHiLo      = c;    }
    112   void SetConversionHiLoError(const Float_t e)  { fConversionHiLoError = e;    }
     114  void SetConversionHiLo(     const Float_t c=gkConversionHiLo)       { fConversionHiLo      = c;    }
     115  void SetConversionHiLoError(const Float_t e=gkConversionHiLoError)  { fConversionHiLoError = e;    }
    113116  void SetAverageQE(const Float_t qe=gkAverageQE, const Float_t err=gkAverageQEErr)
    114     { fAverageQE    = qe;
    115       fAverageQEErr = err;  }
     117                                    { fAverageQE = qe;               fAverageQEErr = err;  }
    116118 
    117119  // Setters for MC
Note: See TracChangeset for help on using the changeset viewer.