File: vmdetector.c

package info (click to toggle)
cpl-plugin-vimos 4.1.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 28,228 kB
  • sloc: ansic: 169,271; cpp: 16,177; sh: 4,344; python: 3,678; makefile: 1,138; perl: 10
file content (1566 lines) | stat: -rw-r--r-- 46,410 bytes parent folder | download | duplicates (4)
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
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
/* $Id: vmdetector.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 <pilstrutils.h>
#include <pilmessages.h>
#include <cpl_msg.h>
#include <piltranslator.h>

#include "vmdetector.h"
#include "cpl.h"


#define MAX_COMMENT_LENGTH (80)

/**
 * @name vimosDetector
 *
 * @doc
 *   The module vimosDetector collects low/medium level functions
 *   related to detector properties.
 */

/**@{*/

/**
 * @memo
 *   Creates a new window.
 *
 * @return Pointer to the newly allocated window.
 *
 * @doc
 *   The function allocates and initializes a new list of windows,
 *   containing one empty window.
 *
 * @author C. Izzo
 */

VimosWindow *newWindow(void)
{
  VimosWindow *window;

  window = (VimosWindow *) cpl_malloc(sizeof(VimosWindow));
  if (window) {
    window->startX = 0;
    window->startY = 0;
    window->nX = 0;
    window->nY = 0;
    window->prev = window->next = NULL;
  }
  return(window);
}


/**
 * @memo
 *   Destroys a window.
 *
 * @return Nothing.
 *
 * @param window Pointer to the window to destroy.
 *
 * @doc
 *   The function removes the window from a list, and destroys it
 *   leaving the list unbroken.
 *
 * @author C. Izzo
 */

void deleteWindow(VimosWindow *window)
{
  if (window) {

   /*
    * Detach this element from its linked list
    */

    if (window->prev) window->prev->next = window->next;
    if (window->next) window->next->prev = window->prev;

   /*
    * Destroy it
    */

    cpl_free(window);
    window = NULL;
  }
  return;
}


/**
 * @memo
 *   Destroys a list of windows.
 *
 * @return Nothing.
 *
 * @param window Pointer to the first window of the list to destroy.
 *
 * @doc
 *   The function destroys a list of windows starting from any given
 *   element on, and leaving the rest of the list intact.
 *
 * @author C. Izzo
 */

void deleteWindowList(VimosWindow *window)
{
  if (window) {
    deleteWindowList(window->next);
    deleteWindow(window);
  }
  return;
}


/**
 * @memo
 *   Creates a new port.
 *
 * @return Pointer to the newly allocated port.
 *
 * @doc
 *   The function allocates and initializes a new list of ports,
 *   containing one empty port.
 *   A port consists of four windows: the window defining the port
 *   itself, the readout window (i.e. the port portion that is actually
 *   read), the prescan region, and the overscan region. The windows
 *   coordinates are given in terms of the pixel coordinates of a
 *   related image (starting from (0,0)). Adding the given shifts 
 *   in X and Y the coordinates are converted into chip pixels.
 *
 * @author C. Izzo
 */

VimosPort *newPort(void)
{
  VimosPort *port;

  port = (VimosPort *) cpl_malloc(sizeof(VimosPort));
  if (port) {
    port->window        = newWindow();
    port->prScan        = newWindow();
    port->ovScan        = newWindow();
    port->readOutWindow = newWindow();
    port->shiftX        = 0;
    port->shiftY        = 0;
    port->prev = port->next = NULL;
  }
  return(port);
}


/**
 * @memo
 *   Destroys a port.
 *
 * @return Nothing.
 *
 * @param port Pointer to the port to destroy.
 *
 * @doc
 *   The function removes the port from a list, and destroys it
 *   leaving the list unbroken.
 *
 * @author C. Izzo
 */

void deletePort(VimosPort *port)
{
  if (port) {

   /*
    * Detach this element from its linked list
    */

    if (port->prev) port->prev->next = port->next;
    if (port->next) port->next->prev = port->prev;

   /*
    * Destroy it
    */

    deleteWindow(port->window);
    deleteWindow(port->prScan);
    deleteWindow(port->ovScan);
    deleteWindow(port->readOutWindow);

    cpl_free(port);
  }
  return;
}


/**
 * @memo
 *   Destroys a list of ports.
 *
 * @return Nothing.
 *
 * @param port Pointer to the first port of the list to destroy.
 *
 * @doc
 *   The function destroys a list of ports starting from any given
 *   element on, and leaving the rest of the list intact.
 *
 * @author C. Izzo
 */

void deletePortList(VimosPort *port)
{
  if (port) {
    deletePortList(port->next);
    deletePort(port);
  }
  return;
}

