Changeset 1516 in Sophya for trunk/ArchTOIPipe/Kernel/flagtoidef.h
- Timestamp:
- Jun 12, 2001, 6:00:35 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/Kernel/flagtoidef.h
r1502 r1516 1 #ifndef FLAGTOIDEF_H 2 #define FLAGTOIDEF_H 1 3 2 4 enum FlagToiDef { 3 // Out of Range Value tof Range Value5 // Out of Range Value of Range Value 4 6 FlgToiOut = (unsigned long long)1 << 0, 5 7 // Spike-like sample (ex: glitch) 6 FlgToiSpike = (unsigned long long)1 << 2,8 FlgToiSpike = (unsigned long long)1 << 1, 7 9 // Discontinuity-like sample (ex: step) 8 FlgToiDisc = (unsigned long long)1 << 3,10 FlgToiDisc = (unsigned long long)1 << 2, 9 11 // Large-Sigma-like sample 10 FlgToiSigma = (unsigned long long)1 << 4,12 FlgToiSigma = (unsigned long long)1 << 3, 11 13 // Cleaned sample (ex: clean after spike,step...) 12 FlgToiClean = (unsigned long long)1 << 5,14 FlgToiClean = (unsigned long long)1 << 4, 13 15 // Sample Value has been interpolated/Replaced ... 14 FlgToiInterp = (unsigned long long)1 << 6, 16 FlgToiInterp = (unsigned long long)1 << 5, 17 }; 18 15 19 // et on peut continuer ainsi jusqu'a 1<<63 cad le bit 64 ieme 16 20 // Pour imprimer la valeur: cout<<(unsigned long long)FlgToi...<<endl; 17 }18 21 22 #endif
Note:
See TracChangeset
for help on using the changeset viewer.