Changeset 2239
- Timestamp:
- 06/26/03 20:28:20 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2237 r2239 1 1 -*-*- 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) 2 11 3 12 2003/06/26: Thomas Bretz -
trunk/MagicSoft/Mars/mfileio/MCT1ReadAscii.cc
r2206 r2239 211 211 212 212 if (val > 0.0) 213 (*fPedest)[i].Set MeanRms(val);213 (*fPedest)[i].SetPedestalRms(val); 214 214 } 215 215 } … … 251 251 252 252 if (nphot > 0.0) 253 fNphot->AddPixel(i, nphot, (*fPedest)[i].Get MeanRms());253 fNphot->AddPixel(i, nphot, (*fPedest)[i].GetPedestalRms()); 254 254 } 255 255 fNphot->FixSize(); -
trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.cc
r2206 r2239 361 361 for (Int_t i=0; i<iMAXNUMPIX; i++) 362 362 { 363 (*fPedest)[i].Set MeanRms(outpars.frms_pedsig_phot[i]);363 (*fPedest)[i].SetPedestalRms(outpars.frms_pedsig_phot[i]); 364 364 *fLog << outpars.frms_pedsig_phot[i] << " "; 365 365 fPedRMS[i] = outpars.frms_pedsig_phot[i]; … … 907 907 // reset pedestal RMS for this event 908 908 for (Int_t i=0; i<iMAXNUMPIX; i++) 909 (*fPedest)[i].Set MeanRms(fPedRMS[i]);909 (*fPedest)[i].SetPedestalRms(fPedRMS[i]); 910 910 911 911 // int isecs_since_midday; // seconds passed since midday before sunset (JD of run start) … … 951 951 952 952 fNphot->AddPixel(i, 0.1*event.spixsig_10thphot[i], 953 (*fPedest)[i].Get MeanRms());953 (*fPedest)[i].GetPedestalRms()); 954 954 } 955 955 fNphot->FixSize(); -
trunk/MagicSoft/Mars/mhist/MHSigmaPixel.cc
r2173 r2239 115 115 { 116 116 const MPedestalPix pix = ped[i]; 117 fHist.Fill(i, pix.Get Sigma());117 fHist.Fill(i, pix.GetPedestalRms()); 118 118 } 119 119 return kTRUE; -
trunk/MagicSoft/Mars/mhist/MHSigmaTheta.cc
r2209 r2239 206 206 const MPedestalPix &pix = (*fPed)[id]; 207 207 208 const Double_t sigma = pix.Get MeanRms();208 const Double_t sigma = pix.GetPedestalRms(); 209 209 const Double_t area = fCam->GetPixRatio(id); 210 210 -
trunk/MagicSoft/Mars/mimage/MImgCleanStd.cc
r2237 r2239 336 336 337 337 const Float_t entry = pix.GetNumPhotons(); 338 const Float_t noise = (*fPed)[idx].Get Sigma();338 const Float_t noise = (*fPed)[idx].GetPedestalRms(); 339 339 340 340 // … … 496 496 // 497 497 const Float_t entry = pix.GetNumPhotons(); 498 const Float_t noise = (*fPed)[idx].Get Sigma();498 const Float_t noise = (*fPed)[idx].GetPedestalRms(); 499 499 500 500 //
Note:
See TracChangeset
for help on using the changeset viewer.