/**
 * @memo
 *   Generate a list of ports from the content of a data image header.
 *
 * @return A list of ports.
 *
 * @param image  Image to be read the port structure from.
 * @param nports Returned number of found ports.
 *
 * @doc
 *   This function returns correct results, as long as the following
 *   assumptions are correct:
 *   \begin{itemize}
 *     \item ESO.DET.OUTPUTS contains the number of readout ports.

 *     \item ESO.DET.OUTi.X, Y contain the starting position of the 
 *           i-th port in chip coordinates (if there is just one 
 *           readout port, the index i is omitted). The starting 
 *           position may correspond to any of the corners of the 
 *           port, and the corner may differ from port to port 
 *           (as in the FORS case), therefore it is internally 
 *           converted always to the lower left corner of the port.
 *
 *     \item ESO.DET.OUTi.NX, NY contain the number of pixel in the 
 *           X and Y directions of the i-th port (if there is just 
 *           one readout port, the index i is omitted).
 *   \end{itemize}
 *
 * Readout windows can be defined on the chip surface independently
 * on the subdivision into ports. In other words, a given readout
 * window may extend over different ports, and it includes prescan 
 * and overscans if present. 
 *
 *   \begin{itemize}
 *     \item ESO.DET.WINDOWS contains the number of readout windows.
 *           It is assumed that just one readout window can be defined
 *           for a given data image (Stefan Bogun, private communication).
 *
 *     \item ESO.DET.WINi.STRX, STRY, NX, NY contain the lower left corner
 *           and the size of the readout window in detector coordinates. 
 *           Detector coordinates are not necessarily coincident with 
 *           chip coordinates, as adding a prescan would define a larger 
 *           "virtual detector". Specifically, if a readout window is 
 *           entirely contained in the chip area, then its coordinates 
 *           coincide with chip coordinates. But if a prescan region 
 *           exists and the readout window extending beyond the chip, 
 *           then the window coordinates will have a shift with respect 
 *           to chip coordinates, equal to the extension of the prescan.
 *
 *     \item ESO.DET.OUT.PRSCX, PRSCY, OVSCX, OVSCY supply the number of
 *           pixels in the prescan and overscan regions (beyond the chip).
 *   \end{itemize}
 *
 * This routine returns a list of ports, and for each port its 
 * own portion of the whole readout window with the corresponding 
 * prescan/overscan window (if a readout window is extending into 
 * different ports, then it is split into more (rectangular) regions, 
 * one for each involved port).
 *
 * All the start coordinates for each region are given in image 
 * pixels (NOT chip pixels), where the lower left pixel is assigned 
 * coordinates (0,0).
 *
 * @author C. Izzo
 */

