Changeset 3668 in Sophya for trunk/SophyaExt/FitsIOServer/fabtwriter.h
- Timestamp:
- Oct 24, 2009, 11:46:29 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fabtwriter.h
r3572 r3668 148 148 virtual ~FitsImg2DWriter(); 149 149 150 void Write(TMatrix<uint_1>& data); 150 151 void Write(TMatrix<uint_2>& data); 151 152 void Write(TMatrix<int_4>& data); … … 177 178 virtual ~FitsImg3DWriter(); 178 179 180 void CreateImg(LONGLONG naxis1,LONGLONG naxis2,LONGLONG naxis3); 181 182 void Write(TArray<uint_1>& data); 179 183 void Write(TArray<uint_2>& data); 180 184 void Write(TArray<int_4>& data); … … 182 186 void Write(TArray<double>& data); 183 187 188 void Write(LONGLONG j,LONGLONG k,TVector<uint_1>& data); 189 void Write(LONGLONG j,LONGLONG k,TVector<uint_2>& data); 190 void Write(LONGLONG j,LONGLONG k,TVector<int_4>& data); 191 void Write(LONGLONG j,LONGLONG k,TVector<float>& data); 192 void Write(LONGLONG j,LONGLONG k,TVector<double>& data); 193 184 194 //! Print to os 185 195 virtual void Print(ostream& os) const;
Note:
See TracChangeset
for help on using the changeset viewer.