Changeset 11736 for trunk/FACT++/src/DataCalib.h
- Timestamp:
- 07/31/11 19:59:54 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/DataCalib.h
r11728 r11736 11 11 class DataCalib : public DataProcessorImp, CalibData 12 12 { 13 static std::vector<int32_t> fOffset; 14 static std::vector<int32_t> fGain; 15 static std::vector<int32_t> fTrgOff; 13 static std::vector<int32_t> fOffset; /// Storage for physical baseline 14 static std::vector<int32_t> fGain; /// Storage for baseline corrected gain 15 static std::vector<int32_t> fTrgOff; /// Storage for logical baseline 16 16 17 static std::vector<float> fStats; 17 static uint64_t fNumOffset; /// Scale for physcial baseline 18 static uint64_t fNumGain; /// Scale for gain values 19 static uint64_t fNumTrgOff; /// Scale for logical baseline 18 20 19 static uint64_t fNumOffset; 20 static uint64_t fNumGain; 21 static uint64_t fNumTrgOff; 21 static std::vector<float> fStats; /// Storage for mean and rms values 22 22 23 static int fStep; 23 /// State of the DRS calibration: Positiove numbers mean that 24 /// we are in a run, negative mean that it is closed 25 static int fStep; 26 static bool fProcessing; 24 27 25 DimDescribedService &fDim; 28 DimDescribedService &fDim; // DimService through which statistics updates are transmitted 26 29 27 30 void WriteFits();
Note:
See TracChangeset
for help on using the changeset viewer.