Changeset 5937 for trunk/MagicSoft


Ignore:
Timestamp:
01/21/05 19:05:54 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5936 r5937  
    5050   * mastro/MObservatory.[h,cc]:
    5151     - added ReadEnv member function
     52
     53   * mjobs/MJPedestal.h:
     54     - fixed a bug in the header. kNoStorage was 0 which cannot work in this
     55       context. Set to BIT(0)
    5256
    5357
  • trunk/MagicSoft/Mars/mjobs/MJPedestal.h

    r5842 r5937  
    4848    MBadPixelsCam fBadPixels;                            // Bad Pixels
    4949
    50     enum Display_t {kDataCheckDisplay, kNormalDisplay}; // Possible Display types
     50    enum Display_t { kDataCheckDisplay, kNormalDisplay}; // Possible Display types
    5151    Display_t fDisplayType;                              // Chosen Display type
    5252
    53     enum Storage_t { kNoStorage };                       // Possible flags for the storage of results
     53    enum Storage_t { kNoStorage = BIT(0) };              // Possible flags for the storage of results
    5454    Byte_t fStorage;                                     // Bit-field for chosen storage type
    5555
    5656    Bool_t fDataCheck;                                   // Flag if the data check is run on raw data
    5757
    58     enum Extract_t {kUseData, kUsePedRun, kUseHists };   // Possible flags for the extraction of the pedestal
     58    enum Extract_t { kUseData, kUsePedRun, kUseHists };  // Possible flags for the extraction of the pedestal
    5959    Extract_t fExtractType;                              // Chosen extractor type
    6060
     
    102102    void SetNormalDisplay()                     { fDisplayType = kNormalDisplay;    }
    103103
    104     void SetExtractionFundamental()       { fExtractionType=kFundamental; }
    105     void SetExtractionWithExtractorRndm() { fExtractionType=kWithExtractorRndm; }
    106     void SetExtractionWithExtractor()     { fExtractionType=kWithExtractor; }
     104    void SetExtractionFundamental()       { fExtractionType=kFundamental;       /*fPedestalCamOut.SetName("MPedestalFundamental");*/   }
     105    void SetExtractionWithExtractorRndm() { fExtractionType=kWithExtractorRndm; /*fPedestalCamOut.SetName("MPedestalExtractorRndm");*/ }
     106    void SetExtractionWithExtractor()     { fExtractionType=kWithExtractor;     /*fPedestalCamOut.SetName("MPedestalExtractor");*/     }
    107107
    108108    MExtractor *GetExtractor() const { return fExtractor; }
Note: See TracChangeset for help on using the changeset viewer.