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