diff options
author | Thomas White <taw@physics.org> | 2011-03-16 14:18:02 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:20 +0100 |
commit | 14d12aa55a6e342d7a7c83b90e88d68e11be0e7a (patch) | |
tree | 875e78ee3c809d6f9b64c2aba5d389f5bede1597 /src/stream.h | |
parent | 193c900d095203fb74671abc1e0b52f0b1d6d62a (diff) |
--record=peaksifnotindexed option
Diffstat (limited to 'src/stream.h')
-rw-r--r-- | src/stream.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/stream.h b/src/stream.h index c0343b2a..df02b1fb 100644 --- a/src/stream.h +++ b/src/stream.h @@ -22,11 +22,12 @@ struct image; /* Possible options dictating what goes into the output stream */ enum { - STREAM_NONE = 0, - STREAM_INTEGRATED = 1<<0, - STREAM_PIXELS = 1<<1, - STREAM_PEAKS = 1<<2, - STREAM_PEAKS_IF_INDEXED = 1<<3, + STREAM_NONE = 0, + STREAM_INTEGRATED = 1<<0, + STREAM_PIXELS = 1<<1, + STREAM_PEAKS = 1<<2, + STREAM_PEAKS_IF_INDEXED = 1<<3, + STREAM_PEAKS_IF_NOT_INDEXED = 1<<4, }; |