VimosPort *getPorts(VimosImage *image, int *nports)
{
  char          modName[]            = "getPorts";

  VimosPort    *lastPort             = NULL;
  VimosPort    *currentPort          = NULL;
  VimosPort    *headPort             = NULL;
  VimosWindow  *lastWindow           = NULL;
  VimosWindow  *currentWindow        = NULL;
  VimosWindow  *headWindow           = NULL;
  VimosWindow  *currentReadOutWindow = NULL;
  VimosWindow  *newReadOutWindow     = NULL;
  const char   *dscName              = NULL;
  int           swap[2]              = {0,0};
  int           tx                   = 99999999;
  int           ty                   = 99999999;
  int           noIndex              = 0;
  int           vertical             = 0;
  int           i, j, k, nwin;
  int           status;
  int           npix;
  int           x1, x2, nx1, nx2;

 /*
  * Determine number of readout ports
  */

  *nports = 0;
  if (readIntDescriptor(image->descs, pilTrnGetKeyword("NumberOfPorts"), 
                        nports, image->descs->descComment) == VM_TRUE) {
    cpl_msg_debug(modName, "Number of ports found is %d.", *nports);
    if (*nports < 1 || *nports > MAX_RDPORTS) {
      cpl_msg_error(modName, "Max. number allowed is %d.", MAX_RDPORTS);
      return NULL;
    }
  }
  else {
    cpl_msg_error(modName, "Keyword %s not found.", 
                pilTrnGetKeyword("NumberOfPorts"));
    return NULL;
  }

 /*
  * Determine all the port regions
  */

  status = 0;

  if (findDescriptor(image->descs, pilTrnGetKeyword("PortStartX"))) {
    noIndex = 1;
  }
  for (i = 0; i < *nports; i++) {
    currentPort = newPort();
    if (i == 0) {
      headPort = currentPort;   /* Keep track of list's head */
    }
    else {
      lastPort->next = currentPort;   /* Append a new port to list */
      currentPort->prev = lastPort;
    }
    lastPort = currentPort;

    if (noIndex) {

     /*
      * The current block is just necessary to avoid indexing if there
      * is just one port.
      */

     /*
      * Get start X,Y coords of current port
      */

      if (readIntDescriptor(image->descs, pilTrnGetKeyword("PortStartX"),
                            &(currentPort->window->startX), 
                            image->descs->descComment) == VM_FALSE) {
        status++;
        cpl_msg_error(modName, "Keyword %s not found.", 
                    pilTrnGetKeyword("PortStartX"));
      }

      if (readIntDescriptor(image->descs, pilTrnGetKeyword("PortStartY"),
                             &(currentPort->window->startY), 
                             image->descs->descComment) == VM_FALSE) {
        status++;
        cpl_msg_error(modName, "Keyword %s not found.", 
                    pilTrnGetKeyword("PortStartY"));
      }

     /*
      * Get X and Y size of current port
      */

      if (readIntDescriptor(image->descs, pilTrnGetKeyword("PortSizeX"),
                            &(currentPort->window->nX), 
                            image->descs->descComment) == VM_FALSE) {
        status++;
        cpl_msg_error(modName, "Keyword %s not found.", 
                    pilTrnGetKeyword("PortSizeX"));
      }

      if (readIntDescriptor(image->descs, pilTrnGetKeyword("PortSizeY"),
                            &(currentPort->window->nY), 
                            image->descs->descComment) == VM_FALSE) {
        status++;
        cpl_msg_error(modName, "Keyword %s not found.", 
                    pilTrnGetKeyword("PortSizeY"));
      }

     /*
      * Get extension of X or Y prescan. Note: one of the two should be zero.
      */

      if (readIntDescriptor(image->descs, pilTrnGetKeyword("PortPrscX"),
                            &npix, image->descs->descComment) == VM_TRUE) {
        if (npix > 0) {
          currentPort->prScan->nX     = npix;
          currentPort->prScan->startX = currentPort->window->startX
                                      - currentPort->prScan->nX;
          currentPort->prScan->startY = currentPort->window->startY;
          currentPort->prScan->nY     = currentPort->window->nY;
        }
      }

      if (readIntDescriptor(image->descs, pilTrnGetKeyword("PortPrscY"),
                            &npix, image->descs->descComment) == VM_TRUE) {
        if (npix > 0) {
          if (currentPort->prScan->nX) { 
            cpl_msg_error(modName, "Illegal prescan region");
            return(NULL);
          }
          currentPort->prScan->nY     = npix;
          currentPort->prScan->startY = currentPort->window->startY
                                      - currentPort->prScan->nY;
          currentPort->prScan->startX = currentPort->window->startX;
          currentPort->prScan->nX     = currentPort->window->nX;
        }
      }

     /*
      * Get extension of X or Y overscan. Note: one of the two
      * must be zero.
      */

      if (readIntDescriptor(image->descs, pilTrnGetKeyword("PortOvscX"),
                            &npix, image->descs->descComment) == VM_TRUE) {
        if (npix > 0) {
          currentPort->ovScan->nX     = npix;
          currentPort->ovScan->startX = currentPort->window->startX
                                      + currentPort->window->nX;
          currentPort->ovScan->startY = currentPort->window->startY;
          currentPort->ovScan->nY     = currentPort->window->nY;
        }
      }

      if (readIntDescriptor(image->descs, pilTrnGetKeyword("PortOvscY"),
                            &npix, image->descs->descComment) == VM_TRUE) {
        if (npix > 0) {
          if (currentPort->ovScan->nX) { 
            cpl_msg_error(modName, "Illegal overscan region");
            return(NULL);
          }
          currentPort->ovScan->nY     = npix;
          currentPort->ovScan->startY = currentPort->window->startY
                                      + currentPort->window->nY;
          currentPort->ovScan->startX = currentPort->window->startX;
          currentPort->ovScan->nX     = currentPort->window->nX;
        }
      }
    }
    else {

     /*
      * Here is where ports are in total more than one (or just one, 
      * but indexed).
      */

     /*
      * Get start X,Y coords of current port
      */

      if (readIntDescriptor(image->descs, 
                            pilTrnGetKeyword("SeqPortStartX", i + 1),
                            &(currentPort->window->startX), 
                            image->descs->descComment) == VM_FALSE) {
        status++;
        cpl_msg_error(modName, "Keyword %s not found.", 
                    pilTrnGetKeyword("SeqPortStartX", i + 1));
      }

      if (readIntDescriptor(image->descs, 
                            pilTrnGetKeyword("SeqPortStartY", i + 1),
                            &(currentPort->window->startY), 
                            image->descs->descComment) == VM_FALSE) {
        status++;
        cpl_msg_error(modName, "Keyword %s not found.", 
                    pilTrnGetKeyword("SeqPortStartY", i + 1));
      }

     /*
      * Get X and Y size of current port
      */

      if (readIntDescriptor(image->descs, 
                            pilTrnGetKeyword("SeqPortSizeX", i + 1),
                            &(currentPort->window->nX), 
                            image->descs->descComment) == VM_FALSE) {
        status++;
        cpl_msg_error(modName, "Keyword %s not found.", 
                    pilTrnGetKeyword("SeqPortSizeX", i + 1));
      }

      if (readIntDescriptor(image->descs, 
                            pilTrnGetKeyword("SeqPortSizeY", i + 1),
                            &(currentPort->window->nY), 
                            image->descs->descComment) == VM_FALSE) {
        status++;
        cpl_msg_error(modName, "Keyword %s not found.", 
                    pilTrnGetKeyword("SeqPortSizeY", i + 1));
      }

     /*
      * Here we standardize the start coordinates of the port:
      * we want them to be always at the lower left corner of 
      * the port, and this is not always the case. What follows
      * is valid just under the assumption that at least the first 
      * port has its start coordinates at its lower left corner, as
      * is hopefully always the case: we MUST make this assumption,
      * as this information is NOT currently present in the data
      * header! In this way, we can always assume that for each
      * new port found, the previous one was already assigned the
      * starting point at the lower left corner.
      */

      if (i > 0) {  /* Not necessary to enter this block for the first port */

        swap[0] = swap[1] = 0;

       /*
        * swap[] is meant to record the modifications done to
        * standardize the port starting X and Y coordinates to 
        * its lower left corner, and therefore understand whether 
        * a prescan should be seen as an overscan, and viceversa.
        */

        for (j = 0; j < 2; j++) {
          if (j) {                                     /* Y coordinate */
            x1  = currentPort->prev->window->startY;
            x2  = currentPort->window->startY;
            nx1 = currentPort->prev->window->nY;
            nx2 = currentPort->window->nY;
          } 
          else {                                       /* X coordinate */
            x1  = currentPort->prev->window->startX;
            x2  = currentPort->window->startX;
            nx1 = currentPort->prev->window->nX;
            nx2 = currentPort->window->nX;
          }
          if (x2 - x1 == nx1 + nx2 - 1) {
            x2 -= (nx2 - 1);
            swap[j] = 1;
          }
          else if (x2 - x1 == nx1 + nx2) {

           /*
            * PLEASE NOTE: this part was added here just to patch the 
            * wrong start Y coordinates for ports 3 and 4 in FORS, set
            * to 2049 instead of 2048. This block should in principle
            * be removed the day that that mistake is solved, but it
            * may be even wiser to leave it here, as it fixes easily
            * this kind of common mistakes.
            */

            x2 -= nx2;
            swap[j] = 1;
          }
          else if (x2 - x1 == nx1 - 1 || x2 - x1 == nx1) {

           /*                        ^^^^^^^^^^^^^^^^^^
            * PLEASE NOTE: the underscored part was added just to patch 
            * wrong start Y coordinates for ports 3 and 4 in FORS, set
            * to 2049 instead of 2048. This part should in principle
            * be removed the day that that mistake is solved, but it
            * may be even wiser to leave it here, as it fixes easily 
            * this kind of common mistakes.
            */

            x2 = x1;
            swap[j] = 1;
          }
          else if (x1 - x2 == 1) {
            x2 -= (nx2 - 1);
            swap[j] = 1;
          }
          if (j) {
            currentPort->window->startY = x2;
          } 
          else {
            currentPort->window->startX = x2;
          }
        }
      }

     /*
      * Get extension of X or Y prescan. Note: one of the two
      * must be zero.
      */

      if (swap[0]) {

       /* 
        * If the current X corner coordinate was swapped, read
        * the overscan as a prescan.
        */

        dscName = pilTrnGetKeyword("SeqPortOvscX", i + 1);
      }
      else {
        dscName = pilTrnGetKeyword("SeqPortPrscX", i + 1);
      }

      if (readIntDescriptor(image->descs, dscName,
                            &npix, image->descs->descComment) == VM_TRUE) {
        if (npix > 0) {
          vertical = 0;
          currentPort->prScan->nX     = npix;
          currentPort->prScan->startX = currentPort->window->startX
                                      - currentPort->prScan->nX;
          currentPort->prScan->startY = currentPort->window->startY;
          currentPort->prScan->nY     = currentPort->window->nY;
        }
      }

      if (swap[1]) {

       /* 
        * If the current Y corner coordinate was swapped, read
        * the overscan as a prescan.
        */

        dscName = pilTrnGetKeyword("SeqPortOvscY", i + 1);
      }
      else {
        dscName = pilTrnGetKeyword("SeqPortPrscY", i + 1);
      }

      if (readIntDescriptor(image->descs, dscName,
                            &npix, image->descs->descComment) == VM_TRUE) {
        if (npix > 0) {
          vertical = 1;
          if (currentPort->prScan->nX) {
            cpl_msg_error(modName, "Illegal prescan region");
            return NULL;
          }
          currentPort->prScan->nY     = npix;
          currentPort->prScan->startY = currentPort->window->startY
                                      - currentPort->prScan->nY;
          currentPort->prScan->startX = currentPort->window->startX;
          currentPort->prScan->nX     = currentPort->window->nX;
        }
      }

     /*
      * Get extension of X or Y overscan. Note: one of the two
      * must be zero.
      */

      if (swap[0]) {

       /* 
        * If the current X corner coordinate was swapped, read
        * the prescan as an overscan.
        */

        dscName = pilTrnGetKeyword("SeqPortPrscX", i + 1);
      }
      else {
        dscName = pilTrnGetKeyword("SeqPortOvscX", i + 1);
      }

      if (readIntDescriptor(image->descs, dscName,
                            &npix, image->descs->descComment) == VM_TRUE) {
        if (npix > 0) {
          if (vertical) {
             cpl_msg_error(modName, 
                         "Overscan region inconsistent with prescan region");
             return NULL;
          }
          currentPort->ovScan->nX     = npix;
          currentPort->ovScan->startX = currentPort->window->startX
                                      + currentPort->window->nX;
          currentPort->ovScan->startY = currentPort->window->startY;
          currentPort->ovScan->nY     = currentPort->window->nY;
        }
      }
      if (swap[1]) {

       /* 
        * If the current Y corner coordinate was swapped, read
        * the prescan as an overscan.
        */

        dscName = pilTrnGetKeyword("SeqPortPrscY", i + 1);
      }
      else {
        dscName = pilTrnGetKeyword("SeqPortOvscY", i + 1);
      }

      if (readIntDescriptor(image->descs, dscName,
                            &npix, image->descs->descComment) == VM_TRUE) {
        if (npix > 0) {
          if (currentPort->ovScan->nX) {
            cpl_msg_error(modName, "Illegal overscan region");
            return NULL;
          }
          if (!vertical) {
             cpl_msg_error(modName, 
                         "Overscan region inconsistent with prescan region");
             return NULL;
          }
          currentPort->ovScan->nY     = npix;
          currentPort->ovScan->startY = currentPort->window->startY
                                      + currentPort->window->nY;
          currentPort->ovScan->startX = currentPort->window->startX;
          currentPort->ovScan->nX     = currentPort->window->nX;
        }
      }
    }

   /*
    * tx and ty should contain the lowest coordinate in image:
    */

    if (currentPort->prScan->nX) {  /* i.e., if ANY (X or Y) prescan exists! */
      if (vertical) {
        if (currentPort->prScan->startY < ty) ty = currentPort->prScan->startY;
      }
      else {
        if (currentPort->prScan->startX < tx) tx = currentPort->prScan->startX;
      }
    }
  }

 /*
  * Patch (an attempt to cope with the twisted logic of the keyword header):
  * size of unic port is always the size of the chip. This is solving a
  * compatibility problem with FORS data.
  */

 /* FIXME: it must be disabled to let vmDet work. It's actually vmDet that
  *        should be probably modified

  if (*nports == 1) {
    if (getChipSize(image, &(headPort->window->nX), &(headPort->window->nY)) 
                     == EXIT_FAILURE) {
      status++;
      cpl_msg_error(modName, "Cannot read chip size.");
    }
  }

  * End Of FIXME */

 /*
  * Determine all the readout regions
  */

  nwin = 0;
  if (readIntDescriptor(image->descs, pilTrnGetKeyword("NumberOfWindows"), 
                        &nwin, image->descs->descComment) == VM_TRUE) {
    cpl_msg_debug(modName, "Number of readout windows found is %d", nwin);
    if (nwin != 1) {
      cpl_msg_error(modName, 
                  "Just ONE read out window is allowed - %d found", nwin);
      return NULL;
    }
  }
  else {
    cpl_msg_error(modName, "Keyword %s not found", 
                pilTrnGetKeyword("NumberOfWindows"));
    return NULL;
  }

 /*
  * Using loop for easier (future) generalization - just one readout 
  * window is currently expected.
  */

  for (i = 0; i < nwin; i++) {
    currentWindow = newWindow();
    if (i == 0) {
      headWindow = currentWindow;         /* Keep track of list's head   */
    }
    else {
      lastWindow->next = currentWindow;   /* Append a new window to list */
      currentWindow->prev = lastWindow;
    }
    lastWindow = currentWindow;

    if (readIntDescriptor(image->descs, 
                          pilTrnGetKeyword("SeqWindowStartX", i + 1),
                          &(currentWindow->startX), 
                          image->descs->descComment) == VM_FALSE) {
      status++;
      cpl_msg_error(modName, "Keyword %s not found.", 
                  pilTrnGetKeyword("SeqWindowStartX", i + 1));
    }

    if (readIntDescriptor(image->descs, 
                          pilTrnGetKeyword("SeqWindowStartY", i + 1),
                          &(currentWindow->startY), 
                          image->descs->descComment) == VM_FALSE) {
      status++;
      cpl_msg_error(modName, "Keyword %s not found.", 
                  pilTrnGetKeyword("SeqWindowStartY", i + 1));
    }

    if (readIntDescriptor(image->descs, 
                          pilTrnGetKeyword("SeqWindowSizeX", i + 1),
                          &(currentWindow->nX), 
                          image->descs->descComment) == VM_FALSE) {
      status++;
      cpl_msg_error(modName, "Keyword %s not found.", 
                  pilTrnGetKeyword("SeqWindowSizeX", i + 1));
    }

    if (readIntDescriptor(image->descs, 
                          pilTrnGetKeyword("SeqWindowSizeY", i + 1),
                          &(currentWindow->nY), 
                          image->descs->descComment) == VM_FALSE) {
      status++;
      cpl_msg_error(modName, "Keyword %s not found.", 
                  pilTrnGetKeyword("SeqWindowSizeY", i + 1));
    }

   /*
    * tx and ty should contain the lowest coordinate in image
    */

    if (currentWindow->startX < tx) tx = currentWindow->startX;
    if (currentWindow->startY < ty) ty = currentWindow->startY;
  }

 /*
  * If any of the above entries were not found, abort the program.
  */

  if (status > 0) 
    return NULL;

 /*
  * Now find the intersections of the readout window with each port
  */

  cpl_msg_debug(modName, "The following regions are found:");
  cpl_msg_indent_more();
  cpl_msg_indent_more();
  for (currentPort = headPort, i = 1, k = 1; currentPort;
                                        currentPort=currentPort->next, i++) {
    currentReadOutWindow = currentPort->readOutWindow;
    cpl_msg_indent_less();
    for (currentWindow = headWindow; currentWindow;
                                       currentWindow = currentWindow->next) {
      currentReadOutWindow->startX =
        MAX(currentPort->window->startX, currentWindow->startX);
      currentReadOutWindow->startY =
        MAX(currentPort->window->startY, currentWindow->startY);
      currentReadOutWindow->nX =
        MIN(currentPort->window->startX + currentPort->window->nX,
            currentWindow->startX + currentWindow->nX)
            - currentPort->readOutWindow->startX;
      currentReadOutWindow->nY =
        MIN(currentPort->window->startY + currentPort->window->nY,
            currentWindow->startY + currentWindow->nY)
            - currentPort->readOutWindow->startY;

      if (currentReadOutWindow->nX > 0 && currentReadOutWindow->nY > 0) {

       /*
        * If the intersection is not empty, convert all start
        * coordinates to image coordinates (starting from (0,0) ).
        */

        currentReadOutWindow->startX -= tx;
        currentReadOutWindow->startY -= ty;

       /*
        * Monitoring (debug):
        */

        cpl_msg_debug(modName,
                "Window %d             : start = %4d,%-4d  npix = %4d,%-4d\n",
                 k,
                 currentReadOutWindow->startX,
                 currentReadOutWindow->startY,
                 currentReadOutWindow->nX,
                 currentReadOutWindow->nY);
        k++;

       /*
        * Create, and position to, next readout window of current port.
        */

        newReadOutWindow = newWindow();
        currentReadOutWindow->next = newReadOutWindow;
        newReadOutWindow->prev = currentReadOutWindow;
        currentReadOutWindow = newReadOutWindow;
      }
      else {
        cpl_msg_debug(modName,
                "Readout window %d,%d,%d,%d not including port %d,%d,%d,%d",
                 currentWindow->startX,
                 currentWindow->startY,
                 currentWindow->nX,
                 currentWindow->nY,
                 currentPort->window->startX,
                 currentPort->window->startY,
                 currentPort->window->nX,
                 currentPort->window->nY);
        currentReadOutWindow->next = NULL;
      }
    }
    cpl_msg_indent_more();
    if (currentReadOutWindow->prev) {
      currentReadOutWindow->prev->next = NULL;
      deleteWindow(currentReadOutWindow);
    }

   /*
    * Now convert all start coordinates to image coordinates
    * (starting from (0,0) ).
    */

    currentPort->window->startX -= tx;
    currentPort->window->startY -= ty;

    if (currentPort->prScan->nX > 0) {
      currentPort->prScan->startX -= tx;
      currentPort->prScan->startY -= ty;
    }
    else {
      currentPort->prScan->startX = 0;
      currentPort->prScan->startY = 0;
    }

    if (currentPort->ovScan->nX > 0) {
      currentPort->ovScan->startX -= tx;
      currentPort->ovScan->startY -= ty;
    }
    else {
      currentPort->ovScan->startX = 0;
      currentPort->ovScan->startY = 0;
    }

    currentPort->shiftX = tx;
    currentPort->shiftY = ty;

    cpl_msg_debug(modName,
    "in Port %d          : start = %4d,%-4d  npix = %4d,%-4d",i,
    currentPort->window->startX,currentPort->window->startY,
    currentPort->window->nX,currentPort->window->nY);
    cpl_msg_debug(modName,
    "with prescan region: start = %4d,%-4d  npix = %4d,%-4d",
    currentPort->prScan->startX,currentPort->prScan->startY,
    currentPort->prScan->nX,currentPort->prScan->nY);
    cpl_msg_debug(modName,
    "and overscan region: start = %4d,%-4d  npix = %4d,%-4d\n",
    currentPort->ovScan->startX,currentPort->ovScan->startY,
    currentPort->ovScan->nX,currentPort->ovScan->nY);
  }
  cpl_msg_indent_less();
  cpl_msg_indent_less();

  return(headPort);
}

