Ignore:
Timestamp:
01/10/05 10:45:07 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mjobs/MJPedestal.h

    r5557 r5760  
    5959    Extract_t fExtractType;                              // Chosen extractor type
    6060
    61     Bool_t fExtractorResolution;                         // Flag if the extractor is used to calculate the pedestals
     61    enum Extraction { kFundamental, kWithExtractorRndm, kWithExtractor };
     62    Int_t fExtractionType;                         // Flag if the extractor is used to calculate the pedestals
    6263
    6364    MExtractor *ReadCalibration() const;
     
    102103    void SetDataCheckDisplay()                  { fDisplayType = kDataCheckDisplay; }
    103104    void SetNormalDisplay()                     { fDisplayType = kNormalDisplay;    }
    104     void SetExtractorResolution(const Bool_t b=kTRUE) { fExtractorResolution = b;  }
     105
     106    void SetExtractionFundamental()       { fExtractionType=kFundamental; }
     107    void SetExtractionWithExtractorRndm() { fExtractionType=kWithExtractorRndm; }
     108    void SetExtractionWithExtractor()     { fExtractionType=kWithExtractor; }
    105109
    106110    MExtractor *GetExtractor() const { return fExtractor; }
Note: See TracChangeset for help on using the changeset viewer.