Changeset 3354
- Timestamp:
- 02/28/04 19:58:11 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.cc
r3352 r3354 489 489 { 490 490 case 0: 491 if ((*this)[idx].IsExcluded() || !(*this)[idx].IsChargeValid())491 if ((*this)[idx].IsExcluded()) 492 492 return kFALSE; 493 493 val = (*this)[idx].GetMeanCharge(); 494 494 break; 495 495 case 1: 496 if ((*this)[idx].IsExcluded() || !(*this)[idx].IsChargeValid())496 if ((*this)[idx].IsExcluded()) 497 497 return kFALSE; 498 498 val = (*this)[idx].GetMeanChargeErr(); 499 499 break; 500 500 case 2: 501 if ((*this)[idx].IsExcluded() || !(*this)[idx].IsChargeValid())501 if ((*this)[idx].IsExcluded()) 502 502 return kFALSE; 503 503 val = (*this)[idx].GetSigmaCharge(); 504 504 break; 505 505 case 3: 506 if ((*this)[idx].IsExcluded() || !(*this)[idx].IsChargeValid())506 if ((*this)[idx].IsExcluded()) 507 507 return kFALSE; 508 508 val = (*this)[idx].GetSigmaChargeErr(); -
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeHiGainPix.h
r3264 r3354 25 25 ~MHCalibrationChargeHiGainPix(){} 26 26 27 void Init();28 29 27 // Setters 30 28 void SetChargeNbins(const Int_t bins =fgChargeNbins) { fChargeNbins = bins; } … … 35 33 void SetAbsTimeFirst(const Axis_t first=fgAbsTimeFirst) { fAbsTimeFirst = first; } 36 34 void SetAbsTimeLast (const Axis_t last =fgAbsTimeLast) { fAbsTimeLast = last; } 37 38 void ChangeHistId(Int_t i);39 35 40 36 // Draw
Note:
See TracChangeset
for help on using the changeset viewer.