Changeset 5480


Ignore:
Timestamp:
11/27/04 13:14:45 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5479 r5480  
    5656       "LoGain"-variables of MCalibrationPedCam
    5757
    58    * mpedestal/MCalibrationPedCam.cc
     58   * mcalib/MCalibrationPedCam.cc
    5959     - added new flags in the GetPixelContent called the "low-gain"
    6060       entries (s.a.)
    6161
     62   * mcalib/MCalibColorSteer.[h,cc]
     63     - removed pointer to MRawRunHeader
    6264 
    6365   * mpedestal/MExtractPedestal.[h,cc]
  • trunk/MagicSoft/Mars/mcalib/MCalibColorSteer.h

    r5054 r5480  
    99class MGeomCam;
    1010class MRawEvtHeader;
     11class MRawRunHeader;
    1112class MCalibrationChargeCalc;
    1213class MCalibrationRelTimeCalc;
     
    2122
    2223  MRawEvtHeader                   *fHeader;          //!
     24  MRawRunHeader                   *fRunHeader;       //!
    2325  MGeomCam                        *fGeom;            //!
    2426  MParList                        *fParList;         //!
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.cc

    r5132 r5480  
    400400// 31: Error Ped. RMS entire signal extr. range  (see MCalibrationChargePix::PedRmsErr())
    401401//
     402// Special variables (for data check):
     403// ====================================
     404//
     405// 32: HiGain RMS divided by Mean for every pixel (with inclusion of the excluded pixels)
     406//
    402407Bool_t MCalibrationChargeCam::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const
    403408{
     
    582587        return kFALSE;
    583588      val = pix.GetPedErr()/2.;
     589      break;
     590    case 32:
     591      val = pix.GetMean() == 0. ? 0. : pix.GetHiGainRms()/pix.GetMean();
    584592      break;
    585593    default:
Note: See TracChangeset for help on using the changeset viewer.