Changeset 5938 for trunk/MagicSoft/Mars


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

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5937 r5938  
    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)
    5652
    5753
  • trunk/MagicSoft/Mars/mbase/MTaskEnv.h

    r5841 r5938  
    3232    void SetOwner(Bool_t b=kTRUE) { b ? SetBit(kIsOwner) : ResetBit(kIsOwner); }
    3333
    34     void SetDefault(MTask *task) { fTask = task; if (fTask) fTask->SetName(fName); else SetBit(kIsDummy); }
     34    void SetDefault(MTask *task=0) { fTask = task; if (fTask) fTask->SetName(fName); else SetBit(kIsDummy); }
    3535    void SetDefault(const char *def);
    3636
  • trunk/MagicSoft/Mars/mjobs/MJPedestal.h

    r5937 r5938  
    5151    Display_t fDisplayType;                              // Chosen Display type
    5252
    53     enum Storage_t { kNoStorage = BIT(0) };              // Possible flags for the storage of results
     53    enum Storage_t { kNoStorage };                       // Possible flags for the storage of results
    5454    Byte_t fStorage;                                     // Bit-field for chosen storage type
    5555
Note: See TracChangeset for help on using the changeset viewer.