/**
 * @memo
 *   Get total size of read out window through all ports.
 *
 * @return Total number of pixels contained in read out window.
 *
 * @param ports         List of ports.
 * @param startWindowX  (returned) Start X position of total read out window.
 * @param startWindowY  (returned) Start Y position of total read out window.
 * @param sizeWindowX   (returned) X size of total read out window.
 * @param sizeWindowY   (returned) Y size of total read out window.
 *
 * @doc
 *   Given a ports list, position and size of the whole read out
 *   window (sum of the read out windows within each port) are
 *   returned.
 *
 * @author C. Izzo
 */

int getTotalReadoutWindow(VimosPort *ports, int *startWindowX,
    int *startWindowY, int *sizeWindowX, int *sizeWindowY)
{

  VimosPort *currPort;
  int        startPortsX, startPortsY, sizePortsX, sizePortsY;
  int        endPortsX, endPortsY;

  if (!ports)
    return 0;

  startPortsX = ports->readOutWindow->startX;
  startPortsY = ports->readOutWindow->startY;
  endPortsX = ports->readOutWindow->startX + ports->readOutWindow->nX;
  endPortsY = ports->readOutWindow->startY + ports->readOutWindow->nY;

  for (currPort = ports->next; currPort; currPort = currPort->next) {

    if (startPortsX > currPort->readOutWindow->startX)
      startPortsX = currPort->readOutWindow->startX;

    if (startPortsY > currPort->readOutWindow->startY)
      startPortsY = currPort->readOutWindow->startY;

    if (endPortsX < currPort->readOutWindow->startX
                  + currPort->readOutWindow->nX)
      endPortsX = currPort->readOutWindow->startX
                + currPort->readOutWindow->nX;

    if (endPortsY < currPort->readOutWindow->startY
                  + currPort->readOutWindow->nY)
      endPortsY = currPort->readOutWindow->startY
                + currPort->readOutWindow->nY;

  }

  sizePortsX = endPortsX - startPortsX;
  sizePortsY = endPortsY - startPortsY;

  *startWindowX = startPortsX;
  *startWindowY = startPortsY;
  *sizeWindowX = sizePortsX;
  *sizeWindowY = sizePortsY;

  return sizePortsX * sizePortsY;

}


