Changeset 5938 for trunk/MagicSoft/Mars
- Timestamp:
- 01/21/05 19:10:10 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5937 r5938 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 this55 context. Set to BIT(0)56 52 57 53 -
trunk/MagicSoft/Mars/mbase/MTaskEnv.h
r5841 r5938 32 32 void SetOwner(Bool_t b=kTRUE) { b ? SetBit(kIsOwner) : ResetBit(kIsOwner); } 33 33 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); } 35 35 void SetDefault(const char *def); 36 36 -
trunk/MagicSoft/Mars/mjobs/MJPedestal.h
r5937 r5938 51 51 Display_t fDisplayType; // Chosen Display type 52 52 53 enum Storage_t { kNoStorage = BIT(0) };// Possible flags for the storage of results53 enum Storage_t { kNoStorage }; // Possible flags for the storage of results 54 54 Byte_t fStorage; // Bit-field for chosen storage type 55 55
Note:
See TracChangeset
for help on using the changeset viewer.