Changeset 3392 in Sophya for trunk/SophyaLib/HiStats/ntuple.h
- Timestamp:
- Nov 22, 2007, 7:25:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/ntuple.h
r3205 r3392 21 21 // Forward class declaration for Fits handler 22 22 class FITS_NTuple; 23 // Forward class declaration for Thread-safe operations 24 class ThSafeOp; 23 25 24 26 //! Class for creation and management of double or float data sets in a table … … 31 33 NTuple(const NTuple& NT); 32 34 virtual ~NTuple(); 35 36 // Activate/deactivate thread-safe Fill operation 37 void SetThreadSafe(bool fg=true); 38 //! Return true if Fill operations are thread-safe 39 inline bool IsThreadSafe() const { return ((mThS)?true:false); } 33 40 34 41 NTuple& operator = (const NTuple& NT); … … 102 109 DVList* mInfo; // Infos (variables) attachees au NTuple 103 110 111 ThSafeOp* mThS; // != NULL -> Thread safe operations 104 112 }; 105 113
Note:
See TracChangeset
for help on using the changeset viewer.