1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504
|
/* $Id: vmextractiontable.c,v 1.2 2013-03-25 11:43:04 cgarcia Exp $
*
* This file is part of the VIMOS Pipeline
* Copyright (C) 2002-2004 European Southern Observatory
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* $Author: cgarcia $
* $Date: 2013-03-25 11:43:04 $
* $Revision: 1.2 $
* $Name: not supported by cvs2svn $
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <string.h>
#include <math.h>
#include <pilmemory.h>
#include <pilmessages.h>
#include <cpl_msg.h>
#include <piltranslator.h>
#include <pilerrno.h>
#include "vmtable.h"
#include "vmadfifutable.h"
#include "vmdistmodels.h"
#include "vmextractiontable.h"
#include "cpl.h"
/*
Construct a new Extraction Slit.
*/
VimosExtractionSlit *newExtractionSlit()
{
VimosExtractionSlit *newSlit;
/* allocate memory */
newSlit = (VimosExtractionSlit *) cpl_malloc(sizeof(VimosExtractionSlit));
/* check if space was allocated */
if (newSlit == NULL) {
cpl_msg_error("newExtractionSlit","Allocation Error");
return(NULL);
}
/* set all field to 0 */
newSlit->slitNo = 0;
newSlit->numRows = 0;
newSlit->IFUslitNo = 0;
newSlit->IFUfibNo = 0;
newSlit->IFUfibPeakX = 0.;
newSlit->IFUfibTrans = 0.;
newSlit->width = 0.;
newSlit->y = NULL;
newSlit->ccdX = NULL;
newSlit->ccdY = NULL;
newSlit->maskX = NULL;
newSlit->maskY = NULL;
newSlit->numSpec = NULL;
newSlit->crvPol = NULL;
newSlit->crvPolRms = NULL;
newSlit->invDis = NULL;
newSlit->invDisRms = NULL;
newSlit->invDisQuality = NULL;
newSlit->zeroX = NULL;
newSlit->zeroY = NULL;
newSlit->prev = NULL;
newSlit->next = NULL;
/* return address of new Extraction Slit */
return(newSlit);
}
/*
Delete an Extraction Slit.
*/
void deleteExtractionSlit(VimosExtractionSlit *slit)
{
VimosExtractionSlit *tmpSlit;
VimosExtractionSlit *nxtSlit;
int i;
/* check input */
if (slit == NULL) {
return;
}
/* loop through all slits in the slit */
tmpSlit = slit;
while (tmpSlit) {
/* get oiter to next slit */
nxtSlit = tmpSlit->next;
/* free members */
deleteIntArray(tmpSlit->y);
deleteFloatArray(tmpSlit->ccdX);
deleteFloatArray(tmpSlit->ccdY);
deleteFloatArray(tmpSlit->maskX);
deleteFloatArray(tmpSlit->maskY);
deleteIntArray(tmpSlit->numSpec);
deleteFloatArray(tmpSlit->zeroX);
deleteFloatArray(tmpSlit->zeroY);
deleteFloatArray(tmpSlit->crvPolRms);
deleteFloatArray(tmpSlit->invDisRms);
if (tmpSlit->crvPol && tmpSlit->invDis) {
for (i = 0; i < tmpSlit->numRows; i++) {
deleteDistModel1D(tmpSlit->crvPol[i]);
deleteDistModel1D(tmpSlit->invDis[i]);
}
cpl_free(tmpSlit->crvPol);
cpl_free(tmpSlit->invDis);
}
cpl_free(tmpSlit);
/* address of next slit */
tmpSlit = nxtSlit;
}
}
/*
Construct a new Extraction Table.
*/
VimosExtractionTable *newExtractionTable()
{
const char modName[] = "newExtractionTable";
VimosExtractionTable *newTab;
/* allocate memory */
newTab = (VimosExtractionTable *) cpl_malloc(sizeof(VimosExtractionTable));
/* check if space was allocated */
if (newTab == NULL) {
cpl_msg_error(modName, "Allocation Error");
return(NULL);
}
/* copy "EXT" into name of table */
strcpy(newTab->name, VM_EXT);
newTab->descs = newStringDescriptor("ESO PRO TABLE", VM_EXT, "");
if (newTab->descs == NULL) {
/* cleanup */
cpl_free(newTab);
cpl_msg_error(modName, "Function newStringDescriptor failure");
return(NULL);
}
newTab->slits = NULL;
newTab->fptr = NULL;
/* return address of new Extraction Table */
return(newTab);
}
/*
Delete a Extraction Table. This is just an esthetic wrapper for
deleteTable(extTable)
*/
void deleteExtractionTable(VimosExtractionTable *extTable)
{
VimosDescriptor *tmpDesc;
VimosDescriptor *nxtDesc;
if (extTable == NULL) {
return;
}
deleteExtractionSlit(extTable->slits);
tmpDesc = extTable->descs;
while (tmpDesc) {
nxtDesc = tmpDesc->next;
deleteDescriptor(tmpDesc);
tmpDesc = nxtDesc;
}
}
VimosBool copyGrsTab2ExtTab(VimosTable *grsTable,
VimosExtractionTable *extTable)
{
const char modName[] = "copyGrsTab2ExtTab";
/*
* Some descriptors should not be copied!! e.g. TABLE
*/
if (!copyAllDescriptors(grsTable->descs, &(extTable->descs))) {
cpl_msg_error(modName, "Function copyAllDescriptors failure");
return(VM_FALSE);
}
if ((writeStringDescriptor(&(extTable->descs), pilTrnGetKeyword("Table"),
VM_EXT, "")) == VM_FALSE) {
cpl_msg_error(modName, "Cannot write descriptor %s",
pilTrnGetKeyword("Table"));
return VM_FALSE;
}
if (!writeStringDescriptor(&(extTable->descs), "EXTNAME", "EXR", "")) {
cpl_msg_error(modName, "Function writeStringDescriptor failure");
return(VM_FALSE);
}
return VM_TRUE;
}
VimosBool copyAdf2ExtTab(VimosTable *adf, VimosExtractionTable *extTable)
{
const char modName[] = "copyAdf2ExtTab";
VimosDescriptor *firstDesc;
VimosDescriptor *copyDesc;
double descValue;
firstDesc = findDescriptor(adf->descs, pilTrnGetKeyword("Quadrant"));
copyDesc = copyOfDescriptor(firstDesc);
if (!addDesc2Desc(copyDesc, &(extTable->descs))) {
cpl_msg_debug(modName, "The function addDesc2Table has returned an error");
return VM_FALSE;
}
firstDesc = findDescriptor(adf->descs, "ESO PRO IDS*");
while (firstDesc) {
if (strstr(firstDesc->descName, "DAYTIM") ||
strstr(firstDesc->descName, "ORD") ||
strstr(firstDesc->descName, "RMS") ||
strstr(firstDesc->descName, "TEMP")) {
copyDesc = copyOfDescriptor(firstDesc);
if (!addDesc2Desc(copyDesc, &(extTable->descs))) {
cpl_msg_debug(modName, "The function addDesc2Table has returned an error");
return(VM_FALSE);
}
}
else {
descValue = atof(firstDesc->descValue->s);
copyDesc = newDoubleDescriptor(firstDesc->descName, descValue,
firstDesc->descComment);
if (!addDesc2Desc(copyDesc, &(extTable->descs))) {
cpl_msg_debug(modName, "The function addDesc2Table has returned an error");
return(VM_FALSE);
}
}
firstDesc = firstDesc->next;
firstDesc = findDescriptor(firstDesc, "ESO PRO IDS*");
}
firstDesc = findDescriptor(adf->descs, "ESO PRO OPT*");
while (firstDesc) {
if (strstr(firstDesc->descName, "DAYTIM") ||
strstr(firstDesc->descName, "ORD") ||
strstr(firstDesc->descName, "RMS") ||
strstr(firstDesc->descName, "TEMP")) {
copyDesc = copyOfDescriptor(firstDesc);
if (!addDesc2Desc(copyDesc, &(extTable->descs))) {
cpl_msg_debug(modName, "The function addDesc2Table has returned an error");
return(VM_FALSE);
}
}
else {
descValue = atof(firstDesc->descValue->s);
copyDesc = newDoubleDescriptor(firstDesc->descName, descValue,
firstDesc->descComment);
if (!addDesc2Desc(copyDesc, &(extTable->descs))) {
cpl_msg_debug(modName, "The function addDesc2Table has returned an error");
return(VM_FALSE);
}
}
firstDesc = firstDesc->next;
firstDesc = findDescriptor(firstDesc, "ESO PRO OPT*");
}
firstDesc = findDescriptor(adf->descs, "ESO PRO CRV*");
while (firstDesc) {
if (strstr(firstDesc->descName, "ORD") ||
strstr(firstDesc->descName, "RMS")) {
copyDesc = copyOfDescriptor(firstDesc);
if (!addDesc2Desc(copyDesc, &(extTable->descs))) {
cpl_msg_debug(modName,
"The function addDesc2Table has returned an error");
return(VM_FALSE);
}
}
else {
descValue = atof(firstDesc->descValue->s);
copyDesc = newDoubleDescriptor(firstDesc->descName, descValue,
firstDesc->descComment);
if (!addDesc2Desc(copyDesc, &(extTable->descs))) {
cpl_msg_debug(modName, "The function addDesc2Table has returned an error");
return(VM_FALSE);
}
}
firstDesc = firstDesc->next;
firstDesc = findDescriptor(firstDesc, "ESO PRO CRV*");
}
firstDesc = findDescriptor(adf->descs, "ESO PRO ZERO*");
while (firstDesc) {
if (strstr(firstDesc->descName, "ORD") ||
strstr(firstDesc->descName, "RMS") ||
strstr(firstDesc->descName, "WIDTH")) {
copyDesc = copyOfDescriptor(firstDesc);
if (!addDesc2Desc(copyDesc, &(extTable->descs))) {
cpl_msg_debug(modName, "The function addDesc2Table has returned an error");
return(VM_FALSE);
}
}
else {
descValue = atof(firstDesc->descValue->s);
copyDesc = newDoubleDescriptor(firstDesc->descName, descValue,
firstDesc->descComment);
if (!addDesc2Desc(copyDesc, &(extTable->descs))) {
cpl_msg_debug(modName, "The function addDesc2Table has returned an error");
return(VM_FALSE);
}
}
firstDesc = firstDesc->next;
firstDesc = findDescriptor(firstDesc, "ESO PRO ZERO*");
}
return(VM_TRUE);
}
/*
* Using the positions of the slits as defined in the ADF, and using the
* distortion models that are available in the Extraction Table (e.g. the
* parameters of these models been copied from a Grism Table using
* copyGrsTab2ExtTab), the columns of the Extraction Table are computed.
* Such a computed Extraction Table is used in the on-linepipeline to reduce
* the data, while in the off-line pipeline it can be used as a first
* approximation for the locations of the spectra on the CCD.
* A few descriptors are copied from the ADF to the Extraction Table.
*/
/*
23 Oct 01: Added IFUfibPeakX parameter in the call to
calcSlitLocationsOnCCD (AZ)
*/
VimosBool computeExtractionTable(VimosTable *adf, VimosIfuTable *ifuTab,
VimosExtractionTable *extTable)
{
const char modName[] = "computeExtractionTable";
int i;
int count = 0;
int quadNum;
int yCoord;
int zeroCor;
char comment[72];
char *descName;
char *obsType = "UNDEFINED";
float lambda0;
double dValue;
VimosBool rdOK;
VimosIfuMode ifuMode;
VimosDescriptor *tDesc;
VimosAdfSlitHolder *slitHolder=NULL;
VimosAdfSlitHolder *tSlitHolder;
VimosExtractionSlit *exSlit;
VimosExtractionSlit *tSlit;
VimosDistModel2D *optModX;
VimosDistModel2D *optModY;
VimosDistModel2D *contModX;
VimosDistModel2D *contModY;
VimosDistModelFull *crvMod;
VimosDistModelFull *invDispMat;
/*
* Check table name, should be MOS- or IFU ADF
*/
if ( (strcmp(adf->name, VM_ADF_MOS) ) &&
(strcmp(adf->name, VM_ADF_IFU) ) ) {
cpl_msg_error(modName, "Invalid input table");
return(VM_FALSE);
}
/*
* Check table name, should be Extraction Table
*/
if ( strcmp(extTable->name, VM_EXT) ) {
cpl_msg_error(modName, "Invalid input extraction table");
return(VM_FALSE);
}
cpl_msg_debug(modName, "Computing extraction Table");
ifuMode = VM_IFU_MODE_UNDEF;
/*
* Check if distortion model is present in Extraction Table
*/
readIntDescriptor(extTable->descs, pilTrnGetKeyword("Quadrant"),
&quadNum, comment);
/*
* Set type of data
*/
if ( !strcmp(adf->name, VM_ADF_MOS) ) obsType = "MOS";
if ( !strcmp(adf->name, VM_ADF_IFU) ) obsType = "IFU";
if (writeStringDescriptor(&(extTable->descs), pilTrnGetKeyword("ObsType"),
obsType, "") == VM_FALSE) {
cpl_msg_error(modName, "Cannot write keyword %s to Extraction Table",
pilTrnGetKeyword("ObsType"));
}
if (obsType == "MOS") {
/*
* Copy Mask indentification from ADF
*/
descName = (char *) pilKeyTranslate("MaskId", quadNum);
rdOK = copyFromHeaderToHeader(adf->descs, descName,
&(extTable->descs), NULL);
if (rdOK == VM_TRUE) {
descName = (char *) pilKeyTranslate("AdfId", quadNum);
rdOK = copyFromHeaderToHeader(adf->descs,descName,
&(extTable->descs), NULL);
}
if (rdOK == VM_FALSE) {
cpl_msg_error(modName, "Failure in copying %s from ADF to "
"Extraction Table", descName);
return(VM_FALSE);
}
}
if (obsType == "IFU") {
if (!writeStringDescriptor(&(extTable->descs), pilTrnGetKeyword("MaskId", quadNum),
"IFU Mask", "")) {
cpl_msg_error(modName, "Failure in writing keyword %s to Extraction Table",
pilTrnGetKeyword("MaskId", quadNum));
return(VM_FALSE);
}
if (!writeStringDescriptor(&(extTable->descs), pilTrnGetKeyword("AdfId", quadNum),
"IFU Mask", "")) {
cpl_msg_error(modName, "Failure in writing keyword %s to Extraction Table",
pilTrnGetKeyword("AdfId", quadNum));
return(VM_FALSE);
}
rdOK = copyFromHeaderToHeader(adf->descs,
pilTrnGetKeyword("IfuMode"),
&(extTable->descs), NULL);
if (rdOK == VM_FALSE) {
cpl_msg_error(modName,
"Failure in copying %s from ADF to Extraction Table",
pilTrnGetKeyword("IfuMode"));
return VM_FALSE;
}
/* ALEX!!! define descName, otherwise still set to ADF ID !!!*/
descName = (char *) pilKeyTranslate("IfuMode");
tDesc = findDescriptor(adf->descs, descName);
if ( !strncmp(tDesc->descValue->s, "ON", 2) ) {
ifuMode = VM_IFU_MODE_SMALL;
}
else if ( !strncmp(tDesc->descValue->s, "OFF", 3) ) {
ifuMode = VM_IFU_MODE_LARGE;
}
}
rdOK = readDoubleDescriptor(extTable->descs, pilTrnGetKeyword("WlenCen"),
&dValue, comment);
if (rdOK == VM_FALSE) {
cpl_msg_error(modName, "Keyword %s not found", pilTrnGetKeyword("WlenCen"));
return VM_FALSE;
}
lambda0 = (float) dValue;
if ( !strcmp(adf->name, VM_ADF_MOS) ) {
slitHolder = extractSlitsFromADF(adf);
if (!slitHolder) {
cpl_msg_error(modName, "Function extractSlitsFromADF failure");
return VM_FALSE;
}
}
else if ( !strcmp(adf->name, VM_ADF_IFU) ) {
slitHolder = extractSlitsFromIFU(adf, ifuTab, ifuMode);
if (!slitHolder) {
cpl_msg_error(modName, "Function extractSlitsFromIFU failure");
return VM_FALSE;
}
}
else {
cpl_msg_error(modName, "Unrecognized instrument mode");
}
if (!readOptDistModel(extTable->descs, &optModX, &optModY)) {
cpl_msg_error(modName, "Function readOptDistModel failure");
return VM_FALSE;
}
if (!readCurvatureModel(extTable->descs, &crvMod)) {
cpl_msg_error(modName,"Function readCurvatureModel failure");
return VM_FALSE;
}
if (!readInvDispMatrix(extTable->descs, &invDispMat)) {
cpl_msg_error(modName, "Function readInvDispMatrix failure");
return VM_FALSE;
}
if (readIntDescriptor(extTable->descs, pilTrnGetKeyword("ZeroOrderFlag"),
&zeroCor, comment) == VM_FALSE) {
cpl_msg_error(modName, "Keyword %s not found",
pilTrnGetKeyword("ZeroOrderFlag"));
return VM_FALSE;
}
if (zeroCor) {
if (!readContaminationModel(extTable->descs, &contModX, &contModY)) {
cpl_msg_error(modName,
"Function readContaminationModel returned an error");
return VM_FALSE;
}
}
else {
contModX = NULL;
contModY = NULL;
}
tSlit = NULL;
if (slitHolder == NULL) return VM_FALSE;
else tSlitHolder = slitHolder;
yCoord = 0;
while (tSlitHolder) {
count++;
exSlit = newExtractionSlit();
if (exSlit == NULL) {
cpl_msg_error(modName, "Function newExtractionSlit failure");
return VM_FALSE;
}
if (!calcSlitLocationsOnCCD(tSlitHolder->slit, tSlitHolder->slitType,
optModX, optModY, crvMod, invDispMat,
contModX, contModY,
&(exSlit->ccdX), &(exSlit->ccdY), &(exSlit->maskX),
&(exSlit->maskY), &(exSlit->crvPol),
&(exSlit->crvPolRms), &(exSlit->invDis),
&(exSlit->invDisRms), lambda0, &(exSlit->numRows),
&(exSlit->IFUslitNo), &(exSlit->IFUfibNo),
&(exSlit->IFUfibPeakX), &(exSlit->IFUfibTrans),
&(exSlit->zeroX), &(exSlit->zeroY),
&(exSlit->invDisQuality))) {
cpl_msg_error(modName, "Function calcSlitLocationsOnCCD failure");
return VM_FALSE;
}
if (exSlit->numRows > 0) {
if (tSlit == NULL) {
extTable->slits = exSlit;
}
else {
tSlit->next = exSlit;
exSlit->prev = tSlit;
}
tSlit = exSlit;
tSlit->slitNo = tSlitHolder->slitNo;
exSlit->y = newIntArray(exSlit->numRows);
if (exSlit->y == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "Function newIntArray failure");
return(VM_FALSE);
}
exSlit->numSpec = newIntArray(exSlit->numRows);
if (exSlit->numSpec == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "Function newIntArray failure");
return(VM_FALSE);
}
for (i=0; i < tSlit->numRows; i++) {
tSlit->y->data[i] = yCoord;
exSlit->numSpec->data[i] = 1;
yCoord++;
}
if (readFloatDescriptor(adf->descs, pilTrnGetKeyword("SlitDimY", count),
&(exSlit->width), comment) == VM_FALSE) {
cpl_msg_debug(modName, "Missing slit width - set to 0.5 mm");
exSlit->width = .5;
}
}
else {
deleteExtractionSlit(exSlit);
}
tSlitHolder = tSlitHolder->next;
}
return(VM_TRUE);
}
/*
Return number of spectra rows in a Extraction Slit. Since an Extraction
Slit is a linked list of Extraction Slits, more than one slit can be
contained in the list. The sum of all rows in all slits is returned.
*/
int numRowsInExtSlits(VimosExtractionSlit *slit)
{
const char modName[] = "numRowsInExtSlits";
int numRows;
if (slit == NULL)
{
pilErrno = 1;
cpl_msg_error(modName, "NULL imput slit");
return 0;
}
/* initialize */
numRows = 0;
/* traverse list and count */
while (slit) {
numRows += slit->numRows;
slit = slit->next;
}
return(numRows);
}
int numSlitsInExtTable(VimosExtractionTable *exTab)
{
const char modName[] = "numSlitsInExtTable";
int numSlits;
VimosExtractionSlit *slit;
if (exTab == NULL)
{
pilErrno = 1;
cpl_msg_error(modName, "NULL input extraction Table");
return 0;
}
/* initialize */
numSlits = 0;
slit = exTab->slits;
/* traverse list and count */
while (slit) {
numSlits++;
slit = slit->next;
}
return(numSlits);
}
/*
* Slit closest to mask center is found on given Extraction Table.
* Shutter positions are ignored - slit might be not illuminated.
* Mask center is assumed to have coordinates (0,0).
*/
VimosExtractionSlit *slitClosestToCenter(VimosExtractionTable *extractionTable)
{
const char modName[] = "slitClosestToCenter";
double distance, newdist;
int crow;
VimosExtractionSlit *slit;
VimosExtractionSlit *closestSlit;
if (extractionTable == NULL) {
pilErrno = 1;
cpl_msg_error(modName, "NULL input extraction Table");
return 0;
}
closestSlit = slit = extractionTable->slits;
crow = slit->numRows / 2;
distance = slit->maskX->data[crow] * slit->maskX->data[crow]
+ slit->maskY->data[crow] * slit->maskY->data[crow];
slit = slit->next;
while (slit) {
crow = slit->numRows / 2;
newdist = slit->maskX->data[crow] * slit->maskX->data[crow]
+ slit->maskY->data[crow] * slit->maskY->data[crow];
if (newdist < distance) {
distance = newdist;
closestSlit = slit;
}
slit = slit->next;
}
return(closestSlit);
}
VimosBool slitLongOrShort(VimosExtractionSlit *slit, float tolerance)
{
int i;
float yStart;
float maxDrift;
float drift;
/* pathetic case */
if (slit->numRows < 2) {
return(VM_FALSE);
}
yStart = slit->ccdY->data[0];
maxDrift = 0.0;
for (i = 1; i < slit->numRows; i++) {
drift = fabs(slit->ccdY->data[i] - yStart);
if (drift > maxDrift) {
maxDrift = drift;
}
}
if (maxDrift > tolerance) {
return(VM_TRUE);
}
else {
return(VM_FALSE);
}
}
VimosBool readFitsExtractionTable(VimosExtractionTable *extTable, fitsfile
*fptr)
{
const char modName[] = "readFitsExtractionTable";
int i, j, k;
int nCols;
int nRows;
int null;
int *crvPolCol;
int *invDisCol;
int slitCol, yCol, ccdXCol, ccdYCol, maskXCol, maskYCol, specNoCol;
int zeroXCol, zeroYCol, disQualCol,crvPolRmsCol,invDisRmsCol;
int slitLen;
int newSlitNo;
int slitNo;
int IFUslitNoCol;
int IFUfibNoCol;
/*ALEX: added IFUfibPeakX and IFUfibTrans columns */
int IFUfibPeakXCol;
int IFUfibTransCol;
float lambda0;
double dValue;
int crvOrder, invOrder;
char colName[80];
char comment[80];
int nfound, ii;
char **ttype;
int status = 0;
VimosExtractionSlit *exSlit;
VimosExtractionSlit *lastSlit;
/* validate input */
if (extTable == NULL) {
cpl_msg_error(modName, "NULL input table");
return(VM_FALSE);
}
/* validate input */
if (strcmp(extTable->name, VM_EXT)) {
cpl_msg_error(modName, "Invalid input table");
return(VM_FALSE);
}
/* open Table */
if (fits_movnam_hdu(fptr, BINARY_TBL, "EXR", 0, &status)) {
cpl_msg_error(modName, "fits_movnam_hdu returned error code %d", status);
return(VM_FALSE);
}
extTable->fptr = fptr;
/* read Table */
if (!readDescsFromFitsTable(&(extTable->descs), extTable->fptr)) {
cpl_msg_error(modName, "readDescsFromFitsTable returned an error");
return(VM_FALSE);
}
if (!readIntDescriptor(extTable->descs, "ESO PRO CRV POL ORD", &crvOrder,
comment)) {
cpl_msg_error(modName, "Cannot read descriptor %s", "ESO PRO CRV POL ORD");
return(VM_FALSE);
}
if (!readIntDescriptor(extTable->descs, "ESO PRO IDS REL ORD", &invOrder,
comment)) {
cpl_msg_error(modName, "Cannot read descriptor %s", "ESO PRO IDS REL ORD");
return(VM_FALSE);
}
if (!readDoubleDescriptor(extTable->descs, "ESO PRO WLEN CEN", &dValue,
comment)) {
cpl_msg_error(modName, "Cannot read descriptor %s", "ESO PRO WLEN CEN");
return(VM_FALSE);
}
lambda0 = (float) dValue;
readIntDescriptor(extTable->descs, "TFIELDS", &nCols, comment);
readIntDescriptor(extTable->descs, "NAXIS2", &nRows, comment);
if (!readIntDescriptor(extTable->descs, "TFIELDS", &nCols, comment)) {
cpl_msg_error(modName, "Cannot read descriptor %s", "TFIELDS");
return(VM_FALSE);
}
if (!readIntDescriptor(extTable->descs, "NAXIS2", &nRows, comment)) {
cpl_msg_error(modName,"Cannot read descriptor %s", "NAXIS2");
return(VM_FALSE);
}
/* allocate space for the column labels */
ttype = (char **) cpl_malloc(nCols*sizeof(char *));
for (ii = 0; ii < nCols; ii++) {
ttype[ii] = (char *) cpl_malloc(FLEN_VALUE*sizeof(char));
/* check if space was allocated */
if (ttype[ii] == NULL) {
cpl_msg_error(modName, "Allocation Error");
return(VM_FALSE);
}
}
/* read the column names from the TTYPEn keywords */
if (fits_read_keys_str(extTable->fptr, "TTYPE", 1, nCols, ttype, &nfound,
&status)) {
cpl_msg_error(modName, "fits_read_keys_str returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"SLIT",&slitCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"Y",&yCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"CCD_X",&ccdXCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"CCD_Y",&ccdYCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"MASK_X",&maskXCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"MASK_Y",&maskYCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"SPEC_NO",&specNoCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"ZERO_X",&zeroXCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"ZERO_Y",&zeroYCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"CRVPOL_RMS",&crvPolRmsCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"INVDIS_RMS",&invDisRmsCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
/* NOTE FOR IFU: these added to ease IFU reduction. */
if (fits_get_colnum(extTable->fptr,CASEINSEN,"IFUSLIT_NO",&IFUslitNoCol,
&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"IFUFIB_NO",&IFUfibNoCol,
&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
/*ALEX: read IFUfibPeakX and IFUfibTrans columns */
if (fits_get_colnum(extTable->fptr,CASEINSEN,"IFUFIBPEAKX",&IFUfibPeakXCol,
&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"IFUFIBTRANS",&IFUfibTransCol,
&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
crvPolCol = (int *) cpl_malloc((crvOrder+1)*sizeof(int));
/* check if space was allocated */
if (crvPolCol == NULL) {
cpl_msg_error(modName, "Allocation Error");
return(VM_FALSE);
}
for (i = 0; i <= crvOrder; i++) {
sprintf(colName,"CRV_POL_%d",i);
if (fits_get_colnum(extTable->fptr,CASEINSEN,colName,&(crvPolCol[i]),
&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
}
invDisCol = (int *) cpl_malloc((invOrder+1)*sizeof(int));
/* check if space was allocated */
if (invDisCol == NULL) {
cpl_msg_error(modName, "Allocation Error");
return(VM_FALSE);
}
for (i = 0; i <= invOrder; i++) {
sprintf(colName,"INV_DIS_%d",i);
if (fits_get_colnum(extTable->fptr,CASEINSEN,colName,&(invDisCol[i]),
&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
}
if (fits_get_colnum(extTable->fptr,CASEINSEN,"DIS_QUAL",&disQualCol,&status)) {
cpl_msg_error(modName, "fits_get_colnum returned error code %d", status);
return(VM_FALSE);
}
if (fits_read_col_int(extTable->fptr,slitCol,1,1,1,null,&newSlitNo,&null,
&status)) {
cpl_msg_error(modName, "fits_read_col_int returned error code %d", status);
return(VM_FALSE);
}
lastSlit = NULL;
i = 0;
while (i < nRows) {
exSlit = newExtractionSlit();
if (exSlit == NULL) {
cpl_msg_error(modName, "The function newExtractionSlit has returned NULL");
return(VM_FALSE);
}
slitLen = 0;
slitNo = newSlitNo;
while ( (i+slitLen < nRows) && (newSlitNo == slitNo) ) {
if (fits_read_col_int(extTable->fptr,slitCol,i+slitLen+1,1,1,null,
&newSlitNo,&null,&status)) {
cpl_msg_error(modName, "fits_read_col_int returned error %d", status);
return(VM_FALSE);
}
/*ALEX: add this "if" also here, otherwise it misses the first
fiber and duplcates the 1600th one*/
if (newSlitNo == slitNo) {
if (fits_read_col_int(extTable->fptr,IFUslitNoCol,i+slitLen+1,1,1,null,
&(exSlit->IFUslitNo),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_int returned error %d", status);
return(VM_FALSE);
}
if (fits_read_col_int(extTable->fptr,IFUfibNoCol,i+slitLen+1,1,1,null,
&(exSlit->IFUfibNo),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_int returned error %d", status);
return(VM_FALSE);
}
/*ALEX: read IFUfibPeakX and IFUfibTrans columns */
if (fits_read_col_flt(extTable->fptr,IFUfibPeakXCol,i+slitLen+1,1,1,null,
&(exSlit->IFUfibPeakX),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_flt returned error %d", status);
return(VM_FALSE);
}
if (fits_read_col_flt(extTable->fptr,IFUfibTransCol,i+slitLen+1,1,1,null,
&(exSlit->IFUfibTrans),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_flt returned error %d", status);
return(VM_FALSE);
}
}/*ALEX: end "if"*/
slitLen++;
}
if ( i+slitLen < nRows) {
slitLen--;
}
exSlit->slitNo = slitNo;
exSlit->numRows = slitLen;
exSlit->y = newIntArray(slitLen);
if (exSlit->y == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newIntArray has return NULL");
return(VM_FALSE);
}
exSlit->ccdX = newFloatArray(slitLen);
if (exSlit->ccdX == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newFloatArray has return NULL");
return(VM_FALSE);
}
exSlit->ccdY = newFloatArray(slitLen);
if (exSlit->ccdY == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newFloatArray has return NULL");
return(VM_FALSE);
}
exSlit->maskX = newFloatArray(slitLen);
if (exSlit->maskX == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newFloatArray has return NULL");
return(VM_FALSE);
}
exSlit->maskY = newFloatArray(slitLen);
if (exSlit->maskY == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newFloatArray has return NULL");
return(VM_FALSE);
}
exSlit->numSpec = newIntArray(slitLen);
if (exSlit->numSpec == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newIntArray has return NULL");
return(VM_FALSE);
}
exSlit->zeroX = newFloatArray(slitLen);
if (exSlit->zeroX == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newFloatArray has return NULL");
return(VM_FALSE);
}
exSlit->zeroY = newFloatArray(slitLen);
if (exSlit->zeroY == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newFloatArray has return NULL");
return(VM_FALSE);
}
exSlit->crvPol =
(VimosDistModel1D **)cpl_malloc(slitLen*sizeof(VimosDistModel1D *));
/* check if space was allocated */
if (exSlit->crvPol == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "Allocation Error");
return(VM_FALSE);
}
exSlit->crvPolRms = newFloatArray(slitLen);
if (exSlit->crvPolRms == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newFloatArray has return NULL");
return(VM_FALSE);
}
exSlit->invDis =
(VimosDistModel1D **)cpl_malloc(slitLen*sizeof(VimosDistModel1D *));
if (exSlit->invDis == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "Allocation Error");
return(VM_FALSE);
}
exSlit->invDisRms = newFloatArray(slitLen);
if (exSlit->invDisRms == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newFloatArray has return NULL");
return(VM_FALSE);
}
exSlit->invDisQuality = newIntArray(slitLen);
if (exSlit->invDisQuality == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newIntArray has return NULL");
return(VM_FALSE);
}
for (j = 0; j < slitLen; j++) {
if (fits_read_col_int(extTable->fptr,yCol,i+j+1,1,1,null,
&(exSlit->y->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_int returned error %d", status);
return(VM_FALSE);
}
if (fits_read_col_flt(extTable->fptr,ccdXCol,i+j+1,1,1,null,
&(exSlit->ccdX->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_flt returned error %d", status);
return(VM_FALSE);
}
if (fits_read_col_flt(extTable->fptr,ccdYCol,i+j+1,1,1,null,
&(exSlit->ccdY->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_flt returned error %d", status);
return(VM_FALSE);
}
if (fits_read_col_flt(extTable->fptr,maskXCol,i+j+1,1,1,null,
&(exSlit->maskX->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_flt returned error %d", status);
return(VM_FALSE);
}
if (fits_read_col_flt(extTable->fptr,maskYCol,i+j+1,1,1,null,
&(exSlit->maskY->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_flt returned error %d", status);
return(VM_FALSE);
}
if (fits_read_col_int(extTable->fptr,specNoCol,i+j+1,1,1,null,
&(exSlit->numSpec->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_int returned error %d", status);
return(VM_FALSE);
}
if (fits_read_col_flt(extTable->fptr,zeroXCol,i+j+1,1,1,null,
&(exSlit->zeroX->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_flt returned error %d", status);
return(VM_FALSE);
}
if (fits_read_col_flt(extTable->fptr,zeroYCol,i+j+1,1,1,null,
&(exSlit->zeroY->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_flt returned error %d", status);
return(VM_FALSE);
}
exSlit->crvPol[j] = newDistModel1D(crvOrder);
if (exSlit->crvPol[j] == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newDistModel1D has returned NULL");
return(VM_FALSE);
}
for (k = 0; k <= crvOrder; k++) {
if (fits_read_col_dbl(extTable->fptr,crvPolCol[k],i+j+1,1,1,null,
&(exSlit->crvPol[j]->coefs[k]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_dbl returned error %d", status);
return(VM_FALSE);
}
}
exSlit->crvPol[j]->offset = exSlit->ccdY->data[j];
if (fits_read_col_flt(extTable->fptr,crvPolRmsCol,i+j+1,1,1,null,
&(exSlit->crvPolRms->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_flt returned error %d", status);
return(VM_FALSE);
}
exSlit->invDis[j] = newDistModel1D(invOrder);
if (exSlit->invDis[j] == NULL) {
deleteExtractionSlit(exSlit);
cpl_msg_error(modName, "The function newDistModel1D has returned NULL");
return(VM_FALSE);
}
for (k = 0; k <= invOrder; k++) {
if (fits_read_col_dbl(extTable->fptr,invDisCol[k],i+j+1,1,1,null,
&(exSlit->invDis[j]->coefs[k]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_dbl returned error %d", status);
return(VM_FALSE);
}
exSlit->invDis[j]->offset = lambda0;
}
if (fits_read_col_flt(extTable->fptr,invDisRmsCol,i+j+1,1,1,null,
&(exSlit->invDisRms->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_flt returned error %d", status);
return(VM_FALSE);
}
if (fits_read_col_int(extTable->fptr,disQualCol,i+j+1,1,1,null,
&(exSlit->invDisQuality->data[j]),&null,&status)) {
cpl_msg_error(modName, "fits_read_col_int returned error %d", status);
return(VM_FALSE);
}
}
i += slitLen;
if (lastSlit == NULL) {
extTable->slits = exSlit;
}
else {
lastSlit->next = exSlit;
exSlit->prev = lastSlit;
}
lastSlit = exSlit;
}
cpl_free(crvPolCol);
cpl_free(invDisCol);
for (ii = 0; ii < 3; ii++){ /* free the memory for the column labels */
cpl_free( ttype[ii] );
}
return (VM_TRUE);
}
VimosBool writeFitsExtractionTable(VimosExtractionTable *extTable, fitsfile
*fptr)
{
int i, j, k;
int nRows;
int rowNum;
int slitLen;
int crvOrder, invOrder;
char colName[80];
int status, nbytes;
char *ttype[84], *tform[84], comment[80];
VimosExtractionSlit *exSlit;
/* validate input */
if (extTable == NULL) {
cpl_msg_error("writeFitsExtractionTable","NULL input table");
return (VM_FALSE);
}
/* validate input */
if ( strcmp(extTable->name, VM_EXT) ) {
cpl_msg_error("writeFitsExtractionTable","Invalid input table");
return (VM_FALSE);
}
extTable->fptr = fptr;
if (!readIntDescriptor(extTable->descs, "ESO PRO CRV POL ORD", &crvOrder,
comment)) {
cpl_msg_error("writeFitsExtractionTable","The function readIntDescriptor has returned an error");
return(VM_FALSE);
}
if (!readIntDescriptor(extTable->descs, "ESO PRO IDS REL ORD", &invOrder,
comment)) {
cpl_msg_error("writeFitsExtractionTable","The function readIntDescriptor has returned an error");
return(VM_FALSE);
}
exSlit = extTable->slits;
nRows = numRowsInExtSlits(exSlit);
status = 0;
/* if Table is already present, first remove it */
if (!fits_movnam_hdu(fptr, BINARY_TBL, "EXR", 0, &status) ) {
if(fits_delete_hdu(fptr, NULL, &status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_delete_hdu has returned an error (code %d)", status);
return (VM_FALSE);
}
} else {
status = 0;
}
for (i = 0; i <= 15+crvOrder+1+invOrder+1; i++){
/* allocate space for the column labels */
ttype[i] = (char *) cpl_malloc(FLEN_VALUE); /* max label length = 69 */
/* check if space was allocated */
if (ttype[i] == NULL) {
cpl_msg_error("writeFitsExtractionTable","Allocation Error");
return(VM_FALSE);
}
tform[i] = (char *) cpl_malloc(FLEN_VALUE);
/* check if space was allocated */
if (tform[i] == NULL) {
cpl_msg_error("writeFitsExtractionTable","Allocation Error");
return(VM_FALSE);
}
}
ttype[0] = "SLIT";
tform[0] = "1J";
ttype[1]="IFUSLIT_NO";
tform[1] = "1J";
ttype[2]="IFUFIB_NO";
tform[2] = "1J";
ttype[3] = "Y";
tform[3] = "1J";
ttype[4] = "CCD_X";
tform[4] = "1E";
ttype[5]= "CCD_Y";
tform[5] = "1E";
ttype[6]= "MASK_X";
tform[6] = "1E";
ttype[7]="MASK_Y";
tform[7] = "1E";
ttype[8]="SPEC_NO";
tform[8] = "1J";
ttype[9]="ZERO_X";
tform[9] = "1E";
ttype[10]="ZERO_Y";
tform[10] = "1E";
for (i = 0; i <= crvOrder; i++) {
sprintf(colName,"CRV_POL_%d",i);
sprintf(ttype[10+i+1], "%s", colName);
tform[10+i+1] = "1D";
}
ttype[11+crvOrder+1]="CRVPOL_RMS";
tform[11+crvOrder+1] = "1E";
for (i = 0; i <= invOrder; i++) {
sprintf(colName,"INV_DIS_%d",i);
sprintf(ttype[11+crvOrder+1+i+1], "%s", colName);
tform[11+crvOrder+1+i+1] = "1D";
}
ttype[12+crvOrder+1+invOrder+1]="INVDIS_RMS";
tform[12+crvOrder+1+invOrder+1] = "1E";
ttype[13+crvOrder+1+invOrder+1] = "DIS_QUAL";
tform[13+crvOrder+1+invOrder+1] = "1J";
/*ALEX PROVA */
ttype[14+crvOrder+1+invOrder+1] = "IFUFIBPEAKX";
tform[14+crvOrder+1+invOrder+1] = "1E";
ttype[15+crvOrder+1+invOrder+1] = "IFUFIBTRANS";
tform[15+crvOrder+1+invOrder+1] = "1E";
/* append a new empty binary table onto the FITS file */
if (fits_create_tbl(fptr, BINARY_TBL,0, 16+crvOrder+1+invOrder+1, ttype,
tform,NULL, "EXR", &status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_create_tbl has returned an error (code %d)", status);
return (VM_FALSE);
}
if (fits_movnam_hdu(fptr, BINARY_TBL, "EXR", 0, &status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_movnam_hdu has returned an error (code %d)", status);
return (VM_FALSE);
}
/* write the table descriptors to the Fits file */
if (fits_read_key (extTable->fptr,TINT,"NAXIS1",&nbytes,NULL,&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_read_key has returned an error (code %d)", status);
return (VM_FALSE);
}
if (!writeIntDescriptor(&(extTable->descs), "NAXIS1", nbytes, "")) {
cpl_msg_error("writeFitsExtractionTable","The function writeIntDescriptor has returned an error");
return (VM_FALSE);
}
if (!writeIntDescriptor(&(extTable->descs), "NAXIS2", nRows, "")) {
cpl_msg_error("writeFitsExtractionTable","The function writeIntDescriptor has returned an error");
return (VM_FALSE);
}
/*ALEX: added +2 columns: 11+crvOrder+1+invOrder+1+1+2 */
if (!writeIntDescriptor(&(extTable->descs), "TFIELDS",
16+crvOrder+1+invOrder+1,"")) {
cpl_msg_error("writeFitsExtractionTable","The function writeIntDescriptor has returned an error");
return (VM_FALSE);
}
if (!writeDescsToFitsTable(extTable->descs, extTable->fptr)) {
cpl_msg_error("writeFitsExtractionTable","The function writeDescsToFitsTable has returned an error");
return (VM_FALSE);
}
exSlit = extTable->slits;
rowNum = 1;
while (exSlit) {
slitLen = exSlit->numRows;
for (j = 0; j < slitLen; j++) {
if (fits_write_col_int(extTable->fptr,1,rowNum,1,1,&(exSlit->slitNo),
&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_int has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_int(extTable->fptr,2,rowNum,1,1,&(exSlit->IFUslitNo),
&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_int has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_int(extTable->fptr,3,rowNum,1,1,&(exSlit->IFUfibNo),
&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_int has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_int(extTable->fptr,4,rowNum,1,1,&(exSlit->y->data[j]),
&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_flt(extTable->fptr,5,rowNum,1,1,
&(exSlit->ccdX->data[j]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_flt(extTable->fptr,6,rowNum,1,1,
&(exSlit->ccdY->data[j]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_flt(extTable->fptr,7,rowNum,1,1,
&(exSlit->maskX->data[j]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_flt(extTable->fptr,8,rowNum,1,1,
&(exSlit->maskY->data[j]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_int(extTable->fptr,9,rowNum,1,1,
&(exSlit->numSpec->data[j]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_flt(extTable->fptr,10,rowNum,1,1,
&(exSlit->zeroX->data[j]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_flt(extTable->fptr,11,rowNum,1,1,
&(exSlit->zeroY->data[j]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
for (k = 0; k <= crvOrder; k++) {
if (fits_write_col_dbl(extTable->fptr,11+k+1,rowNum,1,1,
&(exSlit->crvPol[j]->coefs[k]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_dbl has returned an error (code %d)",
status);
return(VM_FALSE);
}
}
if (fits_write_col_flt(extTable->fptr,12+crvOrder+1,rowNum,1,1,
&(exSlit->crvPolRms->data[j]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
for (k = 0; k <= invOrder; k++) {
if (fits_write_col_dbl(extTable->fptr,12+k+1+crvOrder+1,rowNum,1,1,
&(exSlit->invDis[j]->coefs[k]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_dbl has returned an error (code %d)",
status);
return(VM_FALSE);
}
}
if (fits_write_col_flt(extTable->fptr,13+crvOrder+1+invOrder+1,
rowNum,1,1,&(exSlit->invDisRms->data[j]),
&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_int(extTable->fptr,14+crvOrder+1+invOrder+1,
rowNum,1,1,&(exSlit->invDisQuality->data[j]),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
/*ALEX: added IFUfibPeakX and IFUfibTrans columns */
if (fits_write_col_flt(extTable->fptr,15+crvOrder+1+invOrder+1,
rowNum,1,1,
&(exSlit->IFUfibPeakX),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
if (fits_write_col_flt(extTable->fptr,16+crvOrder+1+invOrder+1,
rowNum,1,1,
&(exSlit->IFUfibTrans),&status)) {
cpl_msg_error("writeFitsExtractionTable","The function fits_write_col_flt has returned an error (code %d)", status);
return(VM_FALSE);
}
rowNum++;
}
exSlit = exSlit->next;
}
return(VM_TRUE);
}
|