source: trunk/MagicSoft/Mars/manalysis/MCalibrationConfig.h@ 2648

Last change on this file since 2648 was 2627, checked in by gaug, 21 years ago
*** empty log message ***
File size: 1.9 KB
Line 
1#ifndef MARS_MCalibrationConfig
2#define MARS_MCalibrationConfig
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MCalibrationConfig //
7// //
8// Contains all configuration data of the Calibration //
9// //
10/////////////////////////////////////////////////////////////////////////////
11
12
13// The highest value of the High Gain in the linear regime
14const Byte_t gkSaturationLimit = 250;
15
16// The conversion factor between High Gain and Low Gain
17const Float_t gkConversionHiLo = 10.;
18
19// The penalty constant to produce overflow in the histogram
20const ULong_t gkLoGainOverFlow = 99999999;
21
22// ----- BLIND PIXEL ----------------------//
23
24// Pixel ID of the Calibration Blind Pixel
25const UShort_t gkCalibrationBlindPixelId = 559;
26
27// Average QE of Blind Pixel (three colours)
28const Float_t gkCalibrationBlindPixelQEGreen = 0.154;
29const Float_t gkCalibrationBlindPixelQEBlue = 0.226;
30const Float_t gkCalibrationBlindPixelQEUV = 0.247;
31const Float_t gkCalibrationBlindPixelQECT1 = 0.247;
32
33// Attenuation factor Blind Pixel (three colours)
34const Float_t gkCalibrationBlindPixelAttGreen = 1.97;
35const Float_t gkCalibrationBlindPixelAttBlue = 1.96;
36const Float_t gkCalibrationBlindPixelAttUV = 1.95;
37const Float_t gkCalibrationBlindPixelAttCT1 = 1.95;
38
39// Area of Blind Pixel w.r.t. Inner Pixel
40const Float_t gkCalibrationBlindPixelArea = 0.25;
41
42// Area of Outer Pixel w.r.t. Inner Pixel
43const Float_t gkCalibrationOuterPixelArea = 4.00;
44
45// ----- PIN DIODE ------------------------//
46
47// Pixel ID of the Calibration PIN Diode
48const UShort_t gkCalibrationPINDiodeId = 9999;
49
50#endif /* MARS_MCalibrationBlindPixelConfig */
Note: See TracBrowser for help on using the repository browser.