/**
 * @memo
 *   The bias level is estimated on the found overscan regions.
 *
 * @return Array of bias levels, one for each port.
 *
 * @param image     Image where the bias levels must be estimated.
 * @param port      Image port structure.
 *
 * @doc
 *   The function computes for each port the average bias from all 
 *   its available overscan regions. If no overscan region is found
 *   for a port, a null pointer is returned.
 *
 * @author C. Izzo
 */

VimosFloatArray *estimateImageBias(VimosImage *image, VimosPort *port)
{
  const char       modName[] = "estimateImageBias";
  VimosPort       *currentPort;
  VimosBool        success;
  VimosFloatArray *biasLevel;
  float           *bias;
  float            prscBiasLevel, ovscBiasLevel;
  int              sizePrsc;
  int              sizeOvsc;
  int              nPorts = 0;
  int              i = 0;

  if (!(image && port)) {
    cpl_msg_debug(modName, "NULL input(s)");
    return NULL;
  }

  for (currentPort = port; currentPort; currentPort = currentPort->next) 
    nPorts++;

  if (!(biasLevel = newFloatArray(nPorts))) {
    cpl_msg_debug(modName, "Cannot allocate output");
    return NULL;
  }

  for (currentPort = port; currentPort; currentPort = currentPort->next) {
    success = VM_FALSE;

    sizePrsc = 0;
    sizeOvsc = 0;

    if (currentPort->prScan->nX > 0) {

     /*
      * Prescan region exists - extract it and get its average
      */

      bias = extractFloatImage(image->data, image->xlen, image->ylen,
             currentPort->prScan->startX, currentPort->prScan->startY,
             currentPort->prScan->nX, currentPort->prScan->nY);

      if (!bias) {
        cpl_msg_debug(modName, "Memory allocation failure");
        return NULL;
      }

      sizePrsc = currentPort->prScan->nX * currentPort->prScan->nY;
      prscBiasLevel = computeAverageFloat(bias, sizePrsc);
      cpl_free(bias);
      success = VM_TRUE;
    }
    else {
      prscBiasLevel = 0.;
    }

    if (currentPort->ovScan->nX > 0) {

     /*
      * Overscan region exists - extract it and get its average
      */

      bias = extractFloatImage(image->data, image->xlen, image->ylen,
             currentPort->ovScan->startX, currentPort->ovScan->startY,
             currentPort->ovScan->nX, currentPort->ovScan->nY);

      if (!bias) {
        cpl_msg_debug(modName, "Memory allocation failure");
        return NULL;
      }

      sizeOvsc = currentPort->ovScan->nX * currentPort->ovScan->nY;
      ovscBiasLevel = computeAverageFloat(bias, sizeOvsc);
      cpl_free(bias);
      success = VM_TRUE;
    }
    else {
      ovscBiasLevel = 0.;
    }

    if (success) {
      biasLevel->data[i] = 
                   (prscBiasLevel * sizePrsc + ovscBiasLevel * sizeOvsc)
                   / (sizePrsc + sizeOvsc);
      i++;
    }

  }

  if (i != nPorts) {
    deleteFloatArray(biasLevel);
    return(NULL);
  }

  return(biasLevel);

}


