blob: 46868acd5385183e43baa157881a78b95bac62d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (C) 1999-2018
// 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
|