Line | |
---|
1 | #ifndef MARS_MHCalibrationConfig
|
---|
2 | #define MARS_MHCalibrationConfig
|
---|
3 |
|
---|
4 | /////////////////////////////////////////////////////////////////////////////
|
---|
5 | // //
|
---|
6 | // MHCalibrationConfig //
|
---|
7 | // //
|
---|
8 | // Contains all configuration data of the Calibration //
|
---|
9 | // //
|
---|
10 | /////////////////////////////////////////////////////////////////////////////
|
---|
11 |
|
---|
12 |
|
---|
13 | // Global rejection criteria for the acceptance of a fit: Prob=0.01 == 99% Probability
|
---|
14 | const Float_t gkProbLimit = 0.01;
|
---|
15 |
|
---|
16 | // Starting number of bins for the histo:
|
---|
17 | const Int_t gkStartBlindPixelBinNr = 10000;
|
---|
18 |
|
---|
19 | // Starting number of bins for the histo: (maximum by hardware: 4080)
|
---|
20 | const Int_t gkStartPINDiodeBinNr = 4000;
|
---|
21 |
|
---|
22 | // Starting number of bins for the histo: (maximum possible by hardware = 40800)
|
---|
23 | const Int_t gkStartPixelBinNr = 20000;
|
---|
24 |
|
---|
25 | // Starting number for the highest value of the Q-histo:
|
---|
26 | const Axis_t gkStartQlast = 10000.;
|
---|
27 |
|
---|
28 | // Square root of 2 pi:
|
---|
29 | const Float_t gkSq2Pi = 2.506628274631;
|
---|
30 |
|
---|
31 | // typedef to the fitting functions for the blind pixel
|
---|
32 | typedef Double_t (*BPFitFunc)(Double_t *, Double_t *);
|
---|
33 |
|
---|
34 | #endif /* MARS_MHCalibrationBlindPixelConfig */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.