Ignore:
Timestamp:
07/31/11 19:59:54 (13 years ago)
Author:
tbretz
Message:
Added some comments.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/DataCalib.h

    r11728 r11736  
    1111class DataCalib : public DataProcessorImp, CalibData
    1212{
    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
    1616
    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
    1820
    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
    2222
    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;
    2427
    25     DimDescribedService &fDim;
     28    DimDescribedService &fDim; // DimService through which statistics updates are transmitted
    2629
    2730    void WriteFits();
Note: See TracChangeset for help on using the changeset viewer.