source: Sophya/trunk/ArchTOIPipe/Kernel/flagtoidef.h@ 1766

Last change on this file since 1766 was 1764, checked in by aubourg, 24 years ago

magiqueries

File size: 1.1 KB
RevLine 
[1738]1
2// ArchTOIPipe (C) CEA/DAPNIA/SPP IN2P3/LAL
3// Eric Aubourg
4// Christophe Magneville
5// Reza Ansari
[1764]6// $Id: flagtoidef.h,v 1.5 2001-11-14 14:10:13 aubourg Exp $
[1738]7
[1516]8#ifndef FLAGTOIDEF_H
9#define FLAGTOIDEF_H
[1502]10
11enum FlagToiDef {
[1516]12// Out of Range Value of Range Value
[1502]13 FlgToiOut = (unsigned long long)1 << 0,
14// Spike-like sample (ex: glitch)
[1516]15 FlgToiSpike = (unsigned long long)1 << 1,
[1502]16// Discontinuity-like sample (ex: step)
[1516]17 FlgToiDisc = (unsigned long long)1 << 2,
[1502]18// Large-Sigma-like sample
[1516]19 FlgToiSigma = (unsigned long long)1 << 3,
[1502]20// Cleaned sample (ex: clean after spike,step...)
[1516]21 FlgToiClean = (unsigned long long)1 << 4,
[1502]22// Sample Value has been interpolated/Replaced ...
[1516]23 FlgToiInterp = (unsigned long long)1 << 5,
[1735]24// Sample killed because near a "flaggued" one ...
25 FlgToiAround = (unsigned long long)1 << 6,
26// All bit to one ...
[1764]27 FlgToiAll = (int)(unsigned long long)~0
[1516]28};
29
[1502]30// et on peut continuer ainsi jusqu'a 1<<63 cad le bit 64 ieme
31// Pour imprimer la valeur: cout<<(unsigned long long)FlgToi...<<endl;
32
[1516]33#endif
Note: See TracBrowser for help on using the repository browser.