/**
 * @memo
 *   Subtract an estimated bias level from input image.
 *
 * @return VM_TRUE on success, VM_FALSE otherwise.
 *
 * @param a    Image data.
 * @param nx   Image x size in pixel.
 * @param ny   Image y size in pixel.
 * @param port Image port structure.
 *
 * @doc
 *   The average bias level is found for each overscan of each port.
 *   Each value is subtracted from the corresponding overscan region 
 *   it was derived from, while the average bias level computed from 
 *   all overscan regions of a given port is subtracted from the port
 *   window.
 *
 * @author C. Izzo
 */

VimosBool subtractOverscan(float a[], int nx, int ny, VimosPort *port)
{
  VimosPort *currentPort;
  VimosBool  success = VM_FALSE;
  float     *bias;
  float     *portWindow;
  float      prscBiasLevel, ovscBiasLevel, biasLevel;
  int        sizePrsc;
  int        sizeOvsc;
  int        i,n;

  for (currentPort = port; currentPort; currentPort = currentPort->next) {
    sizePrsc = 0;
    sizeOvsc = 0;
    if (currentPort->prScan->nX > 0) {

     /*
      * Prescan region exists - extract it and get its average
      */

      bias = extractFloatImage(a, nx, ny,
             currentPort->prScan->startX,
             currentPort->prScan->startY,
             currentPort->prScan->nX,
             currentPort->prScan->nY);

      sizePrsc = currentPort->prScan->nX * currentPort->prScan->nY;
      prscBiasLevel = computeAverageFloat(bias, sizePrsc);

      for (i = 0; i < sizePrsc; i++) bias[i] -= prscBiasLevel;

      insertFloatImage(a, nx, ny,
             currentPort->prScan->startX,
             currentPort->prScan->startY,
             currentPort->prScan->nX,
             currentPort->prScan->nY, bias);

      cpl_free(bias);
      success = VM_TRUE;
    }
    else {
      prscBiasLevel = 0.;
    }
    if (currentPort->ovScan->nX > 0) {

     /*
      * Overscan region exists - extract it and get its average
      */

      bias = extractFloatImage(a, nx, ny,
             currentPort->ovScan->startX,
             currentPort->ovScan->startY,
             currentPort->ovScan->nX,
             currentPort->ovScan->nY);

      sizeOvsc = currentPort->ovScan->nX * currentPort->ovScan->nY;
      ovscBiasLevel = computeAverageFloat(bias, sizeOvsc);

      for (i = 0; i < sizeOvsc; i++) bias[i] -= ovscBiasLevel;

      insertFloatImage(a, nx, ny,
             currentPort->ovScan->startX,
             currentPort->ovScan->startY,
             currentPort->ovScan->nX,
             currentPort->ovScan->nY, bias);

      cpl_free(bias);
      success = VM_TRUE;
    }
    else {
      ovscBiasLevel = 0.;
    }

    if (success) {
      biasLevel = (prscBiasLevel * sizePrsc + ovscBiasLevel * sizeOvsc)
                / (sizePrsc + sizeOvsc);

      portWindow = extractFloatImage(a, nx, ny,
             currentPort->window->startX,
             currentPort->window->startY,
             currentPort->window->nX,
             currentPort->window->nY);

      n = currentPort->window->nX * currentPort->window->nY;
      for (i = 0; i < n; i++) portWindow[i] -= biasLevel;

      insertFloatImage(a, nx, ny,
             currentPort->window->startX,
             currentPort->window->startY,
             currentPort->window->nX,
             currentPort->window->nY, portWindow);

      cpl_free(portWindow);
    }
    else break;
  }
  return(success);
}


