- Timestamp:
- 02/26/04 03:19:40 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeBlindPix.cc
r3293 r3315 194 194 } 195 195 196 197 198 196 // -------------------------------------------------------------------------- 199 197 // … … 219 217 switch (fColor) 220 218 { 221 case k EGreen:219 case kGREEN: 222 220 fMeanFluxInsidePlexiglass /= gkBlindPixelQEGreen; 223 221 fMeanFluxErrInsidePlexiglass += gkBlindPixelQEGreenErr*gkBlindPixelQEGreenErr … … 227 225 // attenuation has negligible error 228 226 break; 229 case k EBlue:227 case kBLUE: 230 228 fMeanFluxInsidePlexiglass /= gkBlindPixelQEBlue; 231 229 fMeanFluxErrInsidePlexiglass += gkBlindPixelQEBlueErr*gkBlindPixelQEBlueErr … … 235 233 // attenuation has negligible error 236 234 break; 237 case k EUV:235 case kUV: 238 236 fMeanFluxInsidePlexiglass /= gkBlindPixelQEUV; 239 237 fMeanFluxErrInsidePlexiglass += gkBlindPixelQEUVErr*gkBlindPixelQEUVErr … … 243 241 // attenuation has negligible error 244 242 break; 245 case k ECT1:243 case kCT1: 246 244 default: 247 245 fMeanFluxInsidePlexiglass /= gkBlindPixelQECT1; -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeBlindPix.h
r3293 r3315 56 56 enum { kOscillating, kPedestalFitOK, kSinglePheFitOK, kChargeFitValid, kExcluded, 57 57 kFluxInsidePlexiglassAvailable }; 58 59 public:60 61 enum PulserColor_t { kEBlue, kEGreen, kEUV, kECT1 } ;62 63 private:64 58 65 59 PulserColor_t fColor; -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargePINDiode.cc
r3291 r3315 318 318 switch (fColor) 319 319 { 320 case k EGreen:320 case kGREEN: 321 321 fMeanFluxOutsidePlexiglass /= gkPINDiodeQEGreen; 322 322 fMeanFluxErrOutsidePlexiglass += gkPINDiodeQEGreenErr*gkPINDiodeQEGreenErr 323 323 / gkPINDiodeQEGreen/gkPINDiodeQEGreen; 324 324 break; 325 case k EBlue:325 case kBLUE: 326 326 fMeanFluxOutsidePlexiglass /= gkPINDiodeQEBlue; 327 327 fMeanFluxErrOutsidePlexiglass += gkPINDiodeQEBlueErr*gkPINDiodeQEBlueErr 328 328 / gkPINDiodeQEBlue/gkPINDiodeQEBlue; 329 329 break; 330 case k EUV:330 case kUV: 331 331 fMeanFluxOutsidePlexiglass /= gkPINDiodeQEUV; 332 332 fMeanFluxErrOutsidePlexiglass += gkPINDiodeQEUVErr*gkPINDiodeQEUVErr 333 333 / gkPINDiodeQEUV/gkPINDiodeQEUV; 334 334 break; 335 case k ECT1:335 case kCT1: 336 336 default: 337 337 fMeanFluxOutsidePlexiglass /= gkPINDiodeQECT1; -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargePINDiode.h
r3291 r3315 66 66 Float_t fMeanFluxOutsidePlexiglass; // The mean number of photons in an INNER PIXEL outside the plexiglass 67 67 Float_t fMeanFluxErrOutsidePlexiglass; // The uncertainty about the number of photons in an INNER PIXEL 68 69 public:70 71 enum PulserColor_t { kEBlue, kEGreen, kEUV, kECT1 } ;72 73 private:74 68 75 69 PulserColor_t fColor;
Note:
See TracChangeset
for help on using the changeset viewer.