Changeset 3661
- Timestamp:
- 04/05/04 21:51:06 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargePINDiode.cc
r3660 r3661 77 77 const Float_t MCalibrationChargePINDiode::gkPINDiodeQEUVErr = -1.0; 78 78 const Float_t MCalibrationChargePINDiode::gkPINDiodeQECT1Err = -1.0; 79 80 const Float_t MCalibrationChargePINDiode::gkPINDiodeArea = 100;81 79 // -------------------------------------------------------------------------- 82 80 // -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargePINDiode.h
r3660 r3661 10 10 private: 11 11 12 static const Float_t fgChargeToPhotons; //! Default for fChargeToPhotons 13 static const Float_t fgChargeToPhotonsErr; //! Default for fChargeToPhotonsVar 14 static const Float_t gkPINDiodeArea; //! PIN Diode Effective Area in mm^2 15 static const Float_t gkPINDiodeQEGreen; //! Quantum Efficiency at 520 nm 16 static const Float_t gkPINDiodeQEBlue; //! Quantum Efficiency at 460 nm 17 static const Float_t gkPINDiodeQEUV; //! Quantum Efficiency at 370 nm 18 static const Float_t gkPINDiodeQECT1; //! Quantum Efficiency at 370 nm 19 static const Float_t gkPINDiodeQEGreenErr; //! Uncertainty QE at 520 nm 20 static const Float_t gkPINDiodeQEBlueErr; //! Uncertainty QE at 460 nm 21 static const Float_t gkPINDiodeQEUVErr; //! Uncertainty QE at 370 nm 22 static const Float_t gkPINDiodeQECT1Err; //! Uncertainty QE at 370 nmu 23 static const Float_t gkSolidAngleRatio; //! Solid angles ratio PIN Diode - inner pixel 24 static const Float_t gkSolidAngleRatioErr; //! Error solid angle ratio PIN Diode - inn. pix. 12 static const Float_t fgChargeToPhotons; //! Default for fChargeToPhotons 13 static const Float_t fgChargeToPhotonsErr; //! Default for fChargeToPhotonsVar 14 static const Float_t gkPINDiodeQEGreen; //! Quantum Efficiency at 520 nm 15 static const Float_t gkPINDiodeQEBlue; //! Quantum Efficiency at 460 nm 16 static const Float_t gkPINDiodeQEUV; //! Quantum Efficiency at 370 nm 17 static const Float_t gkPINDiodeQECT1; //! Quantum Efficiency at 370 nm 18 static const Float_t gkPINDiodeQEGreenErr; //! Uncertainty QE at 520 nm 19 static const Float_t gkPINDiodeQEBlueErr; //! Uncertainty QE at 460 nm 20 static const Float_t gkPINDiodeQEUVErr; //! Uncertainty QE at 370 nm 21 static const Float_t gkPINDiodeQECT1Err; //! Uncertainty QE at 370 nmu 22 static const Float_t gkSolidAngleRatio; //! Solid angles ratio PIN Diode - inner pixel 23 static const Float_t gkSolidAngleRatioErr; //! Error solid angle ratio PIN Diode - inn. pix. 25 24 26 Float_t fAbsTimeMean; 27 Float_t fAbsTimeRms; 28 Byte_t fCalibFlags; 29 Float_t fChargeLimit; 30 Float_t fChargeErrLimit; 31 Float_t fChargeRelErrLimit; 32 Float_t fChargeToPhotons; 33 Float_t fChargeToPhotonsVar; 34 Float_t fNumPhotons; 35 Float_t fNumPhotonsVar; 36 Float_t fFluxOutsidePlexiglass; 37 Float_t fFluxOutsidePlexiglassVar; 38 Float_t fPed; 39 Float_t fPedRms; 40 Float_t fRmsChargeMean; 41 Float_t fRmsChargeMeanErr; 42 Float_t fRmsChargeSigma; 43 Float_t fRmsChargeSigmaErr; 44 PulserColor_t fColor; 25 Float_t fAbsTimeMean; // Mean Absolute Arrival Time 26 Float_t fAbsTimeRms; // RMS Mean Absolute Arrival Time 27 Byte_t fCalibFlags; // Bit-field for the class-own bits 28 Float_t fChargeLimit; // Limit (in units of PedRMS) for acceptance fitted mean charge 29 Float_t fChargeErrLimit; // Limit (in units of PedRMS) for acceptance fitted charge sigma 30 Float_t fChargeRelErrLimit; // Limit (in units of Error of fitted charge) for acceptance fitted mean 31 Float_t fChargeToPhotons; // Mean conv. PIN Diode charge to number of incident photons 32 Float_t fChargeToPhotonsVar; // Variance of mean conv. PIN Diode charge to nr. incident photons 33 Float_t fNumPhotons; // Number photons incidident on PIN Diode 34 Float_t fNumPhotonsVar; // Variance nr. photons incid. on PIN Diode 35 Float_t fFluxOutsidePlexiglass; // Mean number photons in INNER PIXEL outside plexiglass 36 Float_t fFluxOutsidePlexiglassVar; // Error on nr. photons in INNER PIXEL outside plexiglass 37 Float_t fPed; // Mean pedestal (from MPedestalPix) 38 Float_t fPedRms; // Pedestal RMS (from MPedestalPix) 39 Float_t fRmsChargeMean; // Mean of RMS of summed FADC slices distribution 40 Float_t fRmsChargeMeanErr; // Error on Mean RMS summed FADC slices distribution 41 Float_t fRmsChargeSigma; // Sigma of RMS of summed FADC slices distribution 42 Float_t fRmsChargeSigmaErr; // Error on Sigma RMS summed FADC slices distribution 43 PulserColor_t fColor; // Colour of the pulsed LEDs 45 44 46 45 enum { kOscillating,
Note:
See TracChangeset
for help on using the changeset viewer.