summaryrefslogtreecommitdiffstats
path: root/tksao/fitsy++/rice.h
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/fitsy++/rice.h')
-rw-r--r--tksao/fitsy++/rice.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/tksao/fitsy++/rice.h b/tksao/fitsy++/rice.h
new file mode 100644
index 0000000..14a17b8
--- /dev/null
+++ b/tksao/fitsy++/rice.h
@@ -0,0 +1,24 @@
+// Copyright (C) 1999-2016
+// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
+// For conditions of distribution and use, see copyright notice in "copyright"
+
+#ifndef __fitsrice_h__
+#define __fitsrice_h__
+
+#include "compress.h"
+
+template<class T>
+class FitsRicem : public FitsCompressm<T> {
+ protected:
+ int block_;
+ int bytepix_;
+ int noisebit_;
+
+ private:
+ int compressed(T*, char*, char*, int, int, int, int, int, int);
+
+ public:
+ FitsRicem(FitsFile*);
+};
+
+#endif