Changeset 5937 for trunk/MagicSoft
- Timestamp:
- 01/21/05 19:05:54 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5936 r5937 50 50 * mastro/MObservatory.[h,cc]: 51 51 - 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) 52 56 53 57 -
trunk/MagicSoft/Mars/mjobs/MJPedestal.h
r5842 r5937 48 48 MBadPixelsCam fBadPixels; // Bad Pixels 49 49 50 enum Display_t { kDataCheckDisplay, kNormalDisplay};// Possible Display types50 enum Display_t { kDataCheckDisplay, kNormalDisplay}; // Possible Display types 51 51 Display_t fDisplayType; // Chosen Display type 52 52 53 enum Storage_t { kNoStorage };// Possible flags for the storage of results53 enum Storage_t { kNoStorage = BIT(0) }; // Possible flags for the storage of results 54 54 Byte_t fStorage; // Bit-field for chosen storage type 55 55 56 56 Bool_t fDataCheck; // Flag if the data check is run on raw data 57 57 58 enum Extract_t { kUseData, kUsePedRun, kUseHists };// Possible flags for the extraction of the pedestal58 enum Extract_t { kUseData, kUsePedRun, kUseHists }; // Possible flags for the extraction of the pedestal 59 59 Extract_t fExtractType; // Chosen extractor type 60 60 … … 102 102 void SetNormalDisplay() { fDisplayType = kNormalDisplay; } 103 103 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");*/ } 107 107 108 108 MExtractor *GetExtractor() const { return fExtractor; }
Note:
See TracChangeset
for help on using the changeset viewer.