/**
 * @memo
 *   Get scan direction of a given port.
 *
 * @return 1 = the scan direction is vertical, 0 = the scan direction
 *         is horizontal.
 *
 * @param port  Input port.
 *
 * @doc
 *   The function derive the scan direction for a given port
 *   (not for a list of ports!). This is derived from the position
 *   of the prescan/overscan regions, under the assumption that
 *   they are always extensions of the readout window along the 
 *   readout direction. If neither a prescan nor an overscan region
 *   is present, the scan direction is always returned as vertical.
 *
 * @author C. Izzo
 */

int getReadoutDirection(VimosPort *port)
{
  int vertical = 1;

  if (port->prScan->nX > 0 
                           && port->window->startY == port->prScan->startY) {
    vertical = 0;
  }
  else if (port->ovScan->nX > 0 
                           && port->window->startY == port->ovScan->startY) {
    vertical = 0;
  }

  return(vertical);
}


/**
 * @memo
 *   Get the chip extension along the x and y directions.
 *
 * @return EXIT_SUCCESS or EXIT_FAILURE
 *
 * @param image     Input image
 * @param chipSizeX X chip size to be returned.
 * @param chipSizeY Y chip size to be returned.
 *
 * @doc
 *   The function simply reads the information from the image header.
 *   With an instrument consisting of more than one chip, the appropriate
 *   chip index is searched and found.
 *
 * @author C. Izzo
 */

