Changeset 4147 for trunk/MagicSoft
- Timestamp:
- 05/24/04 16:22:42 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4145 r4147 34 34 - small modification in the Print() 35 35 36 37 * mpedestals/MPedCalcPedRun.cc 38 - put a condition if number of pixels in area index or in sector 39 is zero, don't calculate av. pedestal and av. pedRMS of this part. 36 40 37 41 2004/05/22: Markus Gaug -
trunk/MagicSoft/Mars/mpedestal/MPedCalcPedRun.cc
r4013 r4147 307 307 return kFALSE; 308 308 } 309 309 310 310 fGeom = (MGeomCam*)pList->FindObject("MGeomCam"); 311 311 if (!fGeom) … … 346 346 { 347 347 348 348 349 Int_t lastdesired = (Int_t)fLoGainLast; 349 350 Int_t lastavailable = (Int_t)fRunHeader->GetNumSamplesLoGain()-1; … … 586 587 587 588 const Int_t napix = fAreaValid.At(aidx); 589 590 if (napix == 0) 591 continue; 592 588 593 const Float_t sum = fAreaSumx.At(aidx); 589 594 const Float_t sum2 = fAreaSumx2.At(aidx); … … 613 618 614 619 const Int_t nspix = fSectorValid.At(sector); 620 621 if (nspix == 0) 622 continue; 623 615 624 const Float_t sum = fSectorSumx.At(sector); 616 625 const Float_t sum2 = fSectorSumx2.At(sector);
Note:
See TracChangeset
for help on using the changeset viewer.