Changeset 6699 for trunk/MagicSoft/Mars/mjobs/MJCalibration.h
- Timestamp:
- 03/02/05 11:44:43 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJCalibration.h
r6281 r6699 131 131 Byte_t fDevices; // Bit-field for used devices for calibration 132 132 133 enum Storage_t // Possible devices for calibration134 {135 kNoStorage,136 kHistsStorage137 }; // Possible flags for the storage of results138 139 Byte_t fStorage; // Bit-field for chosen storage type140 141 133 enum { kRelTimes, kDebug, kIntensity }; // Possible flags 142 134 … … 151 143 Bool_t IsDebug () const { return TESTBIT(fFlags,kDebug); } 152 144 Bool_t IsIntensity () const { return TESTBIT(fFlags,kIntensity); } 153 154 Bool_t IsNoStorage () const { return TESTBIT(fStorage,kNoStorage); }155 Bool_t IsHistsStorage () const { return TESTBIT(fStorage,kHistsStorage); }156 145 157 146 void DrawTab(MParList &plist, const char *cont, const char *name, Option_t *opt); … … 218 207 219 208 // Storage 220 void SetNoStorage ( const Bool_t b=kTRUE ) { b ? SETBIT(fStorage,kNoStorage) : CLRBIT(fStorage,kNoStorage); }221 void SetHistsStorage ( const Bool_t b=kTRUE ) { b ? SETBIT(fStorage,kHistsStorage) : CLRBIT(fStorage,kHistsStorage); }222 223 209 void SetReferenceFile( const TString ref=fgReferenceFile ) { fReferenceFile = ref; } 224 210
Note:
See TracChangeset
for help on using the changeset viewer.