Changeset 2239


Ignore:
Timestamp:
06/26/03 20:28:20 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2237 r2239  
    11                                                 -*-*- END OF LINE -*-*-
     2
     3 2003/06/26: Abelardo Moralejo
     4
     5  * mfileio/MCT1ReadAscii.cc, MCT1ReadPreProc.cc
     6    mhist/MHSigmaPixel.cc, MHSigmaTheta.cc
     7    mimage/MImgCleanStd.cc
     8
     9     - adapted to new function names in MPedestalPix (please Thomas
     10       check these, I had to do it to make Mars compile)
    211
    312 2003/06/26: Thomas Bretz
  • trunk/MagicSoft/Mars/mfileio/MCT1ReadAscii.cc

    r2206 r2239  
    211211
    212212        if (val > 0.0)
    213             (*fPedest)[i].SetMeanRms(val);
     213            (*fPedest)[i].SetPedestalRms(val);
    214214    }
    215215}
     
    251251
    252252        if (nphot > 0.0)
    253             fNphot->AddPixel(i, nphot, (*fPedest)[i].GetMeanRms());
     253            fNphot->AddPixel(i, nphot, (*fPedest)[i].GetPedestalRms());
    254254    }
    255255    fNphot->FixSize();
  • trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.cc

    r2206 r2239  
    361361    for (Int_t i=0; i<iMAXNUMPIX; i++)
    362362    {
    363         (*fPedest)[i].SetMeanRms(outpars.frms_pedsig_phot[i]);
     363        (*fPedest)[i].SetPedestalRms(outpars.frms_pedsig_phot[i]);
    364364        *fLog << outpars.frms_pedsig_phot[i] << " ";
    365365        fPedRMS[i] =  outpars.frms_pedsig_phot[i];
     
    907907    // reset pedestal RMS for this event
    908908    for (Int_t i=0; i<iMAXNUMPIX; i++)
    909         (*fPedest)[i].SetMeanRms(fPedRMS[i]);
     909        (*fPedest)[i].SetPedestalRms(fPedRMS[i]);
    910910
    911911    //  int   isecs_since_midday; // seconds passed since midday before sunset (JD of run start)
     
    951951
    952952        fNphot->AddPixel(i, 0.1*event.spixsig_10thphot[i],
    953                          (*fPedest)[i].GetMeanRms());
     953                         (*fPedest)[i].GetPedestalRms());
    954954    }
    955955    fNphot->FixSize();
  • trunk/MagicSoft/Mars/mhist/MHSigmaPixel.cc

    r2173 r2239  
    115115    {
    116116        const MPedestalPix pix = ped[i];
    117         fHist.Fill(i, pix.GetSigma());
     117        fHist.Fill(i, pix.GetPedestalRms());
    118118    }
    119119    return kTRUE;
  • trunk/MagicSoft/Mars/mhist/MHSigmaTheta.cc

    r2209 r2239  
    206206        const MPedestalPix &pix = (*fPed)[id];
    207207
    208         const Double_t sigma = pix.GetMeanRms();
     208        const Double_t sigma = pix.GetPedestalRms();
    209209        const Double_t area  = fCam->GetPixRatio(id);
    210210
  • trunk/MagicSoft/Mars/mimage/MImgCleanStd.cc

    r2237 r2239  
    336336
    337337        const Float_t entry = pix.GetNumPhotons();
    338         const Float_t noise = (*fPed)[idx].GetSigma();
     338        const Float_t noise = (*fPed)[idx].GetPedestalRms();
    339339
    340340        //
     
    496496    //
    497497    const Float_t entry = pix.GetNumPhotons();
    498     const Float_t noise = (*fPed)[idx].GetSigma();
     498    const Float_t noise = (*fPed)[idx].GetPedestalRms();
    499499
    500500    //
Note: See TracChangeset for help on using the changeset viewer.