- Timestamp:
- 05/11/05 18:50:42 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc
r6993 r7012 448 448 *fLog << endl; 449 449 450 PrintBadPixels(MBadPixelsPix::kPreviouslyExcluded,"Previously excluded"); 450 451 PrintBadPixels(MBadPixelsPix::kChargeIsPedestal,"Signal smaller 3 Pedestal RMS"); 451 452 PrintBadPixels(MBadPixelsPix::kChargeSigmaNotValid,"Signal smaller 3 Pedestal RMS"); … … 458 459 PrintBadPixels(MBadPixelsPix::kHiGainOverFlow,"High-Gain Histogram Overflow"); 459 460 PrintBadPixels(MBadPixelsPix::kLoGainOverFlow,"Low-Gain Histogram Overflow"); 461 PrintBadPixels(MBadPixelsPix::kDeadPedestalRms,"Presumably dead from Ped. Rms"); 462 PrintBadPixels(MBadPixelsPix::kFluctuatingArrivalTimes,"Fluctuating Pulse Arrival Times"); 460 463 461 464 *fLog << endl; … … 559 562 560 563 (*this)[idx].SetUnsuitable(MBadPixelsPix::kUnsuitableRun); 564 (*this)[idx].SetUncalibrated(MBadPixelsPix::kPreviouslyExcluded); 561 565 } 562 566 } -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h
r5996 r7012 31 31 // All types are initialized to normal behaviour 32 32 enum UncalibratedType_t { 33 kPreviouslyExcluded = BIT(0), 33 34 kHiGainNotFitted = BIT(1), 34 35 kLoGainNotFitted = BIT(2), … … 52 53 kLoGainOverFlow = BIT(20), 53 54 kHiLoNotFitted = BIT(21), 54 kHiLoOscillating = BIT(22) 55 kHiLoOscillating = BIT(22), 56 kDeadPedestalRms = BIT(23), 57 kFluctuatingArrivalTimes = BIT(24) 55 58 }; 56 59 … … 101 104 if (IsUncalibrated( kHiGainOverFlow )) return 7; 102 105 if (IsUncalibrated( kLoGainOverFlow )) return 8; 103 return 9; 106 if (IsUncalibrated( kDeadPedestalRms )) return 9; 107 if (IsUncalibrated( kFluctuatingArrivalTimes )) return 10; 108 if (IsUncalibrated( kPreviouslyExcluded )) return 11; 109 return 12; 104 110 } 105 111 -
trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc
r7001 r7012 18 18 ! Author(s): Thomas Bretz, 4/2003 <mailto:tbretz@astro.uni-wuerzburg.de> 19 19 ! 20 ! Copyright: MAGIC Software Development, 2003-200 420 ! Copyright: MAGIC Software Development, 2003-2005 21 21 ! 22 22 ! … … 474 474 475 475 // Add copyright notice 476 l = new TGLabel(f, "(c) MAGIC Software Development, 2000-200 4");476 l = new TGLabel(f, "(c) MAGIC Software Development, 2000-2005"); 477 477 fList->Add(l); 478 478 f->AddFrame(l, layb);
Note:
See TracChangeset
for help on using the changeset viewer.