Ignore:
Timestamp:
Jun 12, 2001, 6:00:35 PM (24 years ago)
Author:
cmv
Message:

Re-shape de toi2map cmv 12/6/01

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ArchTOIPipe/Kernel/flagtoidef.h

    r1502 r1516  
     1#ifndef FLAGTOIDEF_H
     2#define FLAGTOIDEF_H
    13
    24enum FlagToiDef {
    3 // Out of Range Valuet of Range Value
     5// Out of Range Value of Range Value
    46  FlgToiOut     =  (unsigned long long)1 << 0,
    57// Spike-like sample (ex: glitch)
    6   FlgToiSpike   =  (unsigned long long)1 << 2,
     8  FlgToiSpike   =  (unsigned long long)1 << 1,
    79// Discontinuity-like sample (ex: step)
    8   FlgToiDisc    =  (unsigned long long)1 << 3,
     10  FlgToiDisc    =  (unsigned long long)1 << 2,
    911// Large-Sigma-like sample
    10   FlgToiSigma   =  (unsigned long long)1 << 4,
     12  FlgToiSigma   =  (unsigned long long)1 << 3,
    1113// Cleaned sample (ex: clean after spike,step...)
    12   FlgToiClean   =  (unsigned long long)1 << 5,
     14  FlgToiClean   =  (unsigned long long)1 << 4,
    1315// Sample Value has been interpolated/Replaced ...
    14   FlgToiInterp  =  (unsigned long long)1 << 6,
     16  FlgToiInterp  =  (unsigned long long)1 << 5,
     17};
     18
    1519// et on peut continuer ainsi jusqu'a 1<<63 cad le bit 64 ieme
    1620// Pour imprimer la valeur: cout<<(unsigned long long)FlgToi...<<endl;
    17 }
    1821
     22#endif
Note: See TracChangeset for help on using the changeset viewer.