Changeset 4793 for trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc
- Timestamp:
- 08/29/04 17:04:39 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc
r4679 r4793 616 616 // 21: MBadPixelsPix::IsUncalibrated(MBadPixelsPix::kRelTimeOscillating ) 617 617 // 22: MBadPixelsPix::IsUncalibrated(MBadPixelsPix::kDeviatingNumPhots ) 618 // 23: MBadPixelsPix::IsUncalibrated(MBadPixelsPix::kHiGainOverFlow ) 619 // 24: MBadPixelsPix::IsUncalibrated(MBadPixelsPix::kLoGainOverFlow ) 618 620 // 619 621 Bool_t MBadPixelsCam::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const … … 739 741 val = 1; 740 742 break; 743 case 23: 744 if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kHiGainOverFlow )) 745 return kFALSE; 746 val = 1; 747 break; 748 case 24: 749 if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kLoGainOverFlow )) 750 return kFALSE; 751 val = 1; 752 break; 741 753 default: 742 754 return kFALSE;
Note:
See TracChangeset
for help on using the changeset viewer.