Changeset 2839
- Timestamp:
- 01/19/04 11:34:09 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2837 r2839 4 4 5 5 -*-*- END OF LINE -*-*- 6 7 2004/01/19: Markus Gaug 8 9 * mcalib/MCalibrationPix.[h,cc] 10 - new Flag fExcluded to indicate if pixel has been excluded from 11 further analysis 12 6 13 7 14 2004/01/16: Javier Rico & Pepe Flix -
trunk/MagicSoft/Mars/mcalib/MCalibrationPINDiode.cc
r2833 r2839 34 34 35 35 #include "MLog.h" 36 #include "MLogManip.h" 36 37 37 38 ClassImp(MCalibrationPINDiode); -
trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc
r2833 r2839 84 84 fConversionSigmaPINDiodeMethod(-1.), 85 85 fHiGainSaturation(kFALSE), 86 fExcluded(kFALSE), 86 87 fFitValid(kFALSE), 87 88 fFitted(kFALSE), -
trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h
r2794 r2839 54 54 Bool_t fHiGainSaturation; // Is Lo-Gain used at all? 55 55 56 Bool_t fExcluded; 56 57 Bool_t fFitValid; 57 58 Bool_t fFitted; … … 64 65 Bool_t CheckChargeFitValidity(); 65 66 Bool_t CheckTimeFitValidity(); 67 Bool_t CheckOscillations(); 66 68 67 69 public: … … 73 75 74 76 // Getter 77 Bool_t IsExcluded() const { return fExcluded; } 75 78 Bool_t IsFitValid() const { return fFitValid; } 76 Bool_t IsFitted() const { return fFitted; }79 Bool_t IsFitted() const { return fFitted; } 77 80 Bool_t IsBlindPixelMethodValid() const { return fBlindPixelMethodValid; } 78 Bool_t IsFFactorMethodValid() const { return fFFactorMethodValid; }79 Bool_t IsPINDiodeMethodValid() const { return fPINDiodeMethodValid; }81 Bool_t IsFFactorMethodValid() const { return fFFactorMethodValid; } 82 Bool_t IsPINDiodeMethodValid() const { return fPINDiodeMethodValid; } 80 83 81 84 // Charges … … 142 145 } 143 146 144 void SetFitValid() { fFitValid = kTRUE; } 145 void SetFitted() { fFitted = kTRUE; } 146 void SetBlindPixelMethodValid(Bool_t b=kTRUE) { fBlindPixelMethodValid = b; } 147 void SetFFactorMethodValid(Bool_t b=kTRUE) { fFFactorMethodValid = b; } 148 void SetPINDiodeMethodValid(Bool_t b=kTRUE) { fPINDiodeMethodValid = b; } 147 void SetExcluded(Bool_t b = kTRUE) { fExcluded = b; } 148 void SetFitValid(Bool_t b = kTRUE) { fFitValid = b; } 149 void SetFitted(Bool_t b = kTRUE) { fFitted = b; } 150 void SetBlindPixelMethodValid(Bool_t b = kTRUE) { fBlindPixelMethodValid = b; } 151 void SetFFactorMethodValid(Bool_t b = kTRUE) { fFFactorMethodValid = b; } 152 void SetPINDiodeMethodValid(Bool_t b = kTRUE) { fPINDiodeMethodValid = b; } 149 153 150 154 // Unknown
Note:
See TracChangeset
for help on using the changeset viewer.