int getChipSize(VimosImage *image, int *chipSizeX, int *chipSizeY) 
{

  const char modName[] = "getChipSize";

  char      *dscNameChipX = NULL;
  char      *dscNameChipY = NULL;
  char       comment[MAX_COMMENT_LENGTH];
  int        status = EXIT_FAILURE;
  int        i, nChips;

  dscNameChipX = cpl_strdup(pilTrnGetKeyword("CHIP1.NX"));
  if (findDescriptor(image->descs, dscNameChipX)) {
    dscNameChipY = cpl_strdup(pilTrnGetKeyword("CHIP1.NY"));
  }
  else {
    cpl_free((char *) dscNameChipX);

   /*
    * With more than one chip around, look for the sequence
    * number of the current chip.
    */

    if (readIntDescriptor(image->descs, pilTrnGetKeyword("NCHIPS"), 
                          &nChips, comment) == VM_TRUE) {
      for (i = 0; i < nChips; i++) {
        dscNameChipX = cpl_strdup(pilTrnGetKeyword("CHIPi.NX", i + 1));
        if (findDescriptor(image->descs, dscNameChipX)) {
          dscNameChipY = cpl_strdup(pilTrnGetKeyword("CHIPi.NY", i + 1));
          break;     /* Related descriptors are found */
        }
        else {
          cpl_free(dscNameChipX);
          dscNameChipX = NULL;
        }
      } 
    }
    else {
      cpl_msg_debug(modName, "Unable to read keyword %s",
                  pilTrnGetKeyword("NCHIPS"));
    }
  }

  if (readIntDescriptor(image->descs, dscNameChipX, chipSizeX, comment) 
      == VM_TRUE) {
    if (readIntDescriptor(image->descs, dscNameChipY, chipSizeY, comment)
        == VM_TRUE) {
      status = EXIT_SUCCESS;
    }
  }

  cpl_free(dscNameChipX);
  cpl_free(dscNameChipY);

  return status;

}


/**
 * @memo
 *   The RON is estimated on the found overscan regions.
 *
 * @return Array of RONs, one for each port, measured in ADU.
 *
 * @param image     Image where the RON must be estimated.
 * @param port      Image port structure.
 *
 * @doc
 *   The function computes for each port the variance from all
 *   its available overscan regions. For a given port, all the 
 *   found variances are averaged, and the square root of this
 *   average is written to an array. If no overscan region is 
 *   found for a port, a null pointer is returned.
 *
 * @author C. Izzo
 */

VimosFloatArray *estimateImageRon(VimosImage *image, VimosPort *port)
{
  const char       modName[] = "estimateImageRon";
  VimosPort       *currentPort;
  VimosBool        success;
  VimosFloatArray *ron;
  float           *bias;
  float            prscRon, ovscRon;
  int              sizePrsc;
  int              sizeOvsc;
  int              nPorts = 0;
  int              i = 0;

  if (!(image && port)) {
    cpl_msg_debug(modName, "NULL input(s)");
    return NULL;
  }

  for (currentPort = port; currentPort; currentPort = currentPort->next) 
    nPorts++;

  if (!(ron = newFloatArray(nPorts))) {
    cpl_msg_debug(modName, "Cannot allocate output");
    return NULL;
  }

  for (currentPort = port; currentPort; currentPort = currentPort->next) {
    success = VM_FALSE;

    sizePrsc = 0;
    sizeOvsc = 0;
    if (currentPort->prScan->nX > 0) {

     /*
      * Prescan region exists - extract it and get its variance
      */

      bias = extractFloatImage(image->data, image->xlen, image->ylen,
             currentPort->prScan->startX, currentPort->prScan->startY,
             currentPort->prScan->nX, currentPort->prScan->nY);

      if (!bias) {
        cpl_msg_debug(modName, "Memory allocation failure");
        return NULL;
      }

      sizePrsc = currentPort->prScan->nX * currentPort->prScan->nY;
      prscRon = computeVarianceFloat2D(bias, currentPort->prScan->nX, 
                                       currentPort->prScan->nY);

      cpl_free(bias);
      success = VM_TRUE;
    }
    else {
      prscRon = 0.;
    }

    if (currentPort->ovScan->nX > 0) {

     /*
      * Overscan region exists - extract it and get its average
      */

      bias = extractFloatImage(image->data, image->xlen, image->ylen,
             currentPort->ovScan->startX, currentPort->ovScan->startY,
             currentPort->ovScan->nX, currentPort->ovScan->nY);

      if (!bias) {
        cpl_msg_debug(modName, "Memory allocation failure");
        return NULL;
      }

      sizeOvsc = currentPort->ovScan->nX * currentPort->ovScan->nY;
      ovscRon = computeVarianceFloat2D(bias, currentPort->ovScan->startX, 
                                       currentPort->ovScan->startY);

      cpl_free(bias);
      success = VM_TRUE;
    }
    else {
      ovscRon = 0.;
    }

    if (success) {
      ron->data[i] = sqrt((prscRon * sizePrsc + ovscRon * sizeOvsc)
                   / (sizePrsc + sizeOvsc));
      i++;
    }

  }

  if (i != nPorts) {
    deleteFloatArray(ron);
    return NULL;
  }

  return ron;

}

VimosFloatArray *getImageRon(VimosImage *image)
{
  const char       modName[] = "getImageRon";
  char             comment[MAX_COMMENT_LENGTH];
  VimosFloatArray *ron;
  double           dValue;
  int              nPorts = 0;
  int              i = 0;

  if (!image) {
    cpl_msg_debug(modName, "NULL input");
    return NULL;
  }

  if ((readIntDescriptor(image->descs, pilTrnGetKeyword("NumberOfPorts"),
                         &nPorts, comment) == VM_FALSE)) {
    return NULL;
  }

  if (!(ron = newFloatArray(nPorts))) {
    cpl_msg_debug(modName, "Cannot allocate output");
    return NULL;
  }

  for (i = 0; i < nPorts; i++) {
    if (readDoubleDescriptor(image->descs, 
                             pilTrnGetKeyword("SeqReadNoise", i + 1),
                             &dValue, comment) == VM_FALSE) {
      deleteFloatArray(ron);
      return NULL;
    }
    ron->data[i] = (float)dValue;
  }

  return ron;
}
/**@}*/