ifw-core 6.0.0
Loading...
Searching...
No Matches
testFitsData.cpp
Go to the documentation of this file.
1
6#include <string>
7
8#include <ifw/fnd/defs/dataType.hpp>
9
10
11static std::string test_Fits_CreateFile_Normal ="\
12SIMPLE = T / file does conform to FITS standard \n\
13BITPIX = -32 / number of bits per data pixel \n\
14NAXIS = 2 / number of data axes \n\
15NAXIS1 = 128 / length of data axis 1 \n\
16NAXIS2 = 256 / length of data axis 2 \n\
17EXTEND = T / FITS dataset may contain extensions \n\
18COMMENT FITS (Flexible Image Transport System) format is defined in 'Astronomy\n\
19COMMENT and Astrophysics', volume 376, page 359; bibcode: 2001A&A...376..359H \n\
20END \n";
21
22static std::string test_Fits_AddKey_Normal ="\
23SIMPLE = T / file does conform to FITS standard \n\
24BITPIX = -32 / number of bits per data pixel \n\
25NAXIS = 2 / number of data axes \n\
26NAXIS1 = 512 / length of data axis 1 \n\
27NAXIS2 = 128 / length of data axis 2 \n\
28EXTEND = T / FITS dataset may contain extensions \n\
29COMMENT FITS (Flexible Image Transport System) format is defined in 'Astronomy\n\
30COMMENT and Astrophysics', volume 376, page 359; bibcode: 2001A&A...376..359H \n\
31HIERARCH ESO INS1 FILT2 ID = 'FilterId' / Filter ID (test.did.yaml) \n\
32HIERARCH ESO INS4 FILT5 NO = 22 / Filter Number (test.did.yaml) \n\
33EXPTIME = 11.1000000 / Integration time \n\
34HIERARCH ESO DET READ CURNAME = 'Double_Corr' / Used readout mode name \n\
35HIERARCH ESO MY1 DBL2 KEY3 = 654.321 / My double test key (test2.did.yaml) \n\
36HIERARCH ESO DET NAME = 'TestDetector' / Name of detector system \n\
37HIERARCH ESO DET DEV1 SHUT1 TYPE = 'ILLY ' / Shutter type \n\
38END \n";
39
40static std::string test_Fits_StoreImage_Normal ="\
41SIMPLE = T / file does conform to FITS standard \n\
42BITPIX = 16 / number of bits per data pixel \n\
43NAXIS = 3 / number of data axes \n\
44NAXIS1 = 128 / length of data axis 1 \n\
45NAXIS2 = 256 / length of data axis 2 \n\
46NAXIS3 = 10 / length of data axis 3 \n\
47EXTEND = T / FITS dataset may contain extensions \n\
48COMMENT FITS (Flexible Image Transport System) format is defined in 'Astronomy\n\
49COMMENT and Astrophysics', volume 376, page 359; bibcode: 2001A&A...376..359H \n\
50END \n";