File: coregistration.cc

package info (click to toggle)
doris 5.0.3~beta%2Bdfsg-16
  • links: PTS, VCS
  • area: contrib
  • in suites: bookworm
  • size: 6,932 kB
  • sloc: cpp: 43,560; python: 8,213; csh: 3,636; sh: 2,527; ansic: 649; makefile: 346; xml: 208
file content (6747 lines) | stat: -rw-r--r-- 283,811 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
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
/*
 * Copyright (c) 1999-2009 Delft University of Technology, The Netherlands
 *
 * This file is part of Doris, the Delft o-o radar interferometric software.
 *
 * Doris 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.
 *
 * Doris 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *
 */
/****************************************************************
 * $Source: /users/kampes/DEVELOP/DORIS/doris/src/RCS/coregistration.cc,v $     *
 * $Revision: 3.40 $                                            *
 * $Date: 2005/10/18 13:46:51 $                                 *
 * $Author: kampes $                                            *
 *                                                              *
 * -coarse based on orbits.                                     *
 * -coarse based on correlation with fft/in space domain.       *
 * -fine coregistration offset vector computation.              *
 * -computation coregistration parameters.                      *
 * -computation flat earth correction.                          *
 * -resampling of slave to master grid.                         *
 ****************************************************************/


#include "constants.hh"         // typedefs etc.
#include "ioroutines.hh"        // error function etc.
#include "utilities.hh"         // isodd
#include "coregistration.hh"    // header file
#include "orbitbk.hh"           // my orbit class
#include "slcimage.hh"          // my slc image class
#include "productinfo.hh"       // my 'products' class
#include "exceptions.hh"        // my exceptions class
#include "bk_baseline.hh"       // my exceptions class


#include <iomanip>              // setw
#include <cstdlib>              // system
#include <cmath>                // sqrt rint
#include <algorithm>            // max
#include <cstdio>               // some compilers, remove function

#ifdef WIN32
// Jia defined min max here, but I did this in constants.hh
//#define max _MAX
//#define min _MIN
#endif


/****************************************************************
 *    coarseporbit                                              *
 *                                                              *
 * computes translation of slave w.r.t. master                  *
 * slave(some point) = master(same point) + trans(l,p) =>       *
 *  trans = slavecoordinates - mastercoordinates                *
 * uses orbits to find coordinates of center of master          *
 *  then solves for lin,pix of these cn. for slave.             *
 *                                                              *
 * input:                                                       *
 *  -                                                           *
 * output:                                                      *
 *  -                                                           *
 *                                                              *
 *    Bert Kampes, 12-Dec-1998                                  *
 ****************************************************************/
void coarseporbit(
        const input_ell &ell,
        const slcimage  &master,
        const slcimage  &slave,
        orbit           &masterorbit,  // cannot be const for spline
        orbit           &slaveorbit,   // cannot be const for spline
        const BASELINE  &baseline)
  {
  TRACE_FUNCTION("coarseporbit (BK 12-Dec-1998)");
  const int16   MAXITER   = 10;        // maximum number of iterations
  const real8   CRITERPOS = 1e-6;      // 1micrometer
  const real8   CRITERTIM = 1e-10;     // seconds (~10-6 m)

  // ______Initial values______    :master.approxcentreoriginal.x .y .z
  // ______Window______            :master.currentwindow.linelo/hi , pixlo/hi
  // ______Time______              :master.t_azi0/N , t_range0/N

  // ______Get (approx) center pixel of current window master______
  const uint cen_lin = (master.currentwindow.linelo+master.currentwindow.linehi)/2;
  const uint cen_pix = (master.currentwindow.pixlo +master.currentwindow.pixhi) /2;
  const real8 HEI = 0.0;

  // ______ Compute x,y,z (fill P) ______
  // ______ P.x/y/z contains (converged) solution ______
  cn P;
  const int32 lp2xyziter =
    lp2xyz(cen_lin,cen_pix,ell,master,masterorbit,P,MAXITER,CRITERPOS);

  // ______Compute line,pixel for slave of this xyz______
  real8 lin,pix;
  const int32 xyz2lpiter =
    xyz2lp(lin,pix,slave,slaveorbit,P,MAXITER,CRITERTIM);

  // ______ Some extra parameters (not used, just info) ______ // BK 19-Oct-2000
  const int Bt          = Btemp(master.utc1,slave.utc1);
  // ______ Modeled quantities ______
  const real8 Bperp     = baseline.get_bperp(cen_lin,cen_pix,HEI);
  const real8 Bpar      = baseline.get_bpar(cen_lin,cen_pix,HEI);
  const real8 theta     = rad2deg(baseline.get_theta(cen_lin,cen_pix,HEI));
  const real8 inc_angle = rad2deg(baseline.get_theta_inc(cen_lin,cen_pix,HEI));
  // ______ Derived quantities ______
  const real8 B         = baseline.get_b(cen_lin,cen_pix,HEI);
  const real8 alpha     = rad2deg(baseline.get_alpha(cen_lin,cen_pix,HEI));
  const real8 Bh        = baseline.get_bhor(cen_lin,cen_pix,HEI);
  const real8 Bv        = baseline.get_bvert(cen_lin,cen_pix,HEI);

  const real8 Hamb      = baseline.get_hamb(cen_lin,cen_pix,HEI);
  const real8 orb_conv  = rad2deg(baseline.get_orb_conv(cen_lin,cen_pix,HEI));

  // ______ offset = P_slave - P_master = lin - cen_lin ______
  INFO << "Estimated translation (l,p): "
       << floor(lin-cen_lin +.5) << ", "
       << floor(pix-cen_pix +.5);
  INFO.print();

  // ______ Write to tmp files ______
  ofstream scratchlogfile("scratchlogcoarse", ios::out | ios::trunc);
  bk_assert(scratchlogfile,"coarseporbit: scratchlogcoarse",__FILE__,__LINE__);
  scratchlogfile << "\n\n*******************************************************************"
                 << "\n* COARSE_COREGISTRATION Orbits"
                 << "\n*******************************************************************"
                 << "\n(Approximate) center master (line,pixel,hei): "
                 <<  cen_lin << ", " << cen_pix << ", " << HEI
                 << "\nEllipsoid WGS84 coordinates of this pixel (x,y,z): ("
                 <<  P.x << ", " << P.y << ", " << P.z << ")"
                 << "\n(line,pixel) of these coordinates in slave: "
                 <<  lin << ", " << pix
                 << "\nEstimated translation slave w.r.t. master (l,p):"
                 <<  rint(lin-cen_lin) //round
                 << ", "
                 <<  rint(pix-cen_pix) // round
                 << "\nMaximum number of iterations: "
                 <<  MAXITER
                 << "\nCriterium for position (m): "
                 <<  CRITERPOS
                 << "\nCriterium for azimuth time (s): "
                 <<  CRITERTIM
                 << " (=~ " << CRITERTIM*7.e3 << "m)"
                 << "\nNumber of iterations conversion line,pixel to xyz: "
                 <<  lp2xyziter
                 << "\nNumber of iterations conversion xyz to line,pixel: "
                 <<  xyz2lpiter
                 << "\n*******************************************************************\n";
  scratchlogfile.close();

  // ______ give some extra info in resfile: Bperp, Bpar, Bh, Bv, Btemp ______
  ofstream scratchresfile("scratchrescoarse", ios::out | ios::trunc);
  bk_assert(scratchresfile,"coarseporbit: scratchrescoarse",__FILE__,__LINE__);
  scratchresfile.setf(ios::right, ios::adjustfield);
  scratchresfile
    << "\n\n*******************************************************************"
    << "\n*_Start_" << processcontrol[pr_i_coarse]
    << "\n*******************************************************************"
    << "\nSome info for pixel: " << cen_lin << ", " << cen_pix << " (not used):"
    << "\n  Btemp:     [days]:  "
    << setw(10)
    << setiosflags(ios::right)
    << Bt                << "      \t// Temporal baseline"
    << "\n  Bperp      [m]:     "
    << setw(10)
    << setiosflags(ios::right)
    << onedecimal(Bperp) << "      \t// Perpendicular baseline"
    << "\n  Bpar       [m]:     "
    << setw(10)
    << setiosflags(ios::right)
    << onedecimal(Bpar)  << "      \t// Parallel baseline"
    << "\n  Bh         [m]:     "
    << setw(10)
    << setiosflags(ios::right)
    << onedecimal(Bh)    << "      \t// Horizontal baseline"
    << "\n  Bv         [m]:     "
    << setw(10)
    << setiosflags(ios::right)
    << onedecimal(Bv)    << "      \t// Vertical baseline"
    << "\n  B          [m]:     "
    << setw(10)
    << setiosflags(ios::right)
    << onedecimal(B)     << "      \t// Baseline (distance between sensors)"
    << "\n  alpha      [deg]:   "
    << setw(10)
    << setiosflags(ios::right)
    << onedecimal(alpha) << "      \t// Baseline orientation"
    << "\n  theta      [deg]:   "
    << setw(10)
    << setiosflags(ios::right)
    << onedecimal(theta) << "      \t// look angle"
    << "\n  inc_angle  [deg]:   "
    << setw(10)
    << setiosflags(ios::right)
    << onedecimal(inc_angle) << "      \t// incidence angle"
    << "\n  orbitconv  [deg]:   "
    << setw(10)
    << setiosflags(ios::right)
    << orb_conv               << "      \t// angle between orbits"
    << "\n  Height_amb [m]:     "
    << setw(10)
    << setiosflags(ios::right)
    << onedecimal(Hamb)       << "      \t// height = h_amb*phase/2pi (approximately)"
    << "\n  Control point master (line,pixel,hei) = ("
    <<  cen_lin << ", " << cen_pix << ", " << HEI << ")"
    << "\n  Control point slave  (line,pixel,hei) = ("
    <<  lin << ", " << pix << ", " << HEI << ")"
    // ______ this is read/used: ______
    << "\nEstimated translation slave w.r.t. master (slave-master):"
    << "\n  Positive offsetL: slave image is to the bottom"
    << "\n  Positive offsetP: slave image is to the right"
    << "\nCoarse_orbits_translation_lines:  \t"
    <<  rint(lin-cen_lin) //round
    << "\nCoarse_orbits_translation_pixels: \t"
    <<  rint(pix-cen_pix) //round
    << "\n*******************************************************************"
    << "\n* End_" << processcontrol[pr_i_coarse] << "_NORMAL"
    << "\n*******************************************************************\n";

  // ______Tidy up______
  scratchresfile.close();
  PROGRESS.print("Coarse precise orbits coregistration finished.");
  } // END coarseporbit



/****************************************************************
 *    coarsecorrel                                              *
 *                                                              *
 * computes translation of slave w.r.t. master                  *
 * slave(some point) = master(same point) + trans(l,p) =>       *
 *  trans = slavecoordinates - mastercoordinates                *
 * uses correlation between magnitude of slave/master image     *
 *                                                              *
 * requires things on disk, input                               *
 * input:                                                       *
 *  -                                                           *
 * output:                                                      *
 *  -                                                           *
 *                                                              *
 *    Bert Kampes, 12-Dec-1998                                  *
 ****************************************************************/
void coarsecorrel(
        const input_coarsecorr &coarsecorrinput,
        const slcimage         &minfo,
        const slcimage         &sinfo)
  {
  TRACE_FUNCTION("coarsecorrel (BK 12-Dec-1998)");

  char  dummyline[ONE27];                                 // for errormessages
  //const uint Mfilelines   = minfo.currentwindow.lines();
  //const uint Sfilelines   = sinfo.currentwindow.lines();
  const uint Nwin         = coarsecorrinput.Nwin;         // number of windows
  uint NwinNANrm         = coarsecorrinput.Nwin;         ///MA number of windows w/o -999
  const int32 initoffsetL = coarsecorrinput.initoffsetL;  // initila offset
  const int32 initoffsetP = coarsecorrinput.initoffsetP;  // initila offset
  uint MasksizeL          = coarsecorrinput.MasksizeL;    // size of correlation window
  uint MasksizeP          = coarsecorrinput.MasksizeP;    // size of correlation window
  const uint AccL         = coarsecorrinput.AccL;         // accuracy of initial offset
  const uint AccP         = coarsecorrinput.AccP;         // accuracy of initial offset
  bool pointsrandom = true;
  if (specified(coarsecorrinput.ifpositions))   // filename specified
    pointsrandom = false;                       // only use those points


//  INFO("Masksize ...

// ______Only odd Masksize possible_____
  bool forceoddl = false;
  bool forceoddp = false;
  if (!isodd(MasksizeL))
    {
    forceoddl = true; 
    MasksizeL+=1;                       // force oddness
    }
  if (!isodd(MasksizeP))
    {
    forceoddp = true;
    MasksizeP+=1;                       // force oddness
    }

  // ______Corners of slave in master system______
  // ______offset = A(slave system) - A(master system)______
  const int32 sl0 = sinfo.currentwindow.linelo - initoffsetL;
  const int32 slN = sinfo.currentwindow.linehi - initoffsetL;
  const int32 sp0 = sinfo.currentwindow.pixlo  - initoffsetP;
  const int32 spN = sinfo.currentwindow.pixhi  - initoffsetP;

  // ______Corners of useful overlap master,slave in master system______
  //const uint BORDER = 20;// slightly smaller
  //const uint l0   = uint(max(int32(minfo.currentwindow.linelo),sl0) + 0.5*MasksizeL + AccL + BORDER);
  //const uint lN   = uint(min(int32(minfo.currentwindow.linehi),slN) - 0.5*MasksizeL - AccL - BORDER);
  //const uint p0   = uint(max(int32(minfo.currentwindow.pixlo),sp0)  + 0.5*MasksizeP + AccP + BORDER);
  //const uint pN   = uint(min(int32(minfo.currentwindow.pixhi),spN)  - 0.5*MasksizeP - AccP - BORDER);
  // [FvL]
  const uint BORDER = 20;// slightly smaller
  const int l0   = uint(max(int32(minfo.currentwindow.linelo),sl0) + 0.5*MasksizeL + AccL + BORDER);
  const int lN   = uint(min(int32(minfo.currentwindow.linehi),slN) - 0.5*MasksizeL - AccL - BORDER);
  const int p0   = uint(max(int32(minfo.currentwindow.pixlo),sp0)  + 0.5*MasksizeP + AccP + BORDER);
  const int pN   = uint(min(int32(minfo.currentwindow.pixhi),spN)  - 0.5*MasksizeP - AccP - BORDER);
  const window overlap(l0,lN,p0,pN);

  // ______Distribute Nwin points over window______
  // ______Centers(i,0): line, (i,1): pixel, (i,2) flagfromdisk______
  //matrix<uint> Centers;
  // [FvL] for correct folding of points outside overlap window
  matrix<int> Centers;
  if (pointsrandom)                             // no filename specified
    {
    Centers = distributepoints(real4(Nwin),overlap);
    }

  else  // read in points (center of windows) from file
    {
    Centers.resize(Nwin,3);
    ifstream ifpos;
    openfstream(ifpos,coarsecorrinput.ifpositions);
    bk_assert(ifpos,coarsecorrinput.ifpositions,__FILE__,__LINE__);
    uint ll,pp;
    for (uint i=0; i<Nwin; ++i)
      {
      ifpos >> ll >> pp;
      //Centers(i,0) = uint(ll);                  // correct for lower left corner
      //Centers(i,1) = uint(pp);                  // correct for lower left corner
      //Centers(i,2) = uint(1);                   // flag from file
      // [FvL] for correct folding of points outside overlap window
      Centers(i,0) = int(ll);                  // correct for lower left corner
      Centers(i,1) = int(pp);                  // correct for lower left corner
      Centers(i,2) = int(1);                   // flag from file
      ifpos.getline(dummyline,ONE27,'\n');              // goto next line.
      }
    ifpos.close();

    // ______ Check last point ivm. EOL after last position in file ______
    if (Centers(Nwin-1,0) == Centers(Nwin-2,0) &&
        Centers(Nwin-1,1) == Centers(Nwin-2,1))
      {
      Centers(Nwin-1,0) = uint(.5*(lN + l0) + 27);      // random
      Centers(Nwin-1,1) = uint(.5*(pN + p0) + 37);      // random
      WARNING << "CC: there should be no EOL after last point in file: "
           << coarsecorrinput.ifpositions;
      WARNING.print();
      }

    // ______ Check if points are in overlap ______
    // ______ no check for uniqueness of points ______
    bool troubleoverlap = false;
    for (uint i=0; i<Nwin; ++i)
      {
      if (Centers(i,0) < l0)
        {
        troubleoverlap=true;
        WARNING << "COARSE_CORR: point from file: "
             << i+1 << " " << Centers(i,0) << " " << Centers(i,1)
             << " outside overlap master, slave. New position: ";
        Centers(i,0) = l0 + l0-Centers(i,0);
        WARNING << Centers(i,0) << " " << Centers(i,1);
        WARNING.print();
        }
      if (Centers(i,0) > lN)
        {
        troubleoverlap=true;
        WARNING << "COARSE_CORR: point from file: "
             << i+1 << " " << Centers(i,0) << " " << Centers(i,1)
             << " outside overlap master, slave. New position: ";
        Centers(i,0) = lN + lN-Centers(i,0);
        WARNING << Centers(i,0) << " " << Centers(i,1);
        WARNING.print();
        }
      if (Centers(i,1) < p0)
        {
        troubleoverlap=true;
        WARNING << "COARSE_CORR: point from file: "
             << i+1 << " " << Centers(i,0) << " " << Centers(i,1)
             << " outside overlap master, slave. New position: ";
        Centers(i,1) = p0 + p0-Centers(i,1);
        WARNING << Centers(i,0) << " " << Centers(i,1);
        WARNING.print();
        }
      if (Centers(i,1) > pN)
        {
        troubleoverlap=true;
        WARNING << "COARSE_CORR: point from file: "
             << i+1 << " " << Centers(i,0) << " " << Centers(i,1)
             << " outside overlap master, slave. New position: ";
        Centers(i,1) = pN + pN-Centers(i,1);
        WARNING << Centers(i,0) << " " << Centers(i,1);
        WARNING.print();
        }
      }
    if (troubleoverlap) // give some additional info
      {
      WARNING << "FINE: there were points from file outside overlap (l0,lN,p0,pN): "
           << l0 << " " << lN << " " << p0 << " " << pN << ends;
      WARNING.print();
      }
    }


  // ______Compute correlation of these points______
  matrix<complr4> Mcmpl;
  matrix<complr4> Scmpl;
  matrix<real4> Master;        // amplitude master
  matrix<real4> Mask;          // amplitude slave
  matrix<real4> Correl;        // matrix with correlations
  matrix<real4> Result(Nwin,3);// R(i,0)=correlation; (i,1)=delta l; (i,2)=delta p;

  // ______ Progress messages ______
  int32 percent    = 0;
  int32 tenpercent = int32(rint(Nwin/10.0));    // round
  if (tenpercent==0) tenpercent = 1000;         // avoid error: x%0
  for (uint i=0;i<Nwin;i++)
    {
    if (i%tenpercent==0)
      {
      PROGRESS << "COARSE_CORR: " << setw(3) << percent << "%" << ends;
      PROGRESS.print();
      percent += 10;
      }

    // ______Center of window in master system______
    uint cenMwinL = Centers(i,0);
    uint cenMwinP = Centers(i,1);

    window master;                                      // size=masksize+2*acc.
    master.linelo = cenMwinL - (MasksizeL-1)/2 -AccL;   // ML is forced odd
    master.linehi = master.linelo + MasksizeL +2*AccL - 1;
    master.pixlo  = cenMwinP - (MasksizeP-1)/2 - AccP;  // MP is forced odd
    master.pixhi  = master.pixlo + MasksizeP +2*AccP - 1;

    // ______Same points in slave system (disk)______
    window slavemask;                                   // size=masksize
    uint cenSwinL    = cenMwinL + initoffsetL;          // adjust initoffset
    uint cenSwinP    = cenMwinP + initoffsetP;          // adjust initoffset
    slavemask.linelo = cenSwinL - (MasksizeL-1)/2;      // ML is forced odd
    slavemask.linehi = slavemask.linelo + MasksizeL - 1;
    slavemask.pixlo  = cenSwinP - (MasksizeP-1)/2;      // MP is forced odd
    slavemask.pixhi  = slavemask.pixlo + MasksizeP - 1;

    // ______Read windows from files, compute magnitude______
    Mcmpl  = minfo.readdata(master);
    Scmpl  = sinfo.readdata(slavemask);
    Master = magnitude(Mcmpl);
    Mask   = magnitude(Scmpl);

    // ______Compute correlation matrix and find maximum______
    Correl = correlate(Master,Mask);
    uint L, P;
//    MA: if maximum correlation is 0, which is due to NaNs, assign -999
//    so in getoffset they are disregarded as in magfft. See getoffset.
//    real4 corr = max(Correl, L, P);             // returns also L,P
    real4 corr = ( max(Correl, L, P) == 0 ) ? -999 : max(Correl, L, P) ; // returns also L,P

    uint relcenML    = master.linehi - cenMwinL;// system of matrix
    uint relcenMP    = master.pixhi  - cenMwinP;// system of matrix
    int32 reloffsetL = relcenML - L;
    int32 reloffsetP = relcenMP - P;
    int32 offsetL = reloffsetL + initoffsetL;   // estimated offset lines
    int32 offsetP = reloffsetP + initoffsetP;   // estimated offset pixels

    Result(i,0) = corr;
    Result(i,1) = offsetL;
    Result(i,2) = offsetP;
    }

  // ______Get correct offsetL, offsetP______
  int32 offsetLines  = -999;
  int32 offsetPixels = -999;
  getoffset(Result,offsetLines,offsetPixels);


  // ______Write to files______
  ofstream scratchlogfile("scratchlogcoarse2", ios::out | ios::trunc);
  bk_assert(scratchlogfile,"coarsecorrel: scratchlogcoarse2",__FILE__,__LINE__);
  scratchlogfile << "\n\n*******************************************************************"
                 << "\n* COARSE_COREGISTRATION: Correlation"
                 << "\n*******************************************************************"
                 << "\nNumber of correlation windows: \t"
                 <<  Nwin
                 << "\nCorrelation window size (l,p): \t"
                 <<  MasksizeL << ", " << MasksizeP;
    if (forceoddl) scratchlogfile << "(l forced odd) ";
    if (forceoddp) scratchlogfile << "(p forced odd)";
  scratchlogfile << "\nSearchwindow size (l,p): \t\t"
                 <<  MasksizeL + 2*AccL << ", " << MasksizeP + 2*AccP
                 << "\nNumber \tposl \tposp \toffsetl offsetp \tcorrelation\n";
  for (uint k=0; k<Nwin; k++)
    {
    // MA remove NaN valued coh windows from  Nwin, to be used in resfile
    if (  Result(k,0) == -999  ) NwinNANrm = NwinNANrm - 1;
    scratchlogfile << k << "\t" << Centers(k,0)
                        << "\t" << Centers(k,1)
                        << "\t" << Result(k,1)
                        << "\t" << Result(k,2)
                        << "\t" << Result(k,0) << endl;
     }
  scratchlogfile << "Estimated total offset (l,p): \t"
                 <<  offsetLines << ", " << offsetPixels
                 << "\n*******************************************************************\n";
  scratchlogfile.close();

  ofstream scratchresfile("scratchrescoarse2", ios::out | ios::trunc);
  bk_assert(scratchresfile,"coarsecorrel: scratchrescoarse2",__FILE__,__LINE__);
  scratchresfile << "\n\n*******************************************************************"
                 << "\n*_Start_" << processcontrol[pr_i_coarse2]
                 << "\n*******************************************************************"
                 << "\nEstimated translation slave w.r.t. master:"
                 << "\nCoarse_correlation_translation_lines: \t"
                 <<  offsetLines                                // 1 digit after point?
                 << "\nCoarse_correlation_translation_pixels: \t"
                 <<  offsetPixels                               // 1 digit after point?
                 << "\nNumber of correlation windows: \t\t" //MA informational
                 <<  NwinNANrm
                 << " of " << Nwin ;
  scratchresfile << "\n\n#     center(l,p)   coherence   offsetL   offsetP\n";
    for (uint k=0; k<Nwin; k++)
     {
      //MA remove/skip -999 values before writing resfile. For magspace.
      // All the values are kept in  doris.log
      if  ( Result(k,0) == -999 )  continue;
      scratchresfile << k  << " \t" << Centers(k,0) << " \t" << Centers(k,1) << " \t"
           << Result(k,0)  << " \t" << Result(k,1)  << " \t" << Result(k,2)  << "\n";
     }
  scratchresfile << "\n*******************************************************************"
                 //<< "\n* End_coarse_correlation:_NORMAL"
                 << "\n* End_" << processcontrol[pr_i_coarse2] << "_NORMAL"
                 << "\n*******************************************************************\n";
  scratchresfile.close();

// ______Tidy up______
  INFO << "Individually estimated translations (#, l, p, corr, offl, offp): ";
  INFO.print();
  for (uint k=0; k<Nwin; k++)
    {
    INFO << k            << " \t"
         << Centers(k,0) << " \t"
         << Centers(k,1) << " \t"
         << Result(k,0)  << " \t"
         << Result(k,1)  << " \t"
         << Result(k,2);
    INFO.print();
    }
  INFO << "Estimated translation (l,p): "
       << offsetLines << ", " << offsetPixels << ends;
  INFO.print();
  PROGRESS.print("Coarse coregistration based on correlation finished.");
  } // END coarsecorrel



/****************************************************************
 *    coarsecorrelfft                                           *
 *                                                              *
 * computes translation of slave w.r.t. master                  *
 * slave(some point) = master(same point) + trans(l,p) =>       *
 *  trans = slavecoordinates - mastercoordinates                *
 * uses correlation between magnitude of slave/master image     *
 * uses fft to compute coherence, no subtraction of mean        *
 *                                                              *
 * requires thingsa on disk, input                              *
 * input:                                                       *
 *  -                                                           *
 * output:                                                      *
 *  -                                                           *
 *                                                              *
 *    Bert Kampes, 12-Dec-1998                                  *
 ****************************************************************/
void coarsecorrelfft(
    const input_coarsecorr &coarsecorrinput,
    const slcimage         &minfo,
    const slcimage         &sinfo)
  {
  TRACE_FUNCTION("coarsecorrelfft (BK 12-Dec-1998)");
  if (coarsecorrinput.method != cc_magfft)
    {
    PRINT_ERROR("unknown method, This routine is only for cc_magfft method.")
    throw(argument_error);
    }

  char  dummyline[ONE27];// for errormessages
  //const uint Mfilelines   = minfo.currentwindow.lines();
  //const uint Sfilelines   = sinfo.currentwindow.lines();
  const uint Nwin         = coarsecorrinput.Nwin;       // number of windows
  uint NwinNANrm          = coarsecorrinput.Nwin;         ///MA number of windows w/o -999
  const int32 initoffsetL = coarsecorrinput.initoffsetL;// initial offset
  const int32 initoffsetP = coarsecorrinput.initoffsetP;// initial offset
  const uint MasksizeL    = coarsecorrinput.MasksizeL;  // size of correlation window
  const uint MasksizeP    = coarsecorrinput.MasksizeP;  // size of correlation window

  bool pointsrandom = true;
  if (specified(coarsecorrinput.ifpositions))   // filename specified
    pointsrandom = false;                       // only use these points

  // ______Only pow2 Masksize possible_____
  if (!ispower2(MasksizeL))
    {
    PRINT_ERROR("coarse correl fft: MasksizeL should be 2^n")
    throw(input_error);
    }
  if (!ispower2(MasksizeP))
    {
    PRINT_ERROR("coarse correl fft: MasksizeP should be 2^n")
    throw(input_error);
    }

  // ______Corners of slave in master system______
  // ______offset = [A](slave system) - [A](master system)______
  const int32 sl0 = sinfo.currentwindow.linelo - initoffsetL;
  const int32 slN = sinfo.currentwindow.linehi - initoffsetL;
  const int32 sp0 = sinfo.currentwindow.pixlo  - initoffsetP;
  const int32 spN = sinfo.currentwindow.pixhi  - initoffsetP;

  // ______Corners of useful overlap master,slave in master system______
  //const uint BORDER = 20;// slightly smaller
  //const uint l0   = max(int32(minfo.currentwindow.linelo),sl0) + BORDER;
  //const uint lN   = min(int32(minfo.currentwindow.linehi),slN) - MasksizeL - BORDER;
  //const uint p0   = max(int32(minfo.currentwindow.pixlo),sp0)  + BORDER;
  //const uint pN   = min(int32(minfo.currentwindow.pixhi),spN)  - MasksizeP - BORDER;
  // [FvL] for correct folding of points outside overlap window
  const uint BORDER = 20;// slightly smaller
  const int l0   = max(int32(minfo.currentwindow.linelo),sl0) + BORDER;
  const int lN   = min(int32(minfo.currentwindow.linehi),slN) - MasksizeL - BORDER;
  const int p0   = max(int32(minfo.currentwindow.pixlo),sp0)  + BORDER;
  const int pN   = min(int32(minfo.currentwindow.pixhi),spN)  - MasksizeP - BORDER;
  const window overlap(l0,lN,p0,pN);

  // ______Distribute Nwin points over window______
  // ______Minlminp(i,0): line, (i,1): pixel, (i,2) flagfromdisk______
  //matrix<uint> Minlminp;
  matrix<int> Minlminp; //[FvL]
  if (pointsrandom)                             // no filename specified
    {
    Minlminp = distributepoints(real4(Nwin),overlap);
    }
  else  // read in points (center of windows) from file
    {
    Minlminp.resize(Nwin,3);
    ifstream ifpos;
    openfstream(ifpos,coarsecorrinput.ifpositions);
    bk_assert(ifpos,coarsecorrinput.ifpositions,__FILE__,__LINE__);
    uint ll,pp;
    for (uint i=0; i<Nwin; ++i)
      {
      ifpos >> ll >> pp;
      //Minlminp(i,0) = uint(ll-0.5*MasksizeL);   // correct for lower left corner
      //Minlminp(i,1) = uint(pp-0.5*MasksizeP);   // correct for lower left corner
      //Minlminp(i,2) = uint(1);                  // flag from file
      // [FvL]
      Minlminp(i,0) = int(ll-0.5*MasksizeL);   // correct for lower left corner
      Minlminp(i,1) = int(pp-0.5*MasksizeP);   // correct for lower left corner
      Minlminp(i,2) = int(1);                  // flag from file
      ifpos.getline(dummyline,ONE27,'\n');      // goto next line.
      }
    ifpos.close();

    // ______ Check last point ivm. EOL after last position in file ______
    if (Minlminp(Nwin-1,0) == Minlminp(Nwin-2,0) &&
        Minlminp(Nwin-1,1) == Minlminp(Nwin-2,1))
      {
      Minlminp(Nwin-1,0) = uint(.5*(lN + l0) + 27);     // random
      Minlminp(Nwin-1,1) = uint(.5*(pN + p0) + 37);     // random
      }

    // ______ Check if points are in overlap ______
    // ______ no check for uniqueness of points ______
    bool troubleoverlap = false;
    for (uint i=0; i<Nwin; ++i)
      {
      if (Minlminp(i,0) < l0)
        {
        troubleoverlap=true;
        WARNING << "COARSECORR: point from file: "
             << i+1 << " " << Minlminp(i,0) +.5*MasksizeL << " "
             << Minlminp(i,1) +.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,0) = l0 + l0-Minlminp(i,0);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      if (Minlminp(i,0) > lN)
        {
        troubleoverlap=true;
        WARNING << "COARSECORR: point from file: "
             << i+1 << " " << Minlminp(i,0) +.5*MasksizeL << " "
             << Minlminp(i,1) +.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,0) = lN + lN-Minlminp(i,0);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      if (Minlminp(i,1) < p0)
        {
        troubleoverlap=true;
        WARNING << "COARSECORR: point from file: "
             << i+1 << " " << Minlminp(i,0) +.5*MasksizeL << " "
             << Minlminp(i,1) +.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,1) = p0 + p0-Minlminp(i,1);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      if (Minlminp(i,1) > pN)
        {
        troubleoverlap=true;
        WARNING << "COARSECORR: point from file: "
             << i+1 << " " << Minlminp(i,0) + 0.5*MasksizeL << " "
             << Minlminp(i,1) + 0.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,1) = pN + pN-Minlminp(i,1);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      }
    if (troubleoverlap) // give some additional info
      {
      WARNING << "COARSECORR: point in input file outside overlap (l0,lN,p0,pN): "
           << l0 << " " << lN << " " << p0 << " " << pN;
      WARNING.print();
      }
    }

  // ______Compute coherence of these points______
  matrix<complr4> Master;
  matrix<complr4> Mask;
  matrix<real4>   Result(Nwin,3);               // R(i,0):delta l;
                                                //  R(i,1):delta p; R(i,2):correl
  // ______ Progress messages ______
  int32 percent    = 0;
  int32 tenpercent = int32(rint(Nwin/10.0));   // round
  if (tenpercent==0) tenpercent = 1000;         // avoid error: x%0
  for (uint i=0; i<Nwin; ++i)
    {
    if (i%tenpercent==0)
      {
      PROGRESS << "COARSE_CORR: " << setw(3) << percent << "%";
      PROGRESS.print();
      percent += 10;
      }

    // ______Minlminp (lower left corners) of window in master system______
    const uint minMwinL = Minlminp(i,0);
    const uint minMwinP = Minlminp(i,1);
    DEBUG.print(" ");
    DEBUG << "Window: " << i << " [" << minMwinL << ", " << minMwinP << "]";
    DEBUG.print();
    window master(minMwinL, minMwinL+MasksizeL-1,
                  minMwinP, minMwinP+MasksizeP-1);// size=masksize
    // ______Same points in slave system (disk)______
    window mask(minMwinL+initoffsetL,
                minMwinL+initoffsetL+MasksizeL-1,
                minMwinP+initoffsetP,
                minMwinP+initoffsetP+MasksizeP-1);

    // ______Read windows from files______
    Master = minfo.readdata(master);
    Mask   = sinfo.readdata(mask);

    // ______ Coherence/max correlation ______
    real4 offsetL, offsetP;
    //const real4 coheren = corrfft(absMaster,absMask,offsetL,offsetP);
    //const real4 coheren = coherencefft(Master, Mask,
    //  1, MasksizeL/2, MasksizeP/2, //do not ovs, search full matrix for max
    //  offsetL,offsetP);// returned
    const real4 coheren = crosscorrelate(Master, Mask,
      1, MasksizeL/2, MasksizeP/2, //do not ovs, search full matrix for max
      offsetL,offsetP);// returned
    DEBUG << "Offset between chips (l,p)    = " << offsetL << ", " << offsetP;
    DEBUG.print();

    // ______ Store result of this patch ______
    Result(i,0) = coheren;
    Result(i,1) = initoffsetL + offsetL;// total estimated offset
    Result(i,2) = initoffsetP + offsetP;// total estimated offset
    DEBUG << "Offset between images on disk = " << Result(i,1) << ", "
          << Result(i,2) << " (corr=" << coheren << ")";
    DEBUG.print();
    } // for nwin

  // ______ Position approx. with respect to center of window ______
  // ______ correct position array for center instead of lower left ______
  for (uint i=0; i<Nwin; i++)
    {
    Minlminp(i,0) += uint(0.5*MasksizeL);
    Minlminp(i,1) += uint(0.5*MasksizeP);
    }

  // ______ Get good general estimate for offsetL, offsetP ______
  int32 offsetLines  = -999;
  int32 offsetPixels = -999;
  
  //MCC
  //MCC instead of one offset output a simple polynomial
  int32 initNobs = Result.lines();  //Nof observations
  int32 Nobs =0;
  // select first the values with coherence higher than thCoh
  matrix<int32> indHigh(initNobs,1);
  real8 thCoh = 0.2;
  
  //get number of Obs above a threshold
  for (uint k=0; k<initNobs; k++)
    {
      //INFO<<real8(Result(k,0));
     // INFO.print();
      if (real8(Result(k,0)) >thCoh)
      {
         // INFO<<"Good";
         // INFO<<real8(Result(k,0));

     // INFO.print();

          indHigh(k,0)=k;
          Nobs++;
      }
  }
  //righ hand side (a.k.a xhat) for Lines and pixels
  matrix<real8>rhsL(2,1);
  matrix<real8>rhsP(2,1);

  //the means are used to calculate the value of the linear poly at the mean line and pixel
  uint32 meanP = 0; //mean PX number
  uint32 meanL = 0;//mean line number
  
  //if there are not values above the coehrence then used the iunitial offsets e.g., based on orbits
if (Nobs<1)
{
   
    offsetLines  = initoffsetL;
    offsetPixels = initoffsetP;
    rhsL(0,0)    = 0;
    rhsL(1,0)    = offsetLines;
    rhsP(0,0)    = 0;
    rhsP(1,0)    = offsetPixels;
  
}
  //if there are not too enough to calculate the poly then used the traditional "weighted mean" method 
else if (Nobs<10)
{
   getoffset(Result,offsetLines,offsetPixels);
    rhsL(0,0)    = 0;
    rhsL(1,0)    = offsetLines;
    rhsP(0,0)    = 0;
    rhsP(1,0)    = offsetPixels;
  
}
  // do estimations using BLUE
else
{
    //To exot the while loop which is used to remove outliers
   bool flagExit = false;
    
  matrix<real8> yL(Nobs,1);                   // observation
  matrix<real8> yP(Nobs,1);                   // observation
  matrix<real8> AL(Nobs,2);                 // designmatrix
  matrix<real8> AP(Nobs,2);                 // designmatrix
  matrix<real8> Qy_1(Nobs,1);            // diagonal covariance matrix defined as vector to save memory
  matrix<uint32> indeces(Nobs,1);
  
    //While loop is perfomed until the maximum residual are very small or not enough obs
 while (Nobs>9 &  flagExit != true)
 {INFO << "Nobs " << Nobs;
  INFO.print();
  //down there we remove the worst obs, then we need to resize the matrices
  yL.resize(Nobs,1);
  yP.resize(Nobs,1);
  AL.resize(Nobs,2);
  AP.resize(Nobs,2);
  Qy_1.resize(Nobs,1);
  indeces.resize(Nobs,1);
  uint32 newK =0;

  // select values with good coherence
  for (uint k=0; k<initNobs; k++)
    {
     if (real8(Result(k,0) ) >thCoh)
     {
      Qy_1(newK,0)= real8(Result(k,0) ) ;
      yL(newK,0) = real8(Result(k,1) ) ;
      yP(newK,0) = real8(Result(k,2)  );

      AL(newK,0) = real8(Minlminp(k,0) );
      AL(newK,1) = 1  ;

      AP(newK,0) = real8(Minlminp(k,1)  ) ;
      AP(newK,1) = 1  ;
      meanP = meanP + uint32(Minlminp(k,1)  ) ;
      meanL = meanL + uint32(Minlminp(k,0)  ) ;
      indeces(newK,0) = k;
      newK++;
     }
    }
  
  INFO << "Nof new Obs : " << newK;
  INFO.print();
  
  Qy_1 = Qy_1 / mean(Qy_1);// normalize weights (for tests!)
  meanP = meanP/newK;
  meanL = meanL/newK;
  //
  //matrix<real8>rhsL(2,1);
  //getLS(yL,AL,Qy_1,xhat_rhsL);
  
  //LS Qx_hat for lines and pixels
  matrix<real8> Qx_hat_L    = matTxmat(AL,diagxmat(Qy_1,AL));
  matrix<real8> Qx_hat_P    = matTxmat(AP,diagxmat(Qy_1,AP));
 
   //xhat for lines and pixels, still it needs to be multiplied times inverse of Qxhat, see below
   rhsL = matTxmat(AL,diagxmat(Qy_1,yL));
   rhsP = matTxmat(AP,diagxmat(Qy_1,yP));
    
    // ______Compute solution______
    choles(Qx_hat_L);             // Cholesky factorisation normalmatrix
    choles(Qx_hat_P);             // Cholesky factorisation normalmatrix

    // final solution
    solvechol(Qx_hat_L,rhsL);     // Solution unknowns in rhs
    solvechol(Qx_hat_P,rhsP);     // Solution unknowns in rhs

    // estimation of residuals and removal of ouliers
    matrix<real8> yL_hat        = AL * rhsL;
    matrix<real8> yP_hat        = AP * rhsP;
    matrix<real8> eL_hat      = yL - yL_hat;
    matrix<real8> eP_hat      = yP - yP_hat;
    real4 max_eL =0;
    real4 max_eP =0;
    uint32 indMaxL =0;
    uint32 indMaxP =0;
  
// looks for the obs which has whose residual norm is maximum, for both lines and pixels
    for (uint32 k=0; k<Nobs;k++)
    {      
        if (sqrt(eL_hat(k,0)*eL_hat(k,0)) >max_eL)
        {
        max_eL  = sqrt(eL_hat(k,0)*eL_hat(k,0));
        indMaxL = k;
    
        }
        if ( sqrt(eP_hat(k,0)*eP_hat(k,0))>max_eP)
        {
        max_eP=sqrt(eP_hat(k,0)*eP_hat(k,0));
        indMaxP =k;
   
        } 
    }
    
     INFO<< "max_eL : " <<  max_eL;
     INFO<< ", max_eP : " <<  max_eP;
     INFO.print();
     
     //if residuals are small then exit
    if (max_eL <3.0 && max_eP<3.0)
    {
        INFO<<"exiting estimation loop";
        INFO.print();
        flagExit = true;
        break;
    }
    else
    {
       INFO<<"removing obs " <<indeces(indMaxL,0) <<", and obs "<< indeces(indMaxP,0) << ", offset L: " 
           << Result(indeces(indMaxL,0),1)<<", offset P: " << Result(indeces(indMaxP,0),2);
       INFO.print();
       //remove residuals by setting its coherence to zero
       Result(indeces(indMaxL,0),0)=0;
       Result(indeces(indMaxP,0),0)=0;
       //update the number of observations
       if (indMaxP!=indMaxL)
        Nobs -=2;
       else
        Nobs--;    
    }
    

   }//end while Nobs>10
    offsetLines  = int32(meanL*rhsL(0,0)) +  int32(rhsL(1,0))   ;
    offsetPixels =  int32(meanP*rhsP(0,0)) + int32( rhsP(1,0))  ;
}//else if Nof<10
    //MCC
  // ______ Write to files ______
  ofstream scratchlogfile("scratchlogcoarse2", ios::out | ios::trunc);
  bk_assert(scratchlogfile,"coarsecorrelfft: scratchlogcoarse2",__FILE__,__LINE__);
  scratchlogfile << "\n\n*******************************************************************"
                 << "\n* COARSE_COREGISTRATION: Correlation"
                 << "\n*******************************************************************"
                 << "\nNumber of correlation windows: \t"
                 <<  Nwin
                 << "\nwindow size (l,p):             \t"
                 <<  MasksizeL << ", " << MasksizeP
                 << "\n\nNumber \tposL \tposP \toffsetL offsetP\tcorrelation\n";
  for (uint k=0; k<Nwin; k++)
    {
    // MA remove NaN valued coh windows from  Nwin, to be used in resfile
    if (  Result(k,0) == -999  ) NwinNANrm = NwinNANrm - 1;
    scratchlogfile << k << "\t" << Minlminp(k,0)
                        << "\t" << Minlminp(k,1)
                        << "\t" << Result(k,1)
                        << "\t" << Result(k,2)
                        << "\t" << Result(k,0) << endl;
     }
  scratchlogfile << "Estimated total offset (l,p): \t"
                 <<  offsetLines << ", " << offsetPixels
                 << "\nCoherence -999 values are disregarded in the analysis." //MA
                 << "\n*******************************************************************\n";
  scratchlogfile.close();

  ofstream scratchresfile("scratchrescoarse2", ios::out | ios::trunc);
  bk_assert(scratchresfile,"coarsecorrelfft: scratchrescoarse2",__FILE__,__LINE__);
  scratchresfile << "\n\n*******************************************************************"
                 << "\n*_Start_" << processcontrol[pr_i_coarse2]
                 << "\n*******************************************************************"
                 << "\nEstimated translation slave w.r.t. master:"
                 << "\nCoarse_correlation_translation_lines: \t"
                 <<  offsetLines                        // 1 digit after point?
                 << "\nCoarse_correlation_translation_pixels: \t"
                 <<  offsetPixels                      // 1 digit after point?
                 << "\nSlope_CoarseCorr_lines: \t\t" //MCC
                 <<  rhsL(0,0)
                 << "\nInitial_Offset_CoarseCorr_lines: \t"
                 <<   rhsL(1,0)                             // MCC
                 << "\nSlope_CoarseCorr_pixels: \t\t" //MCC
                 <<  rhsP(0,0) 
                 <<  "\nInitial_Offset_CoarseCorr_pixels: \t"
                 <<   rhsP(1,0)                             // MCC
                 << "\nNumber of correlation windows: \t\t" //MA informational
                 <<  NwinNANrm
                 << " of " << Nwin ;
  scratchresfile << "\n\n#     center(l,p)   coherence   offsetL   offsetP\n";
    for (uint k=0; k<Nwin; k++)
     {
      //MA remove/skip NaN -999 values before writing resfile. For magfft.
      // All the values are kept in  doris.log
      if (  Result(k,0) == -999 ) continue;
      scratchresfile << k  << " \t" << Minlminp(k,0) << " \t" << Minlminp(k,1) << " \t"
           << Result(k,0)  << " \t" << Result(k,1)  << " \t" << Result(k,2)  << "\n";
     }
  scratchresfile << "\n*******************************************************************"
                 //<< "\n* End_coarse_correlation:_NORMAL"
                 << "\n* End_" << processcontrol[pr_i_coarse2] << "_NORMAL"
                 << "\n*******************************************************************\n";

// ______Tidy up______
  scratchresfile.close();
  INFO << "Individual estimated translations (#, l, p, corr, offl, offp):";
  INFO.print();
  for (uint k=0; k<Nwin; k++)
    {
    INFO << k             << " \t"
         << Minlminp(k,0) << " \t"
         << Minlminp(k,1) << " \t"
         << Result(k,0)   << " \t"
         << Result(k,1)   << " \t"
         << Result(k,2)   << " \t";
    INFO.print();
    }

  INFO << "Estimated overall translation (l,p): "
       << offsetLines << ", " << offsetPixels;
  INFO.print();
  INFO << "Coherence -999 values are disregarded in the analysis."; //MA see getoffset
  INFO.print();
  PROGRESS.print("Coarse coregistration based on correlation finished.");
  } // END coarsecorrelfft


/****************************************************************
 *    mtiming_correl (coarse (ok) + fine ?)                     *
 *                                                              *
 * computes translation of  master w.r.t. DEM (sim. amplitude)  *
 * master(some point) = simamp (same point) + trans(l,p) =>     *
 *  trans = mastercoordinates - simamp.coordinates              *
 * uses correlation between magnitude of master and simamp      *
 * image to estimate overall shift.                             *
 *                                                              *
 * requires things on disk, input                               *
 * input:                                                       *
 *  - input settings,                                           *
 *  - master info                                               *
 *  - simulated amplitude info                                  *
 * output:                                                      *
 *  - coarse offsets between dem and the master                 *
 *                                                              *
 *    Bert Kampes, 12-Dec-1998  (coarsecorr)                    *
 *    Batuhan Osmanoglu, 30-JUL-2007 (demcorr for phase)        *
 *    Mahmut Arikan, 12-Nov-2008                                *
 ****************************************************************/
void mtiming_correl(
        const input_mtiming   &mtiminginput,
        const slcimage           &minfo,
        const productinfo        &sinfo)     // simamp
  {
  TRACE_FUNCTION("mtiming_correl (MA,BO 12-Nov-2008)");

  const string STEP="MTIMING: ";                          // step name
  char  dummyline[ONE27];                                 // for errormessages
  //const uint Mfilelines   = minfo.currentwindow.lines();
  //const uint Sfilelines   = sinfo.currentwindow.lines();
  const uint Nwin           = mtiminginput.Nwin;         // number of windows
  uint NwinNANrm            = mtiminginput.Nwin;         ///MA number of windows w/o -999
  const int32 initoffsetL   = mtiminginput.initoffsetL;  // initial offset not nec for simamp
  const int32 initoffsetP   = mtiminginput.initoffsetP;  // initial offset
  uint MasksizeL            = mtiminginput.MasksizeL;    // size of correlation window
  uint MasksizeP            = mtiminginput.MasksizeP;    // size of correlation window
  const uint AccL           = mtiminginput.AccL;         // accuracy of initial offset
  const uint AccP           = mtiminginput.AccP;         // accuracy of initial offset
  bool pointsrandom = true;
  if (specified(mtiminginput.ifpositions))   // filename specified
    pointsrandom = false;                       // only use these points


//  INFO("Masksize ...

// ______Only odd Masksize possible_____
  bool forceoddl = false;
  bool forceoddp = false;
  if (!isodd(MasksizeL))
    {
    forceoddl = true;
    MasksizeL+=1;                       // force oddness
    }
  if (!isodd(MasksizeP))
    {
    forceoddp = true;
    MasksizeP+=1;                       // force oddness
    }

  // ______Corners of simamp(dem) in master system______
  // ______offset = A(master system) - A(slave system)______
  const int32 sl0 = sinfo.win.linelo - initoffsetL; // [MA] sim. ampl. image extend should be
  const int32 slN = sinfo.win.linehi - initoffsetL; // the same as master crop extend. Kept for the convience.
  const int32 sp0 = sinfo.win.pixlo  - initoffsetP;
  const int32 spN = sinfo.win.pixhi  - initoffsetP;
  DEBUG << "slave l0: " << sl0 << " slN " << slN << " sp0 " << sp0 << " spN " << spN;
  DEBUG.print();

  // ______Corners of useful overlap master,slave in master system______
  //const uint BORDER = 20;// slightly smaller
  //const uint l0   = uint(max(int32(minfo.currentwindow.linelo),sl0) + 0.5*MasksizeL + AccL + BORDER);
  //const uint lN   = uint(min(int32(minfo.currentwindow.linehi),slN) - 0.5*MasksizeL - AccL - BORDER);
  //const uint p0   = uint(max(int32(minfo.currentwindow.pixlo),sp0)  + 0.5*MasksizeP + AccP + BORDER);
  //const uint pN   = uint(min(int32(minfo.currentwindow.pixhi),spN)  - 0.5*MasksizeP - AccP - BORDER);
  // [FvL]
  const uint BORDER = 20;// slightly smaller
  const int l0   = uint(max(int32(minfo.currentwindow.linelo),sl0) + 0.5*MasksizeL + AccL + BORDER);
  const int lN   = uint(min(int32(minfo.currentwindow.linehi),slN) - 0.5*MasksizeL - AccL - BORDER);
  const int p0   = uint(max(int32(minfo.currentwindow.pixlo),sp0)  + 0.5*MasksizeP + AccP + BORDER);
  const int pN   = uint(min(int32(minfo.currentwindow.pixhi),spN)  - 0.5*MasksizeP - AccP - BORDER);

/*
  // ______Check masksize against height and width of the crop______
  if( int32(MasksizeL) > int32(lN-l0) || int32(MasksizeP) > int32(pN-p0) )
    {
     ERROR << "MTE: Impossible to continue! Masksize larger than the overlapping crop width or height. Please check.";
     ERROR.print();
     ERROR << "MTE: MasksizeL [" << MasksizeL << "] > crop height [" << int32(lN-l0) << "] ?";
     ERROR.print();
     ERROR << "MTE: MasksizeP [" << MasksizeP << "] >  crop width [" << int32(pN-p0) << "] ?";
     ERROR.print();
    throw(input_error) ;
    }
*/
  DEBUG << "mastercurrentwinl0: " << minfo.currentwindow.linelo << " lN " << minfo.currentwindow.linehi << " p0 " << minfo.currentwindow.pixlo << " pN " << minfo.currentwindow.pixhi;
  DEBUG.print();
  DEBUG << "         master l0: " << l0 << " lN " << lN << " p0 " << p0 << " pN " << pN;
  DEBUG.print();
  const window overlap(l0,lN,p0,pN);

  DEBUG << "overlap l0: " << l0 << " lN " << lN << " p0 " << p0 << " pN " << pN;
  DEBUG.print();

  // ______Distribute Nwin points over window______
  // ______Centers(i,0): line, (i,1): pixel, (i,2) flagfromdisk______
  //matrix<uint> Centers; [FvL]
  matrix<int> Centers;
  if (pointsrandom)                             // no filename specified
    {
    Centers = distributepoints(real4(Nwin),overlap);
    }

  else  // read in points (center of windows) from file
    {
    Centers.resize(Nwin,3);
    ifstream ifpos;
    openfstream(ifpos,mtiminginput.ifpositions);
    bk_assert(ifpos,mtiminginput.ifpositions,__FILE__,__LINE__);
    uint ll,pp;
    for (uint i=0; i<Nwin; ++i)
      {
       
      ifpos >> ll >> pp;
      //Centers(i,0) = uint(ll);                  // correct for lower left corner
      //Centers(i,1) = uint(pp);                  // correct for lower left corner
      //Centers(i,2) = uint(1);                   // flag from file
      // [FvL]
      Centers(i,0) = int(ll);                  // correct for lower left corner
      Centers(i,1) = int(pp);                  // correct for lower left corner
      Centers(i,2) = int(1);                   // flag from file
      ifpos.getline(dummyline,ONE27,'\n');              // goto next line.
      }
    ifpos.close();

    // ______ Check last point ivm. EOL after last position in file ______
    if (Centers(Nwin-1,0) == Centers(Nwin-2,0) &&
        Centers(Nwin-1,1) == Centers(Nwin-2,1))
      {
      Centers(Nwin-1,0) = uint(.5*(lN + l0) + 27);      // random
      Centers(Nwin-1,1) = uint(.5*(pN + p0) + 37);      // random
      WARNING << "MTE: there should be no EOL after last point in file: "
           << mtiminginput.ifpositions;
      WARNING.print();
      }

    // ______ Check if points are in overlap ______
    // ______ no check for uniqueness of points ______
    bool troubleoverlap = false;
    for (uint i=0; i<Nwin; ++i)
      {
      if (Centers(i,0) < l0)
        {
        troubleoverlap=true;
        WARNING << STEP << "point from file: "
             << i+1 << " " << Centers(i,0) << " " << Centers(i,1)
             << " outside overlap master, slave. New position: ";
        Centers(i,0) = l0 + l0-Centers(i,0);
        WARNING << Centers(i,0) << " " << Centers(i,1);
        WARNING.print();
        }
      if (Centers(i,0) > lN)
        {
        troubleoverlap=true;
        WARNING << STEP << "point from file: "
             << i+1 << " " << Centers(i,0) << " " << Centers(i,1)
             << " outside overlap master, slave. New position: ";
        Centers(i,0) = lN + lN-Centers(i,0);
        WARNING << Centers(i,0) << " " << Centers(i,1);
        WARNING.print();
        }
      if (Centers(i,1) < p0)
        {
        troubleoverlap=true;
        WARNING << STEP << "point from file: "
             << i+1 << " " << Centers(i,0) << " " << Centers(i,1)
             << " outside overlap master, slave. New position: ";
        Centers(i,1) = p0 + p0-Centers(i,1);
        WARNING << Centers(i,0) << " " << Centers(i,1);
        WARNING.print();
        }
      if (Centers(i,1) > pN)
        {
        troubleoverlap=true;
        WARNING << STEP << "point from file: "
             << i+1 << " " << Centers(i,0) << " "
             << Centers(i,1)
             << " outside overlap master, slave. New position: ";
        Centers(i,1) = pN + pN-Centers(i,1);
        WARNING << Centers(i,0) << " " << Centers(i,1);
        WARNING.print();
        }
      }
    if (troubleoverlap) // give some additional info
      {
      WARNING << STEP << "there were points in input file which lie outside overlap (l0,lN,p0,pN): "
           << l0 << " " << lN << " " << p0 << " " << pN << ends;
      WARNING.print();
      }
    }

  // ______Compute correlation of these points______
  matrix<complr4> Mcmpl;        // Master complex image
  matrix<real4> Sampl;          // Simulated amplitude
  matrix<real4> mMag;           // amplitude master
  matrix<real4> Correl;         // matrix with correlations
  matrix<real4> Result(Nwin,3); // R(i,0)=correlation; (i,1)=delta l; (i,2)=delta p;

  // ______ Progress messages ______
  int32 percent    = 0;
  int32 tenpercent = int32(rint(Nwin/10.0));    // round
  if (tenpercent==0) tenpercent = 1000;         // avoid error: x%0
  for (uint i=0; i<Nwin; ++i)
    {
    if (i%tenpercent==0)
      {
      PROGRESS << STEP << setw(3) << percent << "%" << ends;
      PROGRESS.print();
      percent += 10;
      }

    // ______Center of window in master system______
     uint cenMwinL = Centers(i,0);
     uint cenMwinP = Centers(i,1);

    DEBUG.print(" ");
    DEBUG << "Window(cen): " << i << " [" << cenMwinL << ", " << cenMwinP << "]";
    DEBUG.print();

    window mwin;                                      // big patch: size=masksize+2*acc.
    mwin.linelo = cenMwinL - (MasksizeL-1)/2 -AccL;   // ML is forced odd
    mwin.linehi = mwin.linelo + MasksizeL +2*AccL - 1;
    mwin.pixlo  = cenMwinP - (MasksizeP-1)/2 - AccP;  // MP is forced odd
    mwin.pixhi  = mwin.pixlo + MasksizeP +2*AccP - 1;

  // Products actually only hold data within the window.
  // Therefore we need to convert back to file's(x,y) before reading data.
  // Batu 2007 08 01
  // uint cenSwinL    = cenMwinL + initoffsetL - sinfo.win.linelo +1 ;          // adjust initoffset
  // [MA] this is fixed in products::readr4
    // ______Same points in slave system (disk)______
    window swin;                                   // small patch: size=masksize
    uint cenSwinL    = cenMwinL + initoffsetL;          // adjust initoffset
    uint cenSwinP    = cenMwinP + initoffsetP;          // adjust initoffset
    swin.linelo = cenSwinL - (MasksizeL-1)/2;      // ML is forced odd
    swin.linehi = swin.linelo + MasksizeL - 1;
    swin.pixlo  = cenSwinP - (MasksizeP-1)/2;      // MP is forced odd
    swin.pixhi  = swin.pixlo + MasksizeP - 1;
//    DEBUG << "   cenSwinL " << cenSwinL << " cenSwinP " << cenSwinL;
//    DEBUG.print();
//    DEBUG << "sl0 " << swin.linelo << " slN " << swin.linehi  << " sp0 " << swin.pixlo << " spN " << swin.pixhi;
//    DEBUG.print();

    // ______Read windows from files, compute magnitude______
    // Sampl  = sinfo.readdatar4(master); // readfile(Sampl,master,numberoflatpixels?,winfromfile?,zerooffset)
    Mcmpl  = minfo.readdata(swin);      // small patch
    Sampl  = sinfo.readdatar4(mwin);       // big   patch
    mMag   = magnitude(Mcmpl);
    matrix<real4> &sMask = mMag ;           // amplitude small patch from master that shifts over
    matrix<real4> &mMask = Sampl ;          // amplitude big   patch from simamp

    // ______Compute correlation matrix and find maximum______
    //#Correl = correlate(Master,Mask);
    Correl = correlate(mMask,sMask);   // correlate(simamp,masteramp)
    uint L, P;
//    MA: if maximum correlation is 0, which is due to NaNs, assign -999
//    so in getoffset they are disregarded.
//    real4 corr = max(Correl, L, P);             // returns also L,P
    real4 corr = ( max(Correl, L, P) == 0 ) ? -999 : max(Correl, L, P) ; // returns also L,P

    uint relcenML    = mwin.linehi - cenMwinL;// system of matrix
    uint relcenMP    = mwin.pixhi  - cenMwinP;// system of matrix
    int32 reloffsetL = relcenML - L;
    int32 reloffsetP = relcenMP - P;
    DEBUG << "Offset between chips (l,p)    = " << reloffsetL << ", " << reloffsetP;
    DEBUG.print();

    // ______ Store result of this patch ______
    Result(i,0) = corr;
    Result(i,1) = initoffsetL + reloffsetL; // total estimated offset lines
    Result(i,2) = initoffsetP + reloffsetP; // total estimated offset pixels
    DEBUG << "Offset between images on disk = " << Result(i,1) << ", "
          << Result(i,2) << " (corr=" << corr << ")";
    DEBUG.print();
    } // for nwin

  // ______ Get good general estimate for offsetL, offsetP ______
  int32 offsetLines  = -999; // NaN
  int32 offsetPixels = -999;
  //getoffset(Result,offsetLines,offsetPixels);   // getoffsets based on Mean
  getmodeoffset(Result,offsetLines,offsetPixels); // [MA] max occurrence


  // ______ Convert offsets to seconds and write  master time offset to res file ______
  // using overall coarse offsets determing master timing error

  // ______ Initialize Variables ______
  real8 masterAztime  = -999;
  real8 masterRatime  = -999;

  // ______ Compute Time ______
  // minus sign is due to the offsets being reference to DEM (offset = master-dem)
  offsets2timing(minfo, -offsetLines, -offsetPixels, masterAztime, masterRatime); // using overall offsets to
                                                                                  // determine master timing error

  INFO << "Estimated master azimuth timing error [sec]: " << masterAztime << " sec.";
  INFO.print();
  INFO << "Estimated master range timing error   [sec]: " << masterRatime << " sec.";
  INFO.print();

  // azimuth and range time are later updated at proccess.cc
  // ______ End of conversion offset to timing errors______

  // ______ Write to files ______
  ofstream scratchlogfile("scratchlogmtiming", ios::out | ios::trunc);
  bk_assert(scratchlogfile,"mtiming_correl: scratchlogmtiming",__FILE__,__LINE__);
  scratchlogfile << "\n\n*******************************************************************"
                 << "\n* MTIMING_CORRELATION: Offset Table"
                 << "\n*******************************************************************"
                 << "\nCorrelation method: \t\t" << " magspace"                       // [MA] informational
                 << "\nNumber of correlation windows: \t"
                 <<  Nwin
                 << "\nCorrelation window size (l,p): \t"
                 <<  MasksizeL << ", " << MasksizeP;
    if (forceoddl) scratchlogfile << " (l forced odd)";
    if (forceoddp) scratchlogfile << " (p forced odd)";
  scratchlogfile << "\nSearchwindow size (l,p): \t\t"
                 <<  MasksizeL + 2*AccL << ", " << MasksizeP + 2*AccP
                 << "\nNumber \tposl \tposp \toffsetl offsetp \tcorrelation\n";
  for (uint k=0; k<Nwin; k++)
    {
    // MA remove NaN valued coh windows from  Nwin, to be used in resfile
    if (  Result(k,0) == -999  ) NwinNANrm = NwinNANrm - 1;
    scratchlogfile << k << "\t" << Centers(k,0)
                        << "\t" << Centers(k,1)
                        << "\t" << Result(k,1)
                        << "\t" << Result(k,2)
                        << "\t" << Result(k,0) << endl;
     }
  scratchlogfile << "Estimated total offset (l,p): \t"
                 <<  offsetLines << ", " << offsetPixels
                 << "\nCoherence NaN values are disregarded in the analysis." //MA
                 << "\n*******************************************************************\n";
  scratchlogfile.close();

  ofstream scratchresfile("scratchresmtiming", ios::out | ios::trunc);
  bk_assert(scratchresfile,"mtiming_correl: scratchresmtiming",__FILE__,__LINE__);
  scratchresfile << "\n\n*******************************************************************"
                 << "\n*_Start_" << processcontrol[pr_m_mtiming] << " " << ""
                 << "\n*******************************************************************"
                 << "\nCorrelation method \t\t\t: \t" << "magspace "               // mtiminginput.method == 22
                 << "(" << MasksizeL + 2*AccL << "," << MasksizeP + 2*AccP << ")"
                 << "\nNumber of correlation windows used \t: \t"                     //MA informational
                 <<  NwinNANrm << " of " << Nwin
                 << "\nEstimated translation master w.r.t. synthetic amplitude (master-dem):"
                 << "\n  Positive offsetL: master image is to the bottom"
                 << "\n  Positive offsetP: master image is to the right"
                 << "\nCoarse_correlation_translation_lines    : \t"
                 <<  offsetLines                                                // 1 digit after point?
                 << "\nCoarse_correlation_translation_pixels   : \t"
                 <<  offsetPixels                                               // 1 digit after point?
                 << "\nMaster_azimuth_timing_error             : \t"
                 << masterAztime << " sec."
                 << "\nMaster_range_timing_error               : \t"
                 << masterRatime  << " sec.";                                    // in seconds
  scratchresfile << "\n*******************************************************************"
                 << "\n* End_" << processcontrol[pr_m_mtiming] << "_NORMAL"      // was pr_i_coarse2
                 << "\n*******************************************************************\n";
  scratchresfile.close();

// ______Tidy up______
  INFO << "Individual estimated translations (#, l, p, corr, offl, offp):";
  INFO.print();
  for (uint k=0; k<Nwin; k++)
    {
    INFO << k            << " \t"
         << Centers(k,0) << " \t"
         << Centers(k,1) << " \t"
         << Result(k,0)  << " \t"
         << Result(k,1)  << " \t"
         << Result(k,2)   << " \t";
    INFO.print();
    }

  PROGRESS << "Estimated overall translation (l,p): "
       << offsetLines << ", " << offsetPixels << " (used)" << ends;
  PROGRESS.print();
  INFO << "Coherence NaN values are disregarded in the analysis."; //MA see getoffset
  INFO.print();
  PROGRESS.print("MASTER TIMING Error estimation finished.");
  } // END mtiming_correl


/****************************************************************
 *    mtiming_correlfft                                         *
 *                                                              *
 * computes translation of  master w.r.t. DEM (sim. amplitude)  *
 * master(some point) = simamp (same point) + trans(l,p) =>     *
 *  trans = mastercoordinates - simamp.coordinates              *
 * uses correlation between magnitude of master and simamp      *
 * image to estimate overall shift.                             *
 * uses fft to compute coherence                                *
 *                                                              *
 * requires things on disk, input                               *
 * input:                                                       *
 *  - input settings,                                           *
 *  - master info                                               *
 *  - simulated amplitude info                                  *
 * output:                                                      *
 *  - coarse offsets between dem and the master                 *
 *                                                              *
 *    Bert Kampes, 12-Dec-1998 (coarsecorrelfft)                *
 *    Mahmut Arikan, 04-Dec-2008
 ****************************************************************/
void mtiming_correlfft(
    const input_mtiming    &mtiminginput,
    const slcimage         &minfo,
    const productinfo      &sinfo)              // simamp
  {
  TRACE_FUNCTION("mtiming_correlfft (MA 04-Dec-2008)");
  if (mtiminginput.method != cc_magfft)
    {
    PRINT_ERROR("unknown method, This routine is only for cc_magfft method.")
    throw(argument_error);
    }

  const string STEP="MTIMING: ";                            // step name
  char  dummyline[ONE27];                                   // for errormessages
  //const uint Mfilelines   = minfo.currentwindow.lines();
  //const uint Sfilelines   = sinfo.currentwindow.lines();
  const uint Nwin         = mtiminginput.Nwin;           // number of windows
  uint NwinNANrm          = mtiminginput.Nwin;           ///MA number of windows w/o -999
  const int32 initoffsetL = mtiminginput.initoffsetL;    // initial offset
  const int32 initoffsetP = mtiminginput.initoffsetP;    // initial offset
  const uint MasksizeL    = mtiminginput.MasksizeL;      // size of correlation window
  const uint MasksizeP    = mtiminginput.MasksizeP;      // size of correlation window

  bool pointsrandom = true;
  if (specified(mtiminginput.ifpositions))   // filename specified
    pointsrandom = false;                       // only use these points

  // ______Only pow2 Masksize possible_____
  if (!ispower2(MasksizeL))
    {
    PRINT_ERROR("mtiming correl fft: MasksizeL should be 2^n")
    throw(input_error);
    }
  if (!ispower2(MasksizeP))
    {
    PRINT_ERROR("mtiming correl fft: MasksizeP should be 2^n")
    throw(input_error);
    }

  // ______Corners of simamp(dem) in master system______
  // ______offset = [A](slave system) - [A](master system)______
  const int32 sl0 = sinfo.win.linelo - initoffsetL;
  const int32 slN = sinfo.win.linehi - initoffsetL;
  const int32 sp0 = sinfo.win.pixlo  - initoffsetP;
  const int32 spN = sinfo.win.pixhi  - initoffsetP;
  DEBUG << "slave l0: " << sl0 << " slN " << slN << " sp0 " << sp0 << " spN " << spN;
  DEBUG.print();

  // ______Corners of useful overlap master,slave in master system______
  //const uint BORDER = 20;// slightly smaller
  //const uint l0   = max(int32(minfo.currentwindow.linelo),sl0) + BORDER;
  //const uint lN   = min(int32(minfo.currentwindow.linehi),slN) - MasksizeL - BORDER;
  //const uint p0   = max(int32(minfo.currentwindow.pixlo),sp0)  + BORDER;
  //const uint pN   = min(int32(minfo.currentwindow.pixhi),spN)  - MasksizeP - BORDER;
  // [FvL]
  const uint BORDER = 20;// slightly smaller
  const int l0   = max(int32(minfo.currentwindow.linelo),sl0) + BORDER;
  const int lN   = min(int32(minfo.currentwindow.linehi),slN) - MasksizeL - BORDER;
  const int p0   = max(int32(minfo.currentwindow.pixlo),sp0)  + BORDER;
  const int pN   = min(int32(minfo.currentwindow.pixhi),spN)  - MasksizeP - BORDER;
  const window overlap(l0,lN,p0,pN);

  DEBUG << "overlap l0: " << l0 << " lN " << lN << " p0 " << p0 << " pN " << pN;
  DEBUG.print();

  // ______Distribute Nwin points over window______
  // ______Minlminp(i,0): line, (i,1): pixel, (i,2) flagfromdisk______
  //matrix<uint> Minlminp; // [FvL]
  matrix<int> Minlminp;
  if (pointsrandom)                             // no filename specified
    {
    Minlminp = distributepoints(real4(Nwin),overlap);
    }
  else  // read in points (center of windows) from file
    {
    Minlminp.resize(Nwin,3);
    ifstream ifpos;
    openfstream(ifpos,mtiminginput.ifpositions);
    bk_assert(ifpos,mtiminginput.ifpositions,__FILE__,__LINE__);
    uint ll,pp;
    for (uint i=0; i<Nwin; ++i)
      {
      ifpos >> ll >> pp;
      //Minlminp(i,0) = uint(ll-0.5*MasksizeL);   // correct for lower left corner
      //Minlminp(i,1) = uint(pp-0.5*MasksizeP);   // correct for lower left corner
      //Minlminp(i,2) = uint(1);                  // flag from file
      // [FvL]
      Minlminp(i,0) = int(ll-0.5*MasksizeL);   // correct for lower left corner
      Minlminp(i,1) = int(pp-0.5*MasksizeP);   // correct for lower left corner
      Minlminp(i,2) = int(1);                  // flag from file
      ifpos.getline(dummyline,ONE27,'\n');      // goto next line.
      }
    ifpos.close();

    // ______ Check last point ivm. EOL after last position in file ______
    if (Minlminp(Nwin-1,0) == Minlminp(Nwin-2,0) &&
        Minlminp(Nwin-1,1) == Minlminp(Nwin-2,1))
      {
      Minlminp(Nwin-1,0) = uint(.5*(lN + l0) + 27);     // random
      Minlminp(Nwin-1,1) = uint(.5*(pN + p0) + 37);     // random
      WARNING << "MTE: there should be no EOL after last point in file: "
           << mtiminginput.ifpositions;
      WARNING.print();
      }

    // ______ Check if points are in overlap ______
    // ______ no check for uniqueness of points ______
    bool troubleoverlap = false;
    for (uint i=0; i<Nwin; ++i)
      {
      if (Minlminp(i,0) < l0)
        {
        troubleoverlap=true;
        WARNING << STEP << "point from file: "
             << i+1 << " " << Minlminp(i,0) +.5*MasksizeL << " "
             << Minlminp(i,1) +.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,0) = l0 + l0-Minlminp(i,0);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      if (Minlminp(i,0) > lN)
        {
        troubleoverlap=true;
        WARNING << STEP << "point from file: "
             << i+1 << " " << Minlminp(i,0) +.5*MasksizeL << " "
             << Minlminp(i,1) +.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,0) = lN + lN-Minlminp(i,0);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      if (Minlminp(i,1) < p0)
        {
        troubleoverlap=true;
        WARNING << STEP << "point from file: "
             << i+1 << " " << Minlminp(i,0) +.5*MasksizeL << " "
             << Minlminp(i,1) +.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,1) = p0 + p0-Minlminp(i,1);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      if (Minlminp(i,1) > pN)
        {
        troubleoverlap=true;
        WARNING << STEP << "point from file: "
             << i+1 << " " << Minlminp(i,0) + 0.5*MasksizeL << " "
             << Minlminp(i,1) + 0.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,1) = pN + pN-Minlminp(i,1);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      }
    if (troubleoverlap) // give some additional info
      {
      WARNING << STEP << "there were points in input file which lie outside overlap (l0,lN,p0,pN): "
           << l0 << " " << lN << " " << p0 << " " << pN << ends;
      WARNING.print();
      }
    }

  // ______Compute coherence of these points______
  matrix<complr4> Mcmpl;          // Master complex image
  matrix<real4>   Sampl;          // Simulated amplitude
  matrix<complr4> Scmpl;           // real4 simamp --> creal4 simamp
  matrix<real4>   Result(Nwin,3); //  R(i,0):delta l;
                                  //  R(i,1):delta p; R(i,2):correl

  // ______ Progress messages ______
  int32 percent    = 0;
  int32 tenpercent = int32(rint(Nwin/10.0));   // round
  if (tenpercent==0) tenpercent = 1000;         // avoid error: x%0
  for (uint i=0; i<Nwin; ++i)
    {
    if (i%tenpercent==0)
      {
      PROGRESS << STEP << setw(3) << percent << "%" << ends;
      PROGRESS.print();
      percent += 10;
      }

    // ______Minlminp (lower left corners) of window in master system______
    const uint minMwinL = Minlminp(i,0);
    const uint minMwinP = Minlminp(i,1);
    DEBUG.print(" ");
    DEBUG << "Window(ll): " << i << " [" << minMwinL << ", " << minMwinP << "]";
    DEBUG.print();
    window mwin(minMwinL, minMwinL+MasksizeL-1,
                  minMwinP, minMwinP+MasksizeP-1);// size=mask window size
    // ______Same points in slave system (disk)______
    window swin(minMwinL+initoffsetL, minMwinL+initoffsetL+MasksizeL-1,
                minMwinP+initoffsetP, minMwinP+initoffsetP+MasksizeP-1);

    // ______Read windows from files______
    Mcmpl  = minfo.readdata(swin);           // master read patch
    Sampl  = sinfo.readdatar4(mwin);         // simamp (DEM) read patch
    Scmpl   = mat2cr4(Sampl);
    Sampl.resize(1,1);                       // dealloc...
    matrix<complr4> &sMask = Mcmpl ;         // complex patch from the master that shifts over
    matrix<complr4> &mMask = Scmpl ;         // complex patch from the simamp
                                             // patch sizes are equal but
                                             // shifted patch can have initial
                                             // offset

    // ______ Coherence/max correlation ______
    real4 offsetL, offsetP;
    //const real4 coheren = corrfft(absMaster,absMask,offsetL,offsetP);
    //const real4 coheren = coherencefft(Master, Mask,
    //  1, MasksizeL/2, MasksizeP/2, //do not ovs, search full matrix for max
    //  offsetL,offsetP);// returned
    const real4 coheren = crosscorrelate(mMask, sMask,
                          1, MasksizeL/2, MasksizeP/2,    //do not ovs, search full matrix for max
                                        offsetL,offsetP); // returned
    DEBUG << "Offset between chips (l,p)    = " << offsetL << ", " << offsetP;
    DEBUG.print();
    if ( coheren > 1 ) continue; // MA ignore correlation > 1.

    // ______ Store result of this patch ______
    Result(i,0) = coheren;
    Result(i,1) = initoffsetL + offsetL;// total estimated offset
    Result(i,2) = initoffsetP + offsetP;// total estimated offset
    DEBUG << "Offset between images on disk = " << Result(i,1) << ", "
          << Result(i,2) << " (corr=" << coheren << ")";
    DEBUG.print();
    } // for nwin

  // ______ Position approx. with respect to center of window ______
  // ______ correct position array for center instead of lower left ______
  for (uint i=0; i<Nwin; i++)
    {
    Minlminp(i,0) += uint(0.5*MasksizeL);
    Minlminp(i,1) += uint(0.5*MasksizeP);
    }

  // ______ Get good general estimate for offsetL, offsetP ______
  int32 offsetLines  = -999; // NaN
  int32 offsetPixels = -999;
  //getoffset(Result,offsetLines,offsetPixels);   // getoffsets based on Mean
  getmodeoffset(Result,offsetLines,offsetPixels); // [MA] max occurrence


  // ______ Convert offsets to seconds and write master time offset to res file ______
  // using overall coarse offsets determing master timing error

  // check if some timing card are already defined: do this in processor.cc: see timingerror_flag

  // ______ Initialize Variables ______
  real8 masterAztime  = -999;
  real8 masterRatime  = -999;

  // ______ Compute Time ______
  // minus sign is due to the offsets being reference to DEM (offset = master-dem)
  offsets2timing(minfo, -offsetLines, -offsetPixels, masterAztime, masterRatime); // using overall offsets to
                                                                                  // determine master timing error

  INFO << "Estimated master azimuth timing error [sec]: " << masterAztime << " sec.";
  INFO.print();
  INFO << "Estimated master range timing error   [sec]: " << masterRatime << " sec.";
  INFO.print();

  // azimuth and range time are later updated at proccess.cc
  // ______ End of conversion offset to timing errors______

  // ______ Write to files ______
  ofstream scratchlogfile("scratchlogmtiming", ios::out | ios::trunc);
  bk_assert(scratchlogfile,"mtiming_correlfft: scratchlogmtiming",__FILE__,__LINE__);
  scratchlogfile << "\n\n*******************************************************************"
                 << "\n* MTIMING_CORRELATION: Offset Table"
                 << "\n*******************************************************************"
                 << "\nCorrelation method: \t\t" << " magfft"                       // [MA] informational
                 << "\nNumber of correlation windows: \t"
                 <<  Nwin
                 << "\nCorrelation window size (l,p):             \t"
                 <<  MasksizeL << ", " << MasksizeP
                 << "\n\nNumber \tposL \tposP \toffsetL offsetP\tcorrelation\n";
  for (uint k=0; k<Nwin; k++)
    {
    // MA remove NaN valued coh windows from  Nwin, to be used in resfile
    if (  Result(k,0) == -999  ) NwinNANrm = NwinNANrm - 1;
    scratchlogfile << k << "\t" << Minlminp(k,0)
                        << "\t" << Minlminp(k,1)
                        << "\t" << Result(k,1)
                        << "\t" << Result(k,2)
                        << "\t" << Result(k,0) << endl;
     }
  scratchlogfile << "Estimated total offset (l,p): \t"
                 <<  offsetLines << ", " << offsetPixels
                 << "\nCoherence NaN values are disregarded in the analysis." //MA
                 << "\n*******************************************************************\n";
  scratchlogfile.close();

  ofstream scratchresfile("scratchresmtiming", ios::out | ios::trunc);
  bk_assert(scratchresfile,"mtiming_correlfft: scratchresmtiming",__FILE__,__LINE__);
  scratchresfile << "\n\n*******************************************************************"
                 << "\n*_Start_" << processcontrol[pr_m_mtiming]
                 << "\n*******************************************************************"
                 << "\nCorrelation method \t\t\t: \t" << "magfft "               // mtiminginput.method == 21
                 << "(" << MasksizeL << "," << MasksizeP << ")"
                 << "\nNumber of correlation windows used \t: \t"                     //MA informational
                 <<  NwinNANrm << " of " << Nwin
                 << "\nEstimated translation master w.r.t. synthetic amplitude (master-dem):"
                 << "\n  Positive offsetL: master image is to the bottom"
                 << "\n  Positive offsetP: master image is to the right"
                 << "\nCoarse_correlation_translation_lines    : \t"
                 <<  offsetLines                        // 1 digit after point?
                 << "\nCoarse_correlation_translation_pixels   : \t"
                 <<  offsetPixels                      // 1 digit after point?
                 << "\nMaster_azimuth_timing_error             : \t"
                 << masterAztime << " sec."
                 << "\nMaster_range_timing_error               : \t"
                 << masterRatime  << " sec.";                                    // in seconds
//  scratchresfile << "\n\n#     center(l,p)   coherence   offsetL   offsetP\n";
//    for (uint k=0; k<Nwin; k++)
//     {
//      //MA remove/skip NaN: -999 values before writing resfile. For magfft.
//      // All the values are kept in  doris.log
//      if (  Result(k,0) == -999 ) continue;
//      scratchresfile << k  << " \t" << Minlminp(k,0) << " \t" << Minlminp(k,1) << " \t"
//           << Result(k,0)  << " \t" << Result(k,1)  << " \t" << Result(k,2)  << "\n";
//     }
  scratchresfile << "\n*******************************************************************"
                 << "\n* End_" << processcontrol[pr_m_mtiming] << "_NORMAL"
                 << "\n*******************************************************************\n";
  scratchresfile.close();

// ______Tidy up______
  INFO << "Individual estimated translations (#, l, p, corr, offl, offp):";
  INFO.print();
  for (uint k=0; k<Nwin; k++)
    {
    INFO << k             << " \t"
         << Minlminp(k,0) << " \t"
         << Minlminp(k,1) << " \t"
         << Result(k,0)   << " \t"
         << Result(k,1)   << " \t"
         << Result(k,2)   << " \t";
    INFO.print();
    }

  PROGRESS << "Estimated overall translation (l,p): "
       << offsetLines << ", " << offsetPixels << " (used)" << ends;
  PROGRESS.print();
  INFO << "Coherence NaN values are disregarded in the analysis."; //MA see getoffset
  INFO.print();
  //PROGRESS.print("SIMAMP coregistration based on correlation finished.");
  PROGRESS.print("MASTER TIMING Error estimation finished.");
  } // END mtiming_correlfft

/****************************************************************
 * corrfft                                                      *
 *                                                              *
 * coherence in spectral domain by fft's                        *
 *  uses extension with zeros                                   *
 *  pixel level                                                 *
 *                                                              *
 * input:                                                       *
 *  - Master                                                    *
 *  - Mask (size Master)                                        *
 * output:                                                      *
 *  - coherence value                                           *
 *  - updated offsetL, P                                        *
 *    positive offsetL: Mask is shifted up                      *
 *    positive offsetP: Mask is shifted left                    *
 *                                                              *
 *    Bert Kampes, 16-Feb-1999                                  *
 * note: this routine can be speeded up by removing matrices    *
 * powerma* and by using *= instead of dotmult                  *
 * for now this is not done because it requires only little time*
 * note also that for coarse coregistration division by powers  *
 * is not really required, cross products are good enough.      *
 *    Bert Kampes, 18-Oct-1999                                  *
 ****************************************************************/
/*
real4 corrfft(
         const matrix<real4> &Master,                   // magnitude image
         const matrix<real4> &Mask,                     // magnitude image
         real4 &offsetL,                                // updated
         real4 &offsetP)                                // updated
  {
  TRACE_FUNCTION("corrfft (BK 18-Oct-1999)");
  // ______ Internal variables ______
  const int32 L     = Master.lines();
  const int32 P     = Master.pixels();
  const int32 twoL  = 2*L;
  const int32 twoP  = 2*P;
  const int32 halfL = L/2;
  const int32 halfP = P/2;

  // ______ Check input ______
  if (L != Mask.lines() || P != Mask.pixels())
    {
    PRINT_ERROR("Mask, Master not same size.")
    throw(input_error);
    }
  if (!(ispower2(L) || ispower2(P)))
    {
    PRINT_ERROR("Mask, Master size not power of 2.")
    throw(input_error);
    }

  // ======Compute powers for submatrices======
  register int32 i;
  register int32 j;
  const complr4 ONE(1.0);
  matrix<complr4> Master2(twoL,twoP);// init 0
  matrix<complr4> Mask2(twoL,twoP);  // init 0
  matrix<complr4> blok2(twoL,twoP);  // init 0

  // ====== Powers, misuse Master2, blok2 ======
  // ______ First powers to use one matrix less; 3 is minimum ______
  const real4 meanMaster = mean(Master);
  const real4 meanMask   = mean(Mask);
  for (i=0; i<L; i++)
    {
    for (j=0; j<P; j++)
      {
      Master2(i,j)   = complr4(sqr(Master(i,j)-meanMaster));// intensity image
      Mask2(i+L,j+P) = complr4(sqr(Mask(i,j)-meanMask));// only real part
      blok2(i+halfL,j+halfP) = ONE;                     // only real part
      }
    }
  fft2d(Master2);
  fft2d(Mask2);
  fft2d(blok2);

  // ______ new way: test this ______
  blok2.conj();                // conjugated in blok2
  Master2 *= blok2;
  Master2.conj();              // M2=original(b2)*conj(m2)
  ifft2d(Master2);             // norms master in Master2
  Mask2   *= blok2;            // powers in spectral domain
  ifft2d(Mask2);               // norms slave in Mask2

  // ______ Use real(block2) to store sqrt(norms1*norms2) ______
  for (i=0; i<=L; i++)         // all shifts
    for (j=0; j<=P; j++)       // all shifts
      blok2(i,j) = complr4(sqrt(real(Master2(i,j))*real(Mask2(i,j))));

  // ====== Cross products covariance master/slave ======
  Master2.clean();             // init 0
  Mask2.clean();               // init 0
  for (i=0;i<L;i++)
    {
    for (j=0;j<P;j++)
      {
      Master2(i,j)           = complr4(Master(i,j)-meanMaster); // only real
      Mask2(i+halfL,j+halfP) = complr4(Mask(i,j)-meanMask);     // part mag. image
      }
    }

  // ======FFT's of master/mask======
  // padded with N zeros to prevent periodical convolution
  fft2d(Master2);
  fft2d(Mask2);

  // ______ Store in Mask2 crossproducts in spectral/space domain ______
  Master2.conj();
  Mask2 *= Master2;            // corr. by zero padding
  ifft2d(Mask2);               // space domain (real only)

  // ====== Correlation in space domain for all shifts [-N/2,N/2] ======
  //real4 coher;
  real4 maxcoher = -999.0;
  for (i=0; i<=L; i++)         // all shifts
    {
    for (j=0; j<=P; j++)       // all shifts
      {
      const real4 coher = real(Mask2(i,j)) / real(blok2(i,j));
      if (coher > maxcoher)
        {
        maxcoher = coher;
        offsetL  = -halfL + i; // update by reference
        offsetP  = -halfP + j; // update by reference
        }
      }
    }
  return maxcoher;
  } // END corrfft
*/


/****************************************************************
 *    distributepoints                                          *
 *                                                              *
 * Returns matrix with distributed points in of input.          *
 * First window at (win.linelo,win.pixlo),                      *
 *  divided over wl lines,                                      *
 *  with dp distance in pixel direction.                        *
 *                                                              *
 * input:                                                       *
 *  - number of windows                                         *
 *  - window which should be divided                            *
 * output:                                                      *
 *  - matrix <uint> (NW,3) =(l,p, flagfromdisk==0)              *
 *                                                              *
 *    Bert Kampes, 21-Jan-1999                                  *
 ****************************************************************/
//matrix<uint> distributepoints(
// [FvL] for correct folding of points outside overlap window when inserted by file
matrix<int> distributepoints(
        real4 nW,
        const window &win)
  {
  TRACE_FUNCTION("distributepoints (BK 21-Jan-1999)")
  real4 lines  = win.linehi - win.linelo + 1;
  real4 pixels = win.pixhi  - win.pixlo  + 1;

  uint numw = uint(nW);
  //matrix<uint> Result(numw,uint(3)); // [FvL]
  matrix<int> Result(numw,uint(3));
  // ______ Distribution for dl=dp ______
  real4 wp = sqrt(nW/(lines/pixels));   // wl: #windows in line direction
  real4 wl = nW / wp;                   // wp: #windows in pixel direction
  if (wl < wp)                          // switch wl,wp : later back
    wl = wp;
  int32 wlint  = int32(rint(wl));// round largest
  real4 deltal = (lines-1) / (real4(wlint-1));
  int32 totp   = int32(pixels*wlint);
  real4 deltap = (real4(totp-1)) / (real4(nW-1));
  real4 p      = -deltap;
  real4 l      = 0.;
  uint lcnt    = 0;
  register int32 i;
  for (i=0; i<nW; i++)
    {
    p += deltap;
    while (rint(p)>=pixels)// round
      {
      p -= pixels;
      lcnt++;
      }
    l = lcnt * deltal;
    //Result(i,0) = uint(rint(l));
    //Result(i,1) = uint(rint(p)); // [FvL]
    Result(i,0) = int(rint(l));
    Result(i,1) = int(rint(p));
    }

  // ______ Correct distribution to window ______
  for (i=0; i<nW; i++)
    {
    Result(i,0) += win.linelo;
    Result(i,1) += win.pixlo;
    }

  return Result;
  } // END distributepoints



/****************************************************************
 *    getoffset                                                 *
 *                                                              *
 * Returns offset in line and pixel direction                   *
 *  based on matrix with estimated offests                      *
 *  by correlation                                              *
 * Checks on consistency, THRESHOLD 0.4 for correlation         *
 *                                                              *
 * input:                                                       *
 *  - matrix<real4> with corr,offsets(l,p)                      *
 * output:                                                      *
 *  - (offL,offP)                                               *
 *                                                              *
 * See also Documentation page 6.                               *
 *                                                              *
 *    Bert Kampes, 21-Jan-1999                                  *
 ****************************************************************/
void getoffset(
        const matrix<real4> &Result,
        int32 &offsetLines,
        int32 &offsetPixels)
  {
  TRACE_FUNCTION("getoffset (BK 21-Jan-1999)")
  if (Result.pixels() != 3)
    {
    PRINT_ERROR("code 901: input not 3 width");
    throw(input_error);
    }
  // --- First sort estimated offsets on coherence ascending! ---
  DEBUG.print("sorting on coherence.");
  //DEBUG.print("unsorted input matrix:");
  //Result.showdata();
  matrix<real4> sortResult = -Result;
  mysort2(sortResult);// sort matrix on first column (coh)
  sortResult = -sortResult;
  //DEBUG.print("sorted matrix:");
  //sortResult.showdata();

  // --- Set offset to highest coherence estimate ---
  offsetLines   = int32(rint(sortResult(0,1)));//rounds negative too
  offsetPixels  = int32(rint(sortResult(0,2)));//rounds negative too
  const uint nW = sortResult.lines();
  uint nWNANrm = sortResult.lines(); //MA added for removal of -999 values
  if (nW==1) return;

  // --- Threshold on coherence ---
  real4 var_coh  = 0.0;
  real4 mean_coh = 0.0;
  for (uint i=0; i<nW; i++)
  { //MA fix to ignore -999 values from statistics
    if  ( sortResult(i,0) == -999 )  {
    nWNANrm = nWNANrm - 1; continue; }
     mean_coh+=sortResult(i,0);
  }
  //mean_coh /= real4(nW);
  mean_coh /= real4(nWNANrm);
  for (uint i=0; i<nW; i++)
  { //MA fix to ignore -999 values from statistics
   if  ( sortResult(i,0) == -999 ) continue;
    var_coh +=sqr(sortResult(i,0)-mean_coh);
  }
  //var_coh /= real4(nW-1);
  var_coh /= real4(nWNANrm-1);
  
  INFO << "Mean coherence at estimated positions: " << mean_coh;
  INFO.print();
  const real4 std_coh = sqrt(var_coh);
  INFO << "Standard deviation coherence:          " << std_coh;
  INFO.print();
  if (mean_coh<0.1)
    mean_coh=0.1;
  const real4 thresh_coh = mean_coh;
  INFO << "Using as threshold:                    " << thresh_coh;
  INFO.print();
  int32 cnt = 1;// estimates above threshold
  mean_coh  = sortResult(0,0);// mean above threshold
  INFO.print("Using following data to determine coarse image offset:");
  INFO.print("coherence    offset_L    offset_P");
  INFO.print("------------------------------------------------------");
  INFO << sortResult(0,0) << "      " << sortResult(0,1) << "        " << sortResult(0,2);
  INFO.print();
  for (uint i=1; i<nW; i++)
    {
    if (sortResult(i,0)>=thresh_coh)
      {
      cnt++;
      mean_coh     += sortResult(i,0);
      offsetLines  += int32(rint(sortResult(i,1)));// round
      offsetPixels += int32(rint(sortResult(i,2)));// round
      INFO << sortResult(i,0) << "      " << sortResult(i,1) << "        " << sortResult(i,2);
      INFO.print();
      }
    }

  // ___ Report stats ___
  if (cnt > 1)
    {
    mean_coh         /= real4(cnt);
    const real4 meanL = real4(offsetLines)/real4(cnt);// float mean
    const real4 meanP = real4(offsetPixels)/real4(cnt);// float mean
    offsetLines       = int32(rint(real8(offsetLines)/real8(cnt)));// round
    offsetPixels      = int32(rint(real8(offsetPixels)/real8(cnt)));// round
    real4 var_L       = 0.0;
    real4 var_P       = 0.0;
    for (int32 i=0; i<cnt; i++) var_L+=sqr(sortResult(i,1)-meanL);
    for (int32 i=0; i<cnt; i++) var_P+=sqr(sortResult(i,2)-meanP);
    var_L            /= real4(cnt-1);
    var_P            /= real4(cnt-1);
    INFO << "Standard deviation offset L = " << sqrt(var_L);
    INFO.print();
    INFO << "Standard deviation offset P = " << sqrt(var_P);
    INFO.print();
    if (sqrt(var_L)>6.0 || sqrt(var_P)>6.0)
      WARNING.print("Check estimated offset coarse corr: it seems unreliable.");
    }

  // ___ Warn if appropriate ___
  if (mean_coh < 0.2)
    {
    WARNING.print("getoffset: mean coherence of estimates used < 0.2");
    WARNING.print("(please check bottom of LOGFILE to see if offset is OK)");
    }
  if (nW < 6)
    {
    WARNING.print("getoffset: number of windows to estimate offset < 6");
    WARNING.print("(please check bottom of LOGFILE to see if offset is OK)");
    }

/*
  int32 cnt;
  int32 valueL;
  int32 valueP;
  real4 correl;
  int32 highestcnt    = 0;
  real4 highestcorrel = 0.0;
  for (i=0; i<nW; i++)
    {
    valueL = int32(Result(i,0)+0.5);
    valueP = int32(Result(i,1)+0.5);
    correl = Result(i,2);
    if (correl > highestcorrel)
      highestcorrel = correl;
    cnt = 0;
    for (j=0; j<nW; j++)
      {
      if (abs(Result(j,0) - valueL) < 2  &&
          abs(Result(j,1) - valueP) < 2)
        cnt++;
      }
    if (cnt > highestcnt)
      {
      highestcnt   = cnt;
      offsetLines  = valueL;                    // Return offsetLines
      offsetPixels = valueP;                    // Return offsetPixels
      }
    }

  // ______ Check result ______
  real4 THRESHOLD = 0.3;
  if (nW < 6)
    {
    WARNING.print("getoffset: number of windows to estimate offset < 6");
    WARNING.print("(please check bottom of LOGFILE)");
    }
  if (highestcnt < 0.2*nW)
    {
    WARNING.print("getoffset: estimated offset not consistent with other estimates.");
    WARNING.print("(check bottom of LOGFILE)");
    }
  if (highestcorrel < THRESHOLD)
    {
    WARNING << "getoffset: estimated translation has correlation of: "
         << highestcorrel;
    WARNING.print();
    WARNING.print("(please check bottom of LOGFILE)");
    }
*/
  } // END getoffset


/****************************************************************
 *    getmodeoffset                                             *
 *                                                              *
 * Returns offset in line and pixel direction                   *
 *  based on matrix with estimated offests                      *
 *  by correlation                                              *
 * Checks on consistency, THRESHOLD 0.4 for correlation         *
 *                                                              *
 * input:                                                       *
 *  - matrix<real4> with corr,offsets(l,p)                      *
 * output:                                                      *
 *  - (offL,offP)                                               *
 *                                                              *
 * See also Documentation page 6.                               *
 *                                                              *
 *    Bert Kampes,   21-Jan-1999 (getoffset)                    *
 *    Mahmut Arikan, 09-Dec-2008                                *
 ****************************************************************/
void getmodeoffset(
        const matrix<real4> &Result,
        int32 &offsetLines,
        int32 &offsetPixels)
  {
  TRACE_FUNCTION("getmodeoffset (MA 09-Dec-2008)")
  if (Result.pixels() != 3)
    {
    PRINT_ERROR("code 901: input not 3 width");
    throw(input_error);
    }

  // --- First sort estimated offsets on coherence ascending! ---
  DEBUG.print("getmodeoffset: sorting on coherence.");
  //DEBUG.print("unsorted input matrix:");
  //Result.showdata();
/*
  Result(0,0)=0.1   ; Result(0,1)=3 ; Result(0,2)=2  ;
  Result(1,0)=0.2   ; Result(1,1)=1 ; Result(1,2)=4  ;
  Result(2,0)=0.3   ; Result(2,1)=4 ; Result(2,2)=1  ;
  Result(3,0)=0.2   ; Result(3,1)=1 ; Result(3,2)=3  ;
  Result(4,0)=0.2   ; Result(4,1)=3 ; Result(4,2)=1  ;
  Result(5,0)=0.3   ; Result(5,1)=1 ; Result(5,2)=-1  ;
  Result(6,0)=0.2   ; Result(6,1)=4 ; Result(6,2)=0  ;
  Result(7,0)=0.1   ; Result(7,1)=1 ; Result(7,2)=-2  ;

Result.showdata();
cerr << endl;
*/
  matrix<real4> sortResult = -Result;
  mysort2(sortResult);                  // sort matrix on first column (coh)
                                        // sorts ascending
//  sortResult.showdata(); cout << endl;
//  mysort2selcol(sortResult, 1);
  sortResult = -sortResult;             // max coh at top
  //DEBUG.print("sorted matrix:");
  //sortResult.showdata();

  // --- Set offset to highest coherence estimate ---
  offsetLines   = int32(rint(sortResult(0,1))); // rounds negative too, was -999
  offsetPixels  = int32(rint(sortResult(0,2))); // rounds negative too
                                                // [ why set to highes coherence mean
                                                // loop index could start from i==0.]

  // ______ Remove window offests with -999 (NaN) coherence values _____
  // added by [MA]
  const uint nW = sortResult.lines(); // Number of windows
  uint nWNANrm  = nW;                 // Number of windows without NAN values
  if (nW==1) return;

  // --- Threshold on coherence ---
  real4 var_coh  = 0.0;
  real4 mean_coh = 0.0;
  for (uint i=0; i<nW; i++)             // [MA] fix to ignore -999 values from statistics
    {
     if ( sortResult(i,0) == -999 )     // if NaN
       {
        nWNANrm -= 1;          // determine number of windows without NaN
        continue;
       }
     mean_coh+=sortResult(i,0);
    }
  //mean_coh /= real4(nW);
  mean_coh /= real4(nWNANrm);           // mean coherence

  for (uint i=0; i<nW; i++)             // [MA fix to ignore -999 values from statistics
    {
     if  ( sortResult(i,0) == -999 ) continue;
     var_coh +=sqr(sortResult(i,0)-mean_coh);
    }
  //var_coh /= real4(nW-1);
  var_coh /= real4(nWNANrm-1);          // mean variance

  INFO << "Mean coherence at estimated positions: " << mean_coh;
  INFO.print();
  const real4 std_coh = sqrt(var_coh);
  INFO << "Standard deviation coherence:          " << std_coh;
  INFO.print();

  // ______ Statistics about threshold ______
  const real4 thresh_coh = mean_coh;
  INFO << "Using as threshold:                    " << thresh_coh;
  INFO.print();

  DEBUG.print("Using following data to determine coarse image offset:");
  DEBUG.print("coherence    offset_L    offset_P");
  DEBUG.print("------------------------------------------------------");
  DEBUG << sortResult(0,0) << "      " << sortResult(0,1) << "        " << sortResult(0,2); // print the line w/ max. coh.
  DEBUG.print();

  int32 cnt = 1;                        // estimates above threshold
  mean_coh  = sortResult(0,0);          // new mean above threshold
  for (register uint i=1; i<nW; i++)
    {
    if (sortResult(i,0)>=thresh_coh)
      {
      cnt++;
      mean_coh     += sortResult(i,0);
      offsetLines  += int32(rint(sortResult(i,1)));// round
      offsetPixels += int32(rint(sortResult(i,2)));// round
      DEBUG << sortResult(i,0) << "      " << sortResult(i,1) << "        " << sortResult(i,2);
      DEBUG.print();

      } // values above threshold
    }   // end loop and print

  // ___ Report stats ___
  if (cnt > 1)
    {
    mean_coh         /= real4(cnt);
    const real4 meanL = real4(offsetLines)/real4(cnt);// float mean
    const real4 meanP = real4(offsetPixels)/real4(cnt);// float mean
    offsetLines       = int32(rint(real8(offsetLines)/real8(cnt)));// round
    offsetPixels      = int32(rint(real8(offsetPixels)/real8(cnt)));// round
    real4 var_L       = 0.0;
    real4 var_P       = 0.0;
    for (register int32 i=0; i<cnt; i++) var_L+=sqr(sortResult(i,1)-meanL);
    for (register int32 i=0; i<cnt; i++) var_P+=sqr(sortResult(i,2)-meanP);
    var_L            /= real4(cnt-1);
    var_P            /= real4(cnt-1);
    INFO << "Standard deviation offset L = " << sqrt(var_L);
    INFO.print();
    INFO << "Standard deviation offset P = " << sqrt(var_P);
    INFO.print();
    if (sqrt(var_L)>6.0 || sqrt(var_P)>6.0)
      WARNING.print("Check estimated offset coarse corr: it seems unreliable.");
    }

  INFO << "Estimated overall mean translation (l,p): " << offsetLines << ", " << offsetPixels << " (not used)" << ends;
  INFO.print();

  // pass mode frequency to log file [MA]
  ofstream scratchlogfile("scratchlogmtiminghtr", ios::out | ios::trunc);
  bk_assert(scratchlogfile,"mtiming_correl: scratchlogmtiminghtr",__FILE__,__LINE__);
 //INFO.rdbuf(scratchlogfile.rdbuf());  // TODO pass buffer to buffer
 //INFO.print();
  scratchlogfile << "\n*******************************************************************"
                 << "\n* MTIMING_CORRELATION: Offset Frequency Table"
                 << "\n*******************************************************************"
                 << "\nUsing following data to determine coarse image offset:"
                 << "\navg. coh    offset_L    offset_P  occurrence  index"
                 << "\n------------------------------------------------------";  // TODO not yet: scratchlogfile << INFO

   // _____ Mode of offsets _____  [MA]
  PROGRESS.print("getmodeoffset: Start mode analysis ");
  PROGRESS << "Using as threshold:  " << thresh_coh << " and checking for mode value";
  PROGRESS.print();
  INFO.print("Using following data to determine coarse image offset:");
  INFO.print("avg. coh    offset_L    offset_P  occurrence  index");
  INFO.print("------------------------------------------------------");

  mysort231(sortResult);                        // re-sort on 2nd, 3rd than 1st column
  // sortResult.showdata();
  int32 mode_val = 0, mode_idx = -1;            // mode count, mode index
  int32 evenmode_val = 0, nEven= 0;             // check for equal values of mode
  int32 L=NaN, P=NaN, offset_freq=0;            // Line, Pixel, frequency
  real4 offset_mcoh=0.0;                        // avg. coherence for each set of offsets
  for (register uint i=0; i<nW; i++)            // Major reason of this main loop is individual stdout request.
    {
    if (sortResult(i,0)>=thresh_coh)
      {
      // _____ frequency of offsets _____  [MA]
      if ( L != int32(rint(sortResult(i,1))) ||    // skip initializing of
           P != int32(rint(sortResult(i,2)))    )  // the same offset multiple times
        {
          L=int32(rint(sortResult(i,1)));          // get initial values
          P=int32(rint(sortResult(i,2)));
        }
      else
         {
          continue ;   // L, P equal to previous values then skip counting
                       // since matrix is sorted on L,P
         }
      offset_freq=0;   // reset
      offset_mcoh=0;
      for (register uint j=0; j<nW; j++)           // scan data for occurrences of an offset
        {                                          // for all offsets
         if ( L == int32(rint(sortResult(j,1))) && P == int32(rint(sortResult(j,2))) )
           {
             offset_freq++;
             offset_mcoh += sortResult(j,0);      // for decission on even mode values
           }                                      // at different L,P pair.
        } // end scan data

      if (offset_freq > mode_val)
        {
         mode_val=offset_freq;
         mode_idx=i;                              // index of mode value
                                                  // in magfft if you correlate the same
                                                  // slc patches. index get a value other than
                                                  // 1. that's okay when all offset are zero.
        }
      else if (mode_val == offset_freq)
        {
         if ( evenmode_val != offset_freq ) nEven=1; // initialize with one
         evenmode_val=offset_freq;
         nEven++;
        }

      offset_mcoh /= real4(offset_freq) ;

      // _____ for each offset pair above threshold list frequency _____
      INFO << offset_mcoh << "\t " << L << "\t   " << P << "\t\t" << offset_freq << "\t " << mode_idx;                   // print to terminal
      INFO.print();

      scratchlogfile << '\n' << offset_mcoh << "\t " << L << "\t   " << P << "\t\t" << offset_freq << "\t " << mode_idx; // pass to .log
      } // above threshold
    }   // end mode

    scratchlogfile << "\n\n*******************************************************************";
    scratchlogfile.close();  // close scratchlogmtiminghtr

    // _____ Even occurrence check _____
    if (mode_val == evenmode_val) // there are even values of mode.
      {
        WARNING << "There are " << nEven << " offset pairs which has equal mode values are equal.";
        WARNING.print();
        WARNING << "Check offset results and logs, and increase the number and/or the size of the correlation windows.";
        WARNING.print();
      }


  offsetLines  = int32(rint(sortResult(mode_idx,1)));  // update mode offsets
  offsetPixels = int32(rint(sortResult(mode_idx,2)));
  PROGRESS.print("getmodeoffset: End of mode analysis ");

  // ___ Warn if appropriate ___
  if (mean_coh < 0.2)
    {
    WARNING.print("getmodeoffset: mean coherence of estimates used < 0.2");
    WARNING.print("(please check bottom of LOGFILE to see if offset is OK)");
    }
  if (mode_val == 1)
    {
    WARNING.print("getmodeoffset: all the offset occurrence == 1. There is no mode value. ");
    WARNING.print("(please check bottom of LOGFILE to see if offset is OK or change window size.)");
    }
  if (nW < 6)
    {
    WARNING.print("getmodeoffset: number of windows to estimate offset < 6");
    WARNING.print("(please check bottom of LOGFILE to see if offset is OK)");
    }


  } // END getmodeoffset


/****************************************************************
 *    finecoreg                                                 *
 *                                                              *
 * computes translation of slave w.r.t. master                  *
 * slave(some point) = master(same point) + trans(l,p) =>       *
 *  trans = slavecoordinates - mastercoordinates                *
 * in NWIN windows.                                             *
 * Then solves polynomial for best transformation to master     *
 * with coregpm routine/step                                    *
 *                                                              *
 * input:                                                       *
 *  -                                                           *
 * output:                                                      *
 *  -                                                           *
 *    Bert Kampes, 12-Dec-1998                                  *
 * distribute points can be with input file as well, besides    *
 * letting Doris randomly distribute npoints.                   *
 *    BK 29-Oct-99                                              *
 ****************************************************************/
void finecoreg(
        const input_fine &fineinput,
        const slcimage   &minfo,
        const slcimage   &sinfo,
        const input_ell &ell,
        orbit           &masterorbit,  // cannot be const for spline
        orbit           &slaveorbit,   // cannot be const for spline
        const BASELINE  &baseline)
//input_ellips, master, slave, masterorbit, slaveorbit, baseline);
  {          
    if (fineinput.shiftazi == 0)
     {            
           INFO << "I assume you have already deramped or centered the data spectrum..." ;
           INFO.print();
    }
    else if (fineinput.shiftazi == 2)
     {            
           INFO << "\nPROCESS: Deramp Master and Slave spectrum in FINE COREGISTRATION..." ;
           INFO.print();
         
          // deramp( minfo, fineinput ,masterorbit);
           
    }
    
  TRACE_FUNCTION("finecoreg (BK 29-Oct-99)")
  char dummyline[ONE27];
  //const uint Mfilelines   = minfo.currentwindow.lines();
  //const uint Sfilelines   = sinfo.currentwindow.lines();
  const uint Nwin         = fineinput.Nwin;                 // n windows, from file or random
  uint NwinNANrm          = fineinput.Nwin;                 // [MA] number of windows w/o NaN
  int32 initoffsetL       = fineinput.initoffsetL;          // initial offset
  int32 initoffsetP       = fineinput.initoffsetP;          // initial offset
  uint MasksizeL          = fineinput.MasksizeL;            // size of correlation window
  uint MasksizeP          = fineinput.MasksizeP;            // size of correlation window
  uint AccL               = fineinput.AccL;                 // size of small chip
  uint AccP               = fineinput.AccP;                 // size of small chip
  const uint OVS          = fineinput.osfactor;             // factor
  bool pointsrandom       = true;
  if (specified(fineinput.ifpositions))                     // filename specified
    pointsrandom = false;                                   // only use these points

  // ______Correct sizes if in space domain______
  if (fineinput.method == fc_magspace ||
      fineinput.method == fc_cmplxspace)
    {
    INFO.print("Adapting size of window for space method");
    MasksizeL += 2*fineinput.AccL;
    MasksizeP += 2*fineinput.AccP;
    }

  // ______Corners of slave in master system______
  // ______offset = [A](slave system) - [A](master system)______
  const int32 sl0 = sinfo.currentwindow.linelo - initoffsetL;
  const int32 slN = sinfo.currentwindow.linehi - initoffsetL;
  const int32 sp0 = sinfo.currentwindow.pixlo  - initoffsetP;
  const int32 spN = sinfo.currentwindow.pixhi  - initoffsetP;

  // ______Corners of useful overlap master,slave in master system______
  //const uint BORDER = 20;// make slightly smaller
  //const uint l0   = max(int32(minfo.currentwindow.linelo),sl0) + BORDER;
  //const uint lN   = min(int32(minfo.currentwindow.linehi),slN) - MasksizeL - BORDER;
  //const uint p0   = max(int32(minfo.currentwindow.pixlo),sp0)  + BORDER;
  //const uint pN   = min(int32(minfo.currentwindow.pixhi),spN)  - MasksizeP - BORDER;
  const uint BORDER = 20;// make slightly smaller
  const int l0   = max(int32(minfo.currentwindow.linelo),sl0) + BORDER;
  const int lN   = min(int32(minfo.currentwindow.linehi),slN) - MasksizeL - BORDER;
  const int p0   = max(int32(minfo.currentwindow.pixlo),sp0)  + BORDER;
  const int pN   = min(int32(minfo.currentwindow.pixhi),spN)  - MasksizeP - BORDER;
  const window overlap(l0,lN,p0,pN);

  // ______ Distribute Nwin points over window, or read from file ______
  // ______ Minlminp(i,0): line, (i,1): pixel, (i,2) flagfromdisk ______
  //matrix<uint> Minlminp; // [FvL]
  matrix<int> Minlminp;
  if (pointsrandom)                             // no filename specified
    {
    Minlminp = distributepoints(real4(Nwin),overlap);
    }

  else  // read in points (center of windows) from file
    {
    Minlminp.resize(Nwin,3);
    ifstream ifpos(fineinput.ifpositions, ios::in);
    bk_assert(ifpos,fineinput.ifpositions,__FILE__,__LINE__);
    uint ll,pp;
    for (uint i=0; i<Nwin; ++i)
      {
      ifpos >> ll >> pp;
      //Minlminp(i,0) = uint(ll - 0.5*MasksizeL); // correct for lower left corner
      //Minlminp(i,1) = uint(pp - 0.5*MasksizeP); // correct for lower left corner
      //Minlminp(i,2) = uint(1);                  // flag from file
      // [FvL]
      Minlminp(i,0) = int(ll - 0.5*MasksizeL); // correct for lower left corner
      Minlminp(i,1) = int(pp - 0.5*MasksizeP); // correct for lower left corner
      Minlminp(i,2) = int(1);                  // flag from file
      ifpos.getline(dummyline,ONE27,'\n');      // goto next line.
      }
    ifpos.close();
    // ______ Check last point for possible EOL after last position in file ______
    if (Minlminp(Nwin-1,0) == Minlminp(Nwin-2,0) &&
        Minlminp(Nwin-1,1) == Minlminp(Nwin-2,1))
      {
      Minlminp(Nwin-1,0) = uint(0.5*(lN + l0) + 27);    // random
      Minlminp(Nwin-1,1) = uint(0.5*(pN + p0) + 37);    // random
      }
    // ______ Check if points are in overlap ______
    // ______ no check for uniqueness of points ______
    bool troubleoverlap = false;
    for (uint i=0; i<Nwin; ++i)
      {//windows
      if (Minlminp(i,0) < l0)
        {
        troubleoverlap=true;
        WARNING << "FINE: point from file: "
             << i+1 << " " << Minlminp(i,0) + 0.5*MasksizeL << " "
             << Minlminp(i,1) + 0.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,0) = l0 + l0-Minlminp(i,0);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      if (Minlminp(i,0) > lN)
        {
        troubleoverlap=true;
        WARNING << "FINE: point from file: "
             << i+1 << " " << Minlminp(i,0) + 0.5*MasksizeL << " "
             << Minlminp(i,1) + 0.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,0) = lN + lN-Minlminp(i,0);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      if (Minlminp(i,1) < p0)
        {
        troubleoverlap=true;
        WARNING << "FINE: point from file: "
             << i+1 << " " << Minlminp(i,0) + 0.5*MasksizeL << " "
             << Minlminp(i,1) + 0.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,1) = p0 + p0-Minlminp(i,1);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      if (Minlminp(i,1) > pN)
        {
        troubleoverlap=true;
        WARNING << "FINE: point from file: "
             << i+1 << " " << Minlminp(i,0) + 0.5*MasksizeL << " "
             << Minlminp(i,1) + 0.5*MasksizeP
             << " outside overlap master, slave. New position: ";
        Minlminp(i,1) = pN + pN-Minlminp(i,1);
        WARNING << Minlminp(i,0) << " " << Minlminp(i,1);
        WARNING.print();
        }
      }
    if (troubleoverlap) // give some additional info
      {
      WARNING << "FINE: there were points from file outside overlap (l0,lN,p0,pN): "
           << l0 << " " << lN << " " << p0 << " " << pN;
      WARNING.print();
      }
    }

 
  // ______Compute coherence of these points______
  matrix<complr4> Master;
  matrix<complr4> Mask;
  matrix<real4>   Result(Nwin,3);       // R(i,0):delta l;
                                        // R(i,1):delta p; R(i,2):correl
  
  // ______ Progress message ______
  int32 tenpercent = int32(rint(Nwin/10.0));
  if (tenpercent==0) tenpercent = 1000;
  int32 percent = 0;

   int32 fivepercent = int32(rint(Nwin/5.0));
  if (fivepercent==0) fivepercent = 1000;
  
//if (fineinput.method== fc_coherence)          // input file  ()
 //     radarcodedem(fineinput, input_ellips, input_i_comprefdem,
  //                 master, slave, interferogram, masterorbit, slaveorbit);
    
// ====== Compute for all locations ======
  for (uint i=0;i<Nwin;i++)
    {//all locations
     
    // ______ Give progress message ______
    if (i%tenpercent==0)
      {
      PROGRESS << "FINE: " << setw(3) << percent << "%";
      PROGRESS.print();
      percent += 10;
      }

    // ______Minlminp (lower left corners) of window in master system______
    const uint minMwinL = Minlminp(i,0);
    const uint minMwinP = Minlminp(i,1);
    
    //***
    //INFO <<"Pos: " <<minMwinL <<", "<<minMwinP 
    //     <<"\n , Before initoffsetL: "<< initoffsetL << "initoffsetP" << initoffsetP;
    // INFO.print();
     
     
    initoffsetL =   lrint(sinfo.slopeL*minMwinL +sinfo.realoffsetL);           // initial slope pixels
    initoffsetP =   lrint(sinfo.slopeP*minMwinP +sinfo.realoffsetP);              // initial slope lines
    
    
   // INFO << "\n After initoffsetL: "<< initoffsetL << ", initoffsetP: " << initoffsetP;
   // INFO.print();
    //MCC
    
    DEBUG.print(" ");
    DEBUG << "Window: " << i << " [" << minMwinL << ", " << minMwinP << "]";
    DEBUG.print();
    window master(minMwinL, minMwinL+MasksizeL-1,
                  minMwinP, minMwinP+MasksizeP-1);// size=masksize
    // ______Same points in slave system (disk)______
    window mask(minMwinL+initoffsetL,
                minMwinL+initoffsetL+MasksizeL-1,
                minMwinP+initoffsetP,
                minMwinP+initoffsetP+MasksizeP-1);// size=masksize
    // ______Read windows from files______
    Master = minfo.readdata(master);
    Mask   = sinfo.readdata(mask);

   
    
    
    // ______Coherence______
    // ______update offsetL/P______
    real4 offsetL, offsetP;
    real4 coheren;
    switch (fineinput.method)
      {
      //case fc_cmplxfft:
      //WARNING("THIS METHOD IS NOT OK YET, I RECOMMEND MAGNITUDE.");
      //coheren = coherencefft(fineinput, Master, Mask, offsetL, offsetP);
      //break;
      //case fc_cmplxspace:
      //WARNING("THIS METHOD IS NOT OK YET, I RECOMMEND MAGNITUDE.");
      //coheren = coherencespace(fineinput, Master, Mask, offsetL, offsetP);
      //break;
      case fc_magfft:   // fast: oversample coherence
        {
        //coheren     = coherencefft(Master, Mask, OVS, AccL, AccP,
        //                           offsetL, offsetP);// returned
        if ( AccL > MasksizeL/2 )              // [MA] fix for Acc being half of Masksize at max
          {
           AccL = MasksizeL/2 ;
           WARNING << "FINE: AccL for magfft can be half of the window size at max, changing to "  << AccL ;
           WARNING.print();
          }
        else if ( AccP > MasksizeP/2 )
          {
           AccP = MasksizeP/2 ;
           WARNING << "FINE: AccP for magfft can be half of the window size at max, changing to "  << AccP ;
           WARNING.print();
          }

        coheren = crosscorrelate(Master, Mask, OVS, AccL, AccP,
                                 offsetL, offsetP);// returned
        break;
        }
      // ====== New method (BK 13 Aug 2005) ======
      // ====== This should work for ERS/N1; different PRFs ======
      case fc_oversample: // slow (better): oversample complex data first
        {

        if ( AccL > MasksizeL/2 )              // [MA] fix for Acc being half of Masksize at max
          {
           AccL = MasksizeL/2 ;
           WARNING << "FINE: AccL for magfft can be half of the window size at max, changing to "  << AccL ;
           WARNING.print();
          }
        else if ( AccP > MasksizeP/2 )
          {
           AccP = MasksizeP/2 ;
           WARNING << "FINE: AccP for magfft can be half of the window size at max, changing to "  << AccP ;
           WARNING.print();
          }

        // ______ Oversample complex chips by factor two ______
        // ______ neg.shift input shifts to -> 0
         
        if (fineinput.shiftazi == 1)//Using the DC poly only
        {
        DEBUG.print("Centering azimuth spectrum patches around 0 using the DC polynomial");
        const real4 m_pixlo = real4(master.pixlo);// neg.shift -> 0
        const real4 s_pixlo = real4(mask.pixlo);// neg.shift -> 0
        
        shiftazispectrum(Master,minfo,-m_pixlo);// shift from fDC to zero
        shiftazispectrum(Mask,  sinfo,-s_pixlo);// shift from fDC to zero
        }
        DEBUG.print("Oversampling patches with factor two using zero padding");
        const matrix<complr4> m_ovs_chip = oversample(Master,2,2);
        const matrix<complr4> s_ovs_chip = oversample(Mask,  2,2);
        // ______ Peak in cross-corr of magnitude of ovs data ______
        DEBUG.print("Cross-correlating magnitude of ovs patches");
        DEBUG.print("(no need to shift spectrum back)");// (else account for ovs..)
        //coheren = coherencefft(m_ovs_chip, s_ovs_chip,
        //                       OVS/2, 2*AccL, 2*AccP,
        //                       offsetL,offsetP);
        coheren = crosscorrelate(m_ovs_chip, s_ovs_chip,
                                 OVS/2, 2*AccL, 2*AccP,
                                 offsetL,offsetP);
        offsetL /= 2.0;// orig data oversampled by factor 2
        offsetP /= 2.0;// orig data oversampled by factor 2
        break;
        }
       // ====== This should work for ERS/N1; different PRFs ======
      case fc_intensity: // slow (better): oversample complex data first
        {
            INFO<<  "intensity method "<<endl;
            INFO.print();
        if ( AccL > MasksizeL/2 )              // [MA] fix for Acc being half of Masksize at max
          {
           AccL = MasksizeL/2 ;
           WARNING << "FINE: AccL for magfft can be half of the window size at max, changing to "  << AccL ;
           WARNING.print();
          }
        else if ( AccP > MasksizeP/2 )
          {
           AccP = MasksizeP/2 ;
           WARNING << "FINE: AccP for magfft can be half of the window size at max, changing to "  << AccP ;
           WARNING.print();
          }

        // ______ Oversample complex chips by factor two ______
        // ______ neg.shift input shifts to -> 0
        // bool doCenterSpec = true;
         //Do not remove if the radar is Sentinel-1
        // if (minfo.sensor == SLC_S1A)
        //     doCenterSpec = false;
         
        if (fineinput.shiftazi == 1)
        {
        DEBUG.print("Centering azimuth spectrum patches around 0 using the DC polynomial");
        const real4 m_pixlo = real4(master.pixlo);// neg.shift -> 0
        const real4 s_pixlo = real4(mask.pixlo);// neg.shift -> 0
        
        shiftazispectrum(Master,minfo,-m_pixlo);// shift from fDC to zero
        shiftazispectrum(Mask,  sinfo,-s_pixlo);// shift from fDC to zero
        }
        DEBUG.print("Oversampling patches with factor two using zero padding");
        const matrix<complr4> m_ovs_chip = oversample(Master,2,2);
        const matrix<complr4> s_ovs_chip = oversample(Mask,  2,2);
        // ______ Peak in cross-corr of magnitude of ovs data ______
        DEBUG.print("Cross-correlating magnitude of ovs patches");
        DEBUG.print("(no need to shift spectrum back)");// (else account for ovs..)
        //coheren = coherencefft(m_ovs_chip, s_ovs_chip,
        //                       OVS/2, 2*AccL, 2*AccP,
        //                       offsetL,offsetP);
        coheren = intensity(m_ovs_chip, s_ovs_chip,
                                 OVS/2, 2*AccL, 2*AccP,
                                 offsetL,offsetP);
        offsetL /= 2.0;// orig data oversampled by factor 2
        offsetP /= 2.0;// orig data oversampled by factor 2
        break;
        }
           // ====== New method (MCC Sept 2014) ======
      case fc_coherence: //
        {

        if ( AccL > MasksizeL/2 )              // [MA] fix for Acc being half of Masksize at max
          {
           AccL = MasksizeL/2 ;
           WARNING << "FINE: AccL for magfft can be half of the window size at max, changing to "  << AccL ;
           WARNING.print();
          }
        else if ( AccP > MasksizeP/2 )
          {
           AccP = MasksizeP/2 ;
           WARNING << "FINE: AccP for magfft can be half of the window size at max, changing to "  << AccP ;
           WARNING.print();
          }
        
         matrix<real4> refPhaseDEM(mask.lines(),mask.pixels());//only for CCC, but I need to define it here
         
        // slcimage   deminfo = minfo;
          
        if (specified(fineinput.forefdem)) // if spec. then read the needed window
        {
          
            window zerooffset  (0,0,0,0) ;
           
            window demWin = master;
          
            
            demWin.linelo -= minfo.currentwindow.linelo + 1;
            demWin.linehi -= minfo.currentwindow.linelo + 1;
            demWin.pixlo  -= minfo.currentwindow.pixlo  + 1;
            demWin.pixhi  -= minfo.currentwindow.pixlo  + 1;
          
            
         //   INFO << "reading DEM phases from: " << fineinput.forefdem  << "\n";
         //   INFO << "        nof lines : " <<minfo.currentwindow.lines()<<endl;
         //   INFO << " demWin.linelo " << demWin.linelo << " info.currentwindow.linelo  " << minfo.currentwindow.linelo<<endl;
         //   INFO << " demWin.linehi  " << demWin.linehi << " info.currentwindow.linehi  " << minfo.currentwindow.linehi<<endl;
         //   INFO << " demWin.pixlo  " << demWin.pixlo << " info.currentwindow.pixlo  " << minfo.currentwindow.pixlo<<endl;
         //   INFO << " demWin.pixhi  " << demWin.pixhi << " info.currentwindow.pixhi  " << minfo.currentwindow.pixhi<<endl;
         //   INFO.print();
            
           // refPhaseDEM = deminfo.readdata(master);
            readfile(refPhaseDEM,fineinput.forefdem,minfo.currentwindow.lines(),demWin,zerooffset);
        }

        // ______ Oversample complex chips by factor two ______
        // ______ neg.shift input shifts to -> 0

        if (fineinput.shiftazi == 1)
        {
        DEBUG.print("Centering azimuth spectrum patches around 0 using the DC polynomial");
        const real4 m_pixlo = real4(master.pixlo);// neg.shift -> 0
        const real4 s_pixlo = real4(mask.pixlo);// neg.shift -> 0
        shiftazispectrum(Master,minfo,-m_pixlo);// shift from fDC to zero
        shiftazispectrum(Mask,  sinfo,-s_pixlo);// shift from fDC to zero
        }
    
        DEBUG.print("Oversampling patches with factor two using zero padding");

        uint ovsFc = 2;//2^4 
        const matrix<complr4> m_ovs_chip = oversample(Master,ovsFc,ovsFc);
        // MCC
        //s_ovs_chip is the oversample salve
        //It is going to be modified
        // s_ovs_chip spectrum will be centered at the same frequency as the master.
        // Otherwise the coherence is way understimated
    
        matrix<complr4> s_ovs_chip = oversample(Mask,  ovsFc,ovsFc);
        //size matrix
        uint L = m_ovs_chip.lines();
        uint P = m_ovs_chip.pixels();

     
     //reference phase
        matrix <real8> REFPHASE(Master.lines(),Master.pixels());      
        matrix <real8> allPixels(Master.lines(),Master.pixels()); 
        matrix <real8> allLines(Master.lines(),Master.pixels()); 
        
       const int16   MAXITER   = 10;        // maximum number of iterations
       const real8   CRITERPOS = 1e-6;      // 1micrometer
       const real8   CRITERTIM = 1e-10;     // seconds (~10-6 m)
       const real8 m_minpi4cdivlam = (-4*PI*SOL)/minfo.wavelength;
       const real8 s_minpi4cdivlam = (-4*PI*SOL)/sinfo.wavelength;

        real8 pixel = 0;           // master coord. system
        real8 line  = 0;
        // ______ Compute ref. phase for this buffer ______
    for (register int32 ll=0; ll<Master.lines(); ++ll)
      {
      for (register int32 pp=0; pp<Master.pixels(); ++pp)
        {
  
      
            
        pixel = pp + master.pixlo;
        line  = ll + master.linelo;
        allPixels(ll,pp)  = real8(pixel);
        allLines(ll,pp)   = real8(line);
        // ______ Compute range time for this pixel ______
        //const real8 m_trange = pix2tr(pixel,master.t_range1,master.rsr2x);
        const real8 m_trange = minfo.pix2tr(pixel);
        const real8 m_tazi   = minfo.line2ta(line); // added by FvL

        // ______ Compute xyz of this point P from position in image ______
        cn P;                                       // point, returned by lp2xyz
        lp2xyz(line,pixel,ell,minfo,masterorbit,
               P,MAXITER,CRITERPOS);
   
        // ______ Compute xyz for slave satellite from P ______
        real8 s_tazi;                               // returned, not used
        real8 s_trange;                             // returned
        xyz2t(s_tazi,s_trange,sinfo,
              slaveorbit,
              P,MAXITER,CRITERTIM);

        if (specified(fineinput.forefdem) ) 
        {
          
            //refPhaseDEM is the ref phase including DEM
          REFPHASE(ll,pp) = m_minpi4cdivlam*m_trange -
                            s_minpi4cdivlam*s_trange + real8(refPhaseDEM(ll,pp));
        }
        else
        {
        REFPHASE(ll,pp) = m_minpi4cdivlam*m_trange -
                          s_minpi4cdivlam*s_trange;
        }
       
        //add ref phase to slave, or subtract it from master, both are the same
        Mask(ll,pp) *=   complr4(fast_cos(REFPHASE(ll,pp)),fast_sin(REFPHASE(ll,pp)));
      }
    }
        
        
    //    std::ostringstream partName ;
    //    partName<<"REFPHASE"<< i<<".bin";
        
    //    std::string strfilenameRamp = partName.str();
    //    char * filenameRamp = new char [strfilenameRamp.size()+1];

        //char filenameRamp[strfilenameRamp.size()+1];
    //    strcpy( filenameRamp,strfilenameRamp.c_str());
        
        
   //    ofstream ofilefftIfg;    
   //    openfstream(ofilefftIfg,filenameRamp,true);
   //    bk_assert(ofilefftIfg,filenameRamp,__FILE__,__LINE__);
   //    ofilefftIfg << REFPHASE;
      
   //    ofilefftIfg.close();
      
       
          
      //  fast_dotmultconjphase(Mask,REFPHASE);
        s_ovs_chip = oversample(Mask,  ovsFc,ovsFc);
//testing        
      
        
//testing
        
        
        //s_ovs_chip is centered at the same value as the master
        //I create it constant because the original code was also a const
       const  matrix<complr4> detr_s_ovs_chip = s_ovs_chip;
        coheren = coherencefft(m_ovs_chip, detr_s_ovs_chip,
                                 OVS/2, 2*AccL, 2*AccP,
                                        offsetL,offsetP);
        
        offsetL /= real8(ovsFc);// orig data oversampled by factor 2
        offsetP /= real8(ovsFc);// orig data oversampled by factor 2
        
       
        break;
        }

      case fc_magspace:
        coheren = coherencespace(fineinput, Master, Mask, offsetL, offsetP);
        break;
      default:
        PRINT_ERROR("unknown method for fine coregistration.")
        throw(unhandled_case_error);
      } // switch method
      Result(i,0) = initoffsetL + offsetL;
      Result(i,1) = initoffsetP + offsetP;
      Result(i,2) = coheren;
      INFO << "Fine offset between small patches:   "
           << Result(i,0) << ", " << Result(i,1)
           << " (coh="<<coheren<<")";
      INFO.print();
    } // for nwin

  

  // ______ Position approx. with respect to center of window ______
  // ______ correct position array for center instead of lower left ______
  for (uint i=0; i<Nwin; i++)
    {
    Minlminp(i,0) += uint(0.5*MasksizeL);
    Minlminp(i,1) += uint(0.5*MasksizeP);
    }


  // ______Write to files______
  ofstream scratchlogfile("scratchlogfine", ios::out | ios::trunc);
  bk_assert(scratchlogfile,"finecoreg: scratchlogfine",__FILE__,__LINE__);
  scratchlogfile << "\n\n*******************************************************************"
                 << "\n* FINE_COREGISTRATION"
                 << "\n*******************************************************************"
                 << "\nNumber of correlation windows: \t"
                 <<  Nwin
                 << "\nwindow size (l,p):             \t"
                 <<  MasksizeL << ", " << MasksizeP
                 << "\nInitial offsets:               \t"
                 <<  initoffsetL << ", " << initoffsetP
                 << "\nOversampling factor:           \t"
                 <<  OVS
                 << "\n\nNumber \tposl \tposp \toffsetl offsetp\tcorrelation\n";
  for (uint i=0;i<Nwin;i++)
    { // MA remove NaN valued coh windows from  Nwin, to be used in resfile
    if ( isnan( Result(i,2) ) ) NwinNANrm = NwinNANrm - 1;
    scratchlogfile
      << setiosflags(ios::fixed)
      << setiosflags(ios::showpoint)
      << setiosflags(ios::right)
      << setw(8)
      << setprecision(0)
      << i << " "
      << Minlminp(i,0) << " "
      << Minlminp(i,1) << " "
      << setprecision(3)
      << Result(i,0) << " "
      << Result(i,1) << " "
      << setprecision(2)
      << Result(i,2) << endl;
     }
  scratchlogfile << "\n*******************************************************************\n";
  scratchlogfile.close();

  ofstream scratchresfile("scratchresfine", ios::out | ios::trunc);
  bk_assert(scratchresfile,"finecoreg: scratchresfine",__FILE__,__LINE__);

  scratchresfile
    << "\n\n*******************************************************************"
    << "\n*_Start_" << processcontrol[pr_i_fine]
    << "\n*******************************************************************"
    << "\nInitial offsets (l,p):             \t"
    <<  initoffsetL << ", " << initoffsetP
    << "\nWindow_size_L_for_correlation:     \t"
    <<  MasksizeL
    << "\nWindow_size_P_for_correlation:     \t"
    <<  MasksizeP
    << "\nMax. offset that can be estimated: \t"
    <<  MasksizeL/2
    << "\nPeak search ovs window (l,p):      \t"
    <<  2*AccL << " , " << 2*AccP
    << "\nOversampling factor:               \t"
    <<  OVS
    << "\nNumber_of_correlation_windows:     \t"
    //Changed by MA <<  Nwin
    <<  NwinNANrm
    << "\nNumber \tposL \tposP \toffsetL offsetP\tcorrelation\n";
  scratchresfile.close();

  FILE *resfile;
  resfile=fopen("scratchresfine","a");
  for (uint i=0; i<Nwin; i++)
   { //MA remove/skip NaN values before writing resfile.
   if  ( isnan(Result(i,2)) )  continue;
    fprintf(resfile,"%4.0f %5.0f %5.0f %# 11.5f %# 11.5f %# 10.5f\n",
            real4(i), real4(Minlminp(i,0)), real4(Minlminp(i,1)),
            Result(i,0), Result(i,1), Result(i,2));
  }

  fprintf(resfile,
  "\n*******************************************************************");
  fprintf(resfile,"%s%s%s",
  "\n* End_", processcontrol[pr_i_fine], "_NORMAL");
  fprintf(resfile,
  "\n*******************************************************************\n");

  // ______Tidy up______
  fclose(resfile);
  PROGRESS.print("Fine coregistration finished.");
  } // END finecoreg


/****************************************************************
 * coherencefft                                                 *
 *                                                              *
 * coherence in spectral domain by fft's based on magnitude     *
 *  uses extension with zeros.  returns relative shift between  *
 *  two patched and the estimated correlation.                  *
 *                                                              *
 * input:                                                       *
 *  - Master                                                    *
 *  - Mask (slave of size Master)                               *
 * - ovsfactor oversampling factor                              *
 *
 * AccL i.e., accuracy in Azimuth , search window               *
 *  * AccP i.e. accuracy in Range , search window               *
 *  * output:                                                   *
 *  - coherence value [0 1]                                     *
 *  - updated offsetL, P                                        *
 *    positive offsetL: Mask is shifted up                      *
 *    positive offsetP: Mask is shifted left                    *
 *                                                              *
 * Miguel Caro Cuenca  using code from Bert Kampes*
 *  Sept 2014 *
 ****************************************************************/
real4 coherencefft(
        const matrix<complr4> &Master,  // data
        const matrix<complr4> &Mask,    // data
        const int32 ovsfactor,          // ovs factor (1 for not) (not uint)
        const int32 AccL,               // search window (not uint)
        const int32 AccP,               // search window (not uint)
        real4 &offsetL,                 // returned peak corr
        real4 &offsetP)                 // returned peak corr
  {
  TRACE_FUNCTION("coherencefft (MCC Sept-2014)")
  // ______ Internal variables ______
  const int32 L     = Master.lines();
  const int32 P     = Master.pixels();
  const int32 twoL  = 2*L;
  const int32 twoP  = 2*P;
  const int32 halfL = L/2;
  const int32 halfP = P/2;

  // ______ Check input ______
  if (Master.lines() != Mask.lines() || Master.pixels() != Mask.pixels())
    {
    PRINT_ERROR("Mask, Master not same size.")
    throw(input_error);
    }
  if (!(ispower2(L) || ispower2(P)))
    {
    PRINT_ERROR("Mask, Master size not power of 2.")
    throw(input_error);
    }
  if (!ispower2(ovsfactor))
    {
    PRINT_ERROR("coherencefft factor not power of 2.")
    throw(input_error);
    }


  DEBUG.print("Calculating sum of the pixel power for COHerent cross-correlation");

  // sum pixel power master and Mask
  real4 sumPowMaster =0.0;
  real4 sumPowMask   =0.0;

   //Calculate sum of square norms to normalize coherence //
  //register int32 l,p;
  for (register int32 l=0; l<=L-1; ++l)         // all shifts
    {
    for (register int32 p=0; p<=P-1; ++p)       // all shifts
      {

        sumPowMaster += (sqr(Master(l,p).real()) + sqr(Master(l,p).imag()));
        sumPowMask   += (sqr(Mask(l,p).real())   + sqr(Mask(l,p).imag()));

      }
    }

  //Normalization constant see eq. 4.3.2 in Hanssen, (2001).
  real4 prodSum = sqrt(sumPowMaster*sumPowMask);


  // ====== (1) Compute cross-products of Master/Mask ======
  // ______ Pad with N zeros to prevent periodical convolution ______
  matrix<complr4> Master2(twoL,twoP);           // initial 0
  matrix<complr4> Mask2(twoL,twoP);             // initial 0
  window windef(0,0,0,0);                       // defaults to total matrix
  window win1(0, L-1, 0, P-1);
  window win2(halfL, halfL+L-1, halfP, halfP+P-1);
  Master2.setdata(win1,Master,windef);      // copy of master mcc
  Mask2.setdata(win2,Mask,windef);          // copy of slave  mcc
  

  // ______ Crossproducts in spectral/space domain ______
  // ______ Use Mask2 to store cross products temporarly ______
  
  // fft(Master2,2);                             // forward transform over rows
  // fft(Master2,1);
 
  fft2d(Master2);
 
  //MCC DEBUG
#ifdef REALLYDEBUG
 INFO << "nof lines ifftMask2 : "<< Master2.lines() ;
 INFO.print();
  ofstream ofileccoh;
  openfstream(ofileccoh, "fftMaster.bin", true);
  bk_assert(ofileccoh, "fftMaster.bin", __FILE__, __LINE__);
  ofileccoh << Master2;
  ofileccoh.close();

    //MCC DEBUG
 #endif

   //fft(Mask2,2);                             // forward transform over rows
   //fft(Mask2,1);
 
  fft2d(Mask2);
 
  Master2.conj();
 
  Mask2 *= Master2;      // corr = conj(M).*S
  
  //ifft(Mask2,2);
 // ifft(Mask2,1);
  ifft2d(Mask2);         // real(Mask2): cross prod. in space

  
  
  //MCC DEBUG
#ifdef REALLYDEBUG
 INFO << "nof lines ifftMask2 : "<< Mask2.lines() ;
 INFO.print();
  ofstream ofileccoh;
  openfstream(ofileccoh, "iffMask2r.bin", true);
  bk_assert(ofileccoh, "iffMask2.bin", __FILE__, __LINE__);
  ofileccoh << Mask2;
  ofileccoh.close();

    //MCC DEBUG
 #endif
  // ====== (2) compute norms for all shifts ======
  // ______ use tricks to do this efficient ______
  // ______ real(Mask2) contains cross-products ______
  // ______ Mask2(0,0):Mask2(N,N) for shifts = -N/2:N/2 ______
  // ______ rest of this matrix should not be used ______
  // ______ Use Master2 to store intensity here in re,im ______
  Master2.clean();                              // reset to zeros




  // ====== (3) find maximum correlation at pixel level ======
  matrix<complr4> Coherence(L+1,P+1);//coherence for each shift mcc
  real4 maxcorr  = -999.0;
  int32 maxcorrL = 0;// local index in Covar of maxcorr
  int32 maxcorrP = 0;// local index in Covar of maxcorr

//max Corr Mag
  real4 currentMagCoh = 0.0;
  for (register int32 l=halfL-AccL; l<halfL+AccL; ++l)         // all shifts
    {
    for (register int32 p=halfP-AccP; p<halfP+AccP; ++p)       // all shifts
      {
      Coherence(l,p) = (Mask2(l,p)) / prodSum;
      //Coherence(l,p) = (Mask2(l,p)) ;
      currentMagCoh  = sqrt(sqr(real(Coherence(l,p))) + sqr(imag(Coherence(l,p))));

      //if ( Covar(l,p) > 1 ) { Covar(l,p) = -999.0 ; }  // MA quick fix for values bigger then 1
      if ( currentMagCoh > maxcorr)
        {

        maxcorr  = currentMagCoh;
        maxcorrL = l;// local index in Magnitude of Coh of maxcorr
        maxcorrP = p;// local index in Magnitude Coh of maxcorr
        if (maxcorr > 1 ) continue; // [MA] stop checking this chip further for maxcorr
        }
      }
    }

  //From here the rest is the same as in correlation
  offsetL = -halfL + maxcorrL; // update by reference
  offsetP = -halfP + maxcorrP; // update by reference
  DEBUG << "Pixel level offset:     "
        << offsetL << ", " << offsetP << " (corr=" << maxcorr << ")";
  DEBUG.print();

  // ====== (4) oversample to find peak sub-pixel ======
  // ====== Estimate shift by oversampling estimated correlation ======
  if (ovsfactor>1)
    {

    // --- (4a) get little chip around max. corr, if possible ---
    // --- make sure that we can copy the data ---
    if (maxcorrL<AccL)
      {
      DEBUG << "Careful, decrease AccL or increase winsizeL";
      DEBUG.print();
      maxcorrL = AccL;
      }
    if (maxcorrP<AccP)
      {
      DEBUG << "Careful, decrease AccP or increase winsizeP";
      DEBUG.print();
      maxcorrP = AccP;
      }
    if (maxcorrL>(L-AccL))
      {
      DEBUG << "Careful, decrease AccL or increase winsizeL";
      DEBUG.print();
      maxcorrL = L-AccL;
      }
    if (maxcorrP>(P-AccP))
      {
      DEBUG << "Careful, decrease AccP or increase winsizeP";
      DEBUG.print();
      maxcorrP = P-AccP;
      }
    // --- Now get the chip around max corr ---

    //Using the magnitude of the coherence
    window win3(maxcorrL-AccL,maxcorrL+AccL-1, maxcorrP-AccP,maxcorrP+AccP-1);
    const matrix<real4> chip(win3,magnitude(Coherence));// construct as part



    // --- (4b) oversample chip to obtain sub-pixel max ---
    uint offL;
    uint offP;
    maxcorr =  max(oversample(chip, ovsfactor, ovsfactor), offL,offP);
    offsetL = -halfL + maxcorrL - AccL + real4(offL) / real4(ovsfactor);
    offsetP = -halfP + maxcorrP - AccP + real4(offP) / real4(ovsfactor);

    DEBUG << "Sub-pixel level offset: "
          << offsetL << ", " << offsetP << " (corr=" << maxcorr << ")";
    DEBUG.print();
    }
    return maxcorr;
} // END coherencefft





/****************************************************************
 * crosscorrelate                                               *
 *                                                              *
 * cross correlation of zero-meaned magnitude of two patches    *
 *  uses ffts, some tricks for speed-up.                        *
 *  optionally improves peak position to sub-pixel.             *
 * This is an improvement upon coherencefft: faster and local peak *
 * Better to put this in matrixspecs                            *
 *                                                              *
 * input:                                                       *
 *  - Master                                                    *
 *  - Mask (same size as Master)                                *
 * output:                                                      *
 *  - peak correlation value [-1 1]                             *
 *  - updated offsetL, P                                        *
 *    positive offsetL: Mask is shifted up                      *
 *    positive offsetP: Mask is shifted left                    *
 *                                                              *
 * Bert Kampes, 12-Aug-2005                                     *
 ****************************************************************/
real4 crosscorrelate(
        const matrix<complr4> &Master,  // data
        const matrix<complr4> &Mask,    // data
        const int32 ovsfactor,          // ovs factor (1 for not) (not uint)
        const int32 AccL,               // search window (not uint)
        const int32 AccP,               // search window (not uint)
        real4 &offsetL,                 // returned peak corr
        real4 &offsetP)                 // returned peak corr
  {
  TRACE_FUNCTION("crosscorrelate (BK 12-Aug-2005)")
  // ______ Internal variables ______
  const int32 L     = Master.lines();
  const int32 P     = Master.pixels();
  const int32 twoL  = 2*L;
  const int32 twoP  = 2*P;
  const int32 halfL = L/2;
  const int32 halfP = P/2;
  const int32 minIfgAmp =  -99999;       // Minimum amplitude of a ifg to be considered as window for coarse coreg
  // ______ Check input ______
  if (Master.lines() != Mask.lines() || Master.pixels() != Mask.pixels())
    {
    PRINT_ERROR("Mask, Master not same size.")
    throw(input_error);
    }
  if (!(ispower2(L) || ispower2(P)))
    {
    PRINT_ERROR("Mask, Master size not power of 2.")
    throw(input_error);
    }
  if (!ispower2(ovsfactor))
    {
    PRINT_ERROR("coherencefft factor not power of 2")
    throw(input_error);
    }

  // ______ Zero mean magnitude images ______
  DEBUG.print("Using de-meaned magnitude patches for incoherent cross-correlation");
  matrix<real4> magMaster = magnitude(Master);
  matrix<real4> magMask   = magnitude(Mask);
  magMaster              -= mean(magMaster);
  magMask                -= mean(magMask);

  // ====== (1) Compute cross-products of Master/Mask ======
  // ______ Pad with N zeros to prevent periodical convolution ______
  matrix<complr4> Master2(twoL,twoP);           // initial 0
  matrix<complr4> Mask2(twoL,twoP);             // initial 0
  window windef(0,0,0,0);                       // defaults to total matrix
  window win1(0, L-1, 0, P-1);
  window win2(halfL, halfL+L-1, halfP, halfP+P-1);
  Master2.setdata(win1,mat2cr4(magMaster),windef);      // zero-mean magnitude
  Mask2.setdata(win2,mat2cr4(magMask),windef);          // zero-mean magnitude
  // ______ Crossproducts in spectral/space domain ______
  // ______ Use Mask2 to store cross products temporarly ______
  fft2d(Master2);
  fft2d(Mask2);
  Master2.conj();
  Mask2 *= Master2;      // corr = conj(M).*S
  ifft2d(Mask2);         // real(Mask2): cross prod. in space

  // ====== (2) compute norms for all shifts ======
  // ______ use tricks to do this efficient ______
  // ______ real(Mask2) contains cross-products ______
  // ______ Mask2(0,0):Mask2(N,N) for shifts = -N/2:N/2 ______
  // ______ rest of this matrix should not be used ______
  // ______ Use Master2 to store intensity here in re,im ______
  Master2.clean();                              // reset to zeros
  register int32 l,p;
  // --- flipud(fliplr(master^2) in real ---
  // --- mask^2 in imag part; this saves a fft ---
  // --- automatically the real/imag parts contain the norms ---
  for (l=L; l<twoL; ++l)
    for (p=P; p<twoP; ++p)
      Master2(l,p) = complr4(
        sqr(magMaster(twoL-1-l,twoP-1-p)),
        sqr(magMask(l-L,p-P)));
  // --- use a static block for fast computation ---
  static matrix<complr4> BLOCK;// initial 0
  if (int32(BLOCK.lines())!=twoL || int32(BLOCK.pixels())!=twoP)
    {
    DEBUG << "crosscorrelate:changing static block to size ["
          << twoL << ", " << twoP << "]";
    DEBUG.print();
    BLOCK.resize(twoL,twoP);
    for (l=halfL; l<halfL+L; ++l)
      for (p=halfP; p<halfP+P; ++p)
        BLOCK(l,p) = complr4(1.0);
    fft2d(BLOCK);
    BLOCK.conj();// static variable: keep this for re-use
    }
  // _____ Compute the cross-products, i.e., the norms for each shift ---
  // ______ Master2(0,0):Master2(N,N) for shifts = -N/2:N/2 ______
  fft2d(Master2);
  Master2 *= BLOCK;
  ifft2d(Master2);// real(Master2): powers of Master; imag(Master2): Mask


  // ====== (3) find maximum correlation at pixel level ======
  matrix<real4> Covar(L+1,P+1);// correlation for each shift
  real4 maxcorr  = -999.0;
  real4 maxCorrAmp = 0;
  int32 maxcorrL = 0;// local index in Covar of maxcorr
  int32 maxcorrP = 0;// local index in Covar of maxcorr
  for (register int32 l=halfL-AccL; l<halfL+AccL; ++l)         // all shifts
    {
    for (register int32 p=halfP-AccP; p<halfP+AccP; ++p)       // all shifts
      {
        maxCorrAmp =  sqrt(real(Master2(l,p))*imag(Master2(l,p)));
        Covar(l,p) = real(Mask2(l,p)) /maxCorrAmp;
                   //sqrt(real(Master2(l,p))*imag(Master2(l,p)));


      //if ( Covar(l,p) > 1 ) { Covar(l,p) = -999.0 ; }  // MA quick fix for values bigger then 1
      //if (Covar(l,p) > maxcorr && Covar(l,p)<1.09)// MCC Covar(l,p)<1.09 fixed problem for amplitude =0, which produces a covar=Inf
        if (Covar(l,p) > maxcorr && maxCorrAmp>minIfgAmp)
        {
        maxcorr  = Covar(l,p);
        maxcorrL = l;// local index in Covar of maxcorr
        maxcorrP = p;// local index in Covar of maxcorr
        if (maxcorr > 1 ) continue; // [MA] stop checking this chip further for maxcorr
        }
      }
    }
//  INFO << "PowMaster : " <<   sqrt(real(Master2(maxcorrL,maxcorrP))*imag(Master2(maxcorrL,maxcorrP)));
 //  INFO.print();
  offsetL = -halfL + maxcorrL; // update by reference
  offsetP = -halfP + maxcorrP; // update by reference
  DEBUG << "Pixel level offset:     "
        << offsetL << ", " << offsetP << " (corr=" << maxcorr << ")";
  DEBUG.print();

  // ====== (4) oversample to find peak sub-pixel ======
  // ====== Estimate shift by oversampling estimated correlation ======
  if (ovsfactor>1)
    {
    // --- (4a) get little chip around max. corr, if possible ---
    // --- make sure that we can copy the data ---
    if (maxcorrL<AccL)
      {
      DEBUG << "Careful, decrease AccL or increase winsizeL";
      DEBUG.print();
      maxcorrL = AccL;
      }
    if (maxcorrP<AccP)
      {
      DEBUG << "Careful, decrease AccP or increase winsizeP";
      DEBUG.print();
      maxcorrP = AccP;
      }
    if (maxcorrL>(L-AccL))
      {
      DEBUG << "Careful, decrease AccL or increase winsizeL";
      DEBUG.print();
      maxcorrL = L-AccL;
      }
    if (maxcorrP>(P-AccP))
      {
      DEBUG << "Careful, decrease AccP or increase winsizeP";
      DEBUG.print();
      maxcorrP = P-AccP;
      }
    // --- Now get the chip around max corr ---
    //matrix<real4> chip(2*AccL,2*AccP);// locally oversample corr
    //for (l=maxcorrL-AccL; l<maxcorrL+AccL; ++l)
    //  for (p=maxcorrP-AccP; p<maxcorrP+AccP; ++p)
    //    chip(l-(maxcorrL-AccL),p-(maxcorrP-AccP)) = Covar(l,p);
    window win3(maxcorrL-AccL,maxcorrL+AccL-1, maxcorrP-AccP,maxcorrP+AccP-1);
    const matrix<real4> chip(win3,Covar);// construct as part
    // --- (4b) oversample chip to obtain sub-pixel max ---
    uint offL;
    uint offP;
    maxcorr =  max(oversample(chip, ovsfactor, ovsfactor), offL,offP);
    offsetL = -halfL + maxcorrL - AccL + real4(offL)/real4(ovsfactor);
    offsetP = -halfP + maxcorrP - AccP + real4(offP)/real4(ovsfactor);
    DEBUG << "Sub-pixel level offset: "
          << offsetL << ", " << offsetP << " (corr=" << maxcorr << ")";
    DEBUG.print();
    }
  return maxcorr;
  } // END crosscorrelate




/****************************************************************
 * intensity                                               *
 *                                                              *
 * cross correlation of normalized intensity of two patches    *
 *  uses ffts, some tricks for speed-up.                        *
 *  optionally improves peak position to sub-pixel.             *
 * This is an improvement upon coherencefft: faster and local peak *
 * Better to put this in matrixspecs                            *
 *                                                              *
 * input:                                                       *
 *  - Master                                                    *
 *  - Mask (same size as Master)                                *
 * output:                                                      *
 *  - peak correlation value [-1 1]                             *
 *  - updated offsetL, P                                        *
 *    positive offsetL: Mask is shifted up                      *
 *    positive offsetP: Mask is shifted left                    *
 *                                                              *
 * Bert Kampes, 12-Aug-2005    
 * MCC change magnitude for intensity Dec 2014                           *
 ****************************************************************/
real4 intensity(
        const matrix<complr4> &Master,  // data
        const matrix<complr4> &Mask,    // data
        const int32 ovsfactor,          // ovs factor (1 for not) (not uint)
        const int32 AccL,               // search window (not uint)
        const int32 AccP,               // search window (not uint)
        real4 &offsetL,                 // returned peak corr
        real4 &offsetP)                 // returned peak corr
  {
  TRACE_FUNCTION("crosscorrelate (BK 12-Aug-2005)")
  // ______ Internal variables ______
  const int32 L     = Master.lines();
  const int32 P     = Master.pixels();
  const int32 twoL  = 2*L;
  const int32 twoP  = 2*P;
  const int32 halfL = L/2;
  const int32 halfP = P/2;
  const int32 minIfgAmp =  -99999;       // Minimum amplitude of a ifg to be considered as window for coarse coreg
  // ______ Check input ______
  if (Master.lines() != Mask.lines() || Master.pixels() != Mask.pixels())
    {
    PRINT_ERROR("Mask, Master not same size.")
    throw(input_error);
    }
  if (!(ispower2(L) || ispower2(P)))
    {
    PRINT_ERROR("Mask, Master size not power of 2.")
    throw(input_error);
    }
  if (!ispower2(ovsfactor))
    {
    PRINT_ERROR("coherencefft factor not power of 2")
    throw(input_error);
    }

  // ______ Zero mean magnitude images ______
  DEBUG.print("Using de-meaned magnitude patches for incoherent cross-correlation");
  //matrix<real4> magMaster = magnitude(Master);
  //matrix<real4> magMask   = magnitude(Mask);
  matrix<real4> magMaster = intensity(Master);
  matrix<real4> magMask   = intensity(Mask);
  magMaster              /= mean(magMaster);
  magMask                /= mean(magMask);

  // ====== (1) Compute cross-products of Master/Mask ======
  // ______ Pad with N zeros to prevent periodical convolution ______
  matrix<complr4> Master2(twoL,twoP);           // initial 0
  matrix<complr4> Mask2(twoL,twoP);             // initial 0
  window windef(0,0,0,0);                       // defaults to total matrix
  window win1(0, L-1, 0, P-1);
  window win2(halfL, halfL+L-1, halfP, halfP+P-1);
  Master2.setdata(win1,mat2cr4(magMaster),windef);      // zero-mean magnitude
  Mask2.setdata(win2,mat2cr4(magMask),windef);          // zero-mean magnitude
  // ______ Crossproducts in spectral/space domain ______
  // ______ Use Mask2 to store cross products temporarly ______
  fft2d(Master2);
  fft2d(Mask2);
  Master2.conj();
  Mask2 *= Master2;      // corr = conj(M).*S
  ifft2d(Mask2);         // real(Mask2): cross prod. in space

  // ====== (2) compute norms for all shifts ======
  // ______ use tricks to do this efficient ______
  // ______ real(Mask2) contains cross-products ______
  // ______ Mask2(0,0):Mask2(N,N) for shifts = -N/2:N/2 ______
  // ______ rest of this matrix should not be used ______
  // ______ Use Master2 to store intensity here in re,im ______
  Master2.clean();                              // reset to zeros
  register int32 l,p;
  // --- flipud(fliplr(master^2) in real ---
  // --- mask^2 in imag part; this saves a fft ---
  // --- automatically the real/imag parts contain the norms ---
  for (l=L; l<twoL; ++l)
    for (p=P; p<twoP; ++p)
      Master2(l,p) = complr4(
        sqr(magMaster(twoL-1-l,twoP-1-p)),
        sqr(magMask(l-L,p-P)));
  // --- use a static block for fast computation ---
  static matrix<complr4> BLOCK;// initial 0
  if (int32(BLOCK.lines())!=twoL || int32(BLOCK.pixels())!=twoP)
    {
    DEBUG << "crosscorrelate:changing static block to size ["
          << twoL << ", " << twoP << "]";
    DEBUG.print();
    BLOCK.resize(twoL,twoP);
    for (l=halfL; l<halfL+L; ++l)
      for (p=halfP; p<halfP+P; ++p)
        BLOCK(l,p) = complr4(1.0);
    fft2d(BLOCK);
    BLOCK.conj();// static variable: keep this for re-use
    }
  // _____ Compute the cross-products, i.e., the norms for each shift ---
  // ______ Master2(0,0):Master2(N,N) for shifts = -N/2:N/2 ______
  fft2d(Master2);
  Master2 *= BLOCK;
  ifft2d(Master2);// real(Master2): powers of Master; imag(Master2): Mask


  // ====== (3) find maximum correlation at pixel level ======
  matrix<real4> Covar(L+1,P+1);// correlation for each shift
  real4 maxcorr  = -999.0;
  real4 maxCorrAmp = 0;
  int32 maxcorrL = 0;// local index in Covar of maxcorr
  int32 maxcorrP = 0;// local index in Covar of maxcorr
 for (register int32 l=halfL-AccL; l<halfL+AccL; ++l)         // all shifts
    {
    for (register int32 p=halfP-AccP; p<halfP+AccP; ++p)       // all shifts
      {
        maxCorrAmp =  sqrt(real(Master2(l,p))*imag(Master2(l,p)));
        Covar(l,p) = real(Mask2(l,p)) /maxCorrAmp;
                   //sqrt(real(Master2(l,p))*imag(Master2(l,p)));


      //if ( Covar(l,p) > 1 ) { Covar(l,p) = -999.0 ; }  // MA quick fix for values bigger then 1
      //if (Covar(l,p) > maxcorr && Covar(l,p)<1.09)// MCC Covar(l,p)<1.09 fixed problem for amplitude =0, which produces a covar=Inf
        if (Covar(l,p) > maxcorr && maxCorrAmp>minIfgAmp)
        {
        maxcorr  = Covar(l,p);
        maxcorrL = l;// local index in Covar of maxcorr
        maxcorrP = p;// local index in Covar of maxcorr
        if (maxcorr > 1 ) continue; // [MA] stop checking this chip further for maxcorr
        }
      }
    }
//  INFO << "PowMaster : " <<   sqrt(real(Master2(maxcorrL,maxcorrP))*imag(Master2(maxcorrL,maxcorrP)));
 //  INFO.print();
  offsetL = -halfL + maxcorrL; // update by reference
  offsetP = -halfP + maxcorrP; // update by reference
  DEBUG << "Pixel level offset:     "
        << offsetL << ", " << offsetP << " (corr=" << maxcorr << ")";
  DEBUG.print();

  // ====== (4) oversample to find peak sub-pixel ======
  // ====== Estimate shift by oversampling estimated correlation ======
  if (ovsfactor>1)
    {
    // --- (4a) get little chip around max. corr, if possible ---
    // --- make sure that we can copy the data ---
    if (maxcorrL<AccL)
      {
      DEBUG << "Careful, decrease AccL or increase winsizeL";
      DEBUG.print();
      maxcorrL = AccL;
      }
    if (maxcorrP<AccP)
      {
      DEBUG << "Careful, decrease AccP or increase winsizeP";
      DEBUG.print();
      maxcorrP = AccP;
      }
    if (maxcorrL>(L-AccL))
      {
      DEBUG << "Careful, decrease AccL or increase winsizeL";
      DEBUG.print();
      maxcorrL = L-AccL;
      }
    if (maxcorrP>(P-AccP))
      {
      DEBUG << "Careful, decrease AccP or increase winsizeP";
      DEBUG.print();
      maxcorrP = P-AccP;
      }
    // --- Now get the chip around max corr ---
    //matrix<real4> chip(2*AccL,2*AccP);// locally oversample corr
    //for (l=maxcorrL-AccL; l<maxcorrL+AccL; ++l)
    //  for (p=maxcorrP-AccP; p<maxcorrP+AccP; ++p)
    //    chip(l-(maxcorrL-AccL),p-(maxcorrP-AccP)) = Covar(l,p);
    window win3(maxcorrL-AccL,maxcorrL+AccL-1, maxcorrP-AccP,maxcorrP+AccP-1);
    const matrix<real4> chip(win3,Covar);// construct as part
    // --- (4b) oversample chip to obtain sub-pixel max ---
    uint offL;
    uint offP;
    maxcorr =  max(oversample(chip, ovsfactor, ovsfactor), offL,offP);
    offsetL = -halfL + maxcorrL - AccL + real4(offL)/real4(ovsfactor);
    offsetP = -halfP + maxcorrP - AccP + real4(offP)/real4(ovsfactor);
    DEBUG << "Sub-pixel level offset: "
          << offsetL << ", " << offsetP << " (corr=" << maxcorr << ")";
    DEBUG.print();
    }
  return maxcorr;
  } // END intensity



/****************************************************************
 * coherencespace                                               *
 *                                                              *
 * coherence in space domain based on magnitude                 *
 *  uses extension with zeros                                   *
 *                                                              *
 * input:                                                       *
 *  - Master                                                    *
 *  - Mask (size Master)                                        *
 * output:                                                      *
 *  - coherence value                                           *
 *  - updated offsetL, P                                        *
 *                                                              *
 *    Bert Kampes, 03-Feb-1999                                  *
 ****************************************************************/
real4 coherencespace(
        const input_fine &fineinput,
        const matrix<complr4> &Master,          // complex data
        const matrix<complr4> &Mask,            // complex data
        real4 &offsetL,                         // returned
        real4 &offsetP)                         // returned
  {
  TRACE_FUNCTION("coherencespace (BK 03-Feb-1999)")

  // ______ Internal variables ______
  const int32 L         = Master.lines();
  const int32 P         = Master.pixels();
  const int32 AccL      = fineinput.AccL;
  const int32 AccP      = fineinput.AccP;
  const uint factor     = fineinput.osfactor;

  // ______Select parts of Master/slave______
  const int32 MasksizeL = L - 2*AccL;
  const int32 MasksizeP = P - 2*AccP;

  // ______ Check input ______
  if (!ispower2(AccL) || !ispower2(AccP))
    {
    PRINT_ERROR("AccL should be power of 2 for oversampling.")
    throw(input_error);
    }
  if (MasksizeL < 4 || MasksizeP < 4)
    {
    PRINT_ERROR("Correlationwindow size too small (<4; size= FC_winsize-2*FC_Acc).")
    throw(input_error);
    }

  // ______Shift center of Slave over Master______
  window winmask(AccL, AccL+MasksizeL-1,
                 AccP, AccP+MasksizeP-1);

  matrix<real4> coher(2*AccL,2*AccP);           // store result
                                                // 1st element: shift==AccL
  window windef(0, 0, 0, 0);                    // defaults to total

  switch (fineinput.method)
    {
    case fc_cmplxspace:
      {
      PRINT_ERROR("not implemented in v1.0")
      throw(unhandled_case_error);
      break;
      }

    case fc_magspace:
      {
      matrix<real4> magMask   = magnitude(Mask);        // magnitude
      magMask                -= mean(magMask);          // subtract mean
      matrix<real4> Mask2(winmask,magMask);             // construct as part
      real4 normmask          = norm2(Mask2);
      matrix<real4> Master2(MasksizeL, MasksizeP);
      matrix<real4> magMaster = magnitude(Master);
      magMaster              -= mean(magMaster);
      window winmaster;
      for (register int32 i=0;i<2*AccL;i++)
        {
        winmaster.linelo = i;
        winmaster.linehi = i+MasksizeL-1;
        for (register int32 j=0;j<2*AccP;j++)
          {
          winmaster.pixlo = j;
          winmaster.pixhi = j+MasksizeP-1;
          Master2.setdata(windef,magMaster,winmaster);
          // ______Coherence for this position______
          real4 cohs1s2 = 0.;
          real4 cohs1s1 = 0.;
          for (register int32 k=0;k<MasksizeL;k++)
            {
            for (register int32 l=0;l<MasksizeP;l++)
              {
              cohs1s2 += (Master2(k,l) * Mask2(k,l));
              cohs1s1 += sqr(Master2(k,l));
              }
            }
          coher(i,j) = cohs1s2 / sqrt(cohs1s1 * normmask);      // [-1 1]
          }
        }
      break;
      }

    default:
      PRINT_ERROR("unknown method")
      throw(unhandled_case_error);
    } // switch method


  // ______ Correlation in space domain ______
  uint offL;
  uint offP;
  const matrix<real4> coher8 = oversample(coher,factor,factor);
  const real4 maxcor         = max(coher8,offL,offP);
  offsetL = AccL - offL/real4(factor);           // update by reference
  offsetP = AccP - offP/real4(factor);           // update by reference
  return maxcor;
  } // END coherencespace



/****************************************************************
 * coregpm                                                      *
 *                                                              *
 * Compute coregistration parameters (least squares)            *
 *                                                              *
 * input:                                                       *
 *  - Position of windows                                       *
 *  - Computed offsets                                          *
 *                                                              *
 * output:                                                      *
 *  - coregistration parameters to file                         *
 *    (wrt. normalized master grid)                             *
 *                                                              *
 *    Bert Kampes, 22-Feb-1999                                  *
 *    Bert Kampes, 26-Oct-1999 normalized coordinates           *
 * changed matrices from real4 to real8,                        *
 #%// BK 22-Mar-2001                                            *
 ****************************************************************/
void coregpm(
        const slcimage      &master, // normalization factors,ovs_rg/az
        const slcimage      &slave, //[FvL]
        const char*         i_resfile,
        const input_coregpm &coregpminput,
        const int16         &demassist) //[FvL]
        //const uint          oversamplingsfactorfine)
  {
  TRACE_FUNCTION("coregpm (BK 26-Oct-1999)")
  // ______Names of variables in this routine______
  // unknowns:          x
  // solution unknowns: placed in rhsL/P
  // observations:      y
  // covariance obs.:   Qy_1
  // designmatrix:      A
  // normalmatrix:      N = At. Qy-1. A
  // covariance unkn.:  N_1 (Qx_hat, inverse normalmatrix)
  // estimates:         *_hat

  const real4 THRESHOLD = coregpminput.threshold;// threshold ...
  const int32 DEGREE    = coregpminput.degree;  // degree of polynomial
  const int32 MAX_ITERATIONS = coregpminput.maxiter;// max. of pnts to remove
  const real4 CRIT_VALUE = coregpminput.k_alpha;// crit. value outlier removal
  const int32 Nunk      = Ncoeffs(DEGREE);      // Number of unknowns/direction

  // ______ Normalize data for polynomial ______
  const real8 minL     = master.originalwindow.linelo;
  const real8 maxL     = master.originalwindow.linehi;
  const real8 minP     = master.originalwindow.pixlo;
  const real8 maxP     = master.originalwindow.pixhi;

  // ______ A priori sigma of  offset ______
  // ______ Read this factor from the result file
  // ______ "Oversampling factor: 32"
  // ______ "Window_size_L_for_correlation: 4"
  // ______ "Window_size_P_for_correlation: 121"
  DEBUG.print("Reading oversampling factor from result file");
  uint osfactor  = 32;// oversamplingsfactor
  int32 corrwinL = 64;// window size to compute FINE correlation
  int32 corrwinP = 64;// window size to compute FINE correlation
  char c4osfactor[4];
  char c10corrwinL[10];
  char c10corrwinP[10];
  bool found = readres(c4osfactor,sizeof(c4osfactor),i_resfile, "Oversampling", 1);
  if (found) osfactor = uint(atoi(c4osfactor));
  found = readres(c10corrwinL,sizeof(c10corrwinL),i_resfile, "Window_size_L_for_correlation:", 0);
  if (found) corrwinL = int32(atoi(c10corrwinL));
  found = readres(c10corrwinP,sizeof(c10corrwinP),i_resfile, "Window_size_P_for_correlation:", 0);
  if (found) corrwinP = int32(atoi(c10corrwinP));
  corrwinL = max(10,corrwinL-8);// if fft method peak is not at center
  corrwinP = max(10,corrwinP-8);//  +then effective number of samples is smaller
  // _____ oversampling factor is bin in which maximum can be found _____
  // _____ ovsf=16-->apriorisigma=0.03
  const real4 ACCURACY = 0.5 * (1.0/(real4(osfactor)));

  // but we need coreg accuracy of 0.1 pixel about.  therefore use a priori
  // based on experience here, and different for azimuth and range
  // this also helps our automated outlier detection and testing hopefully.
  // BK 15-Apr-2003
  // if the image is oversampled, then still use orig spacing
  real4 SIGMAL=-999.9;// sigma in orig pixels
  real4 SIGMAP=-999.9;// seems range direction is better???
  if (coregpminput.weightflag!=3)
    {
    SIGMAL = 0.15/master.ovs_az;// sigma in orig pixels
    SIGMAP = 0.10/master.ovs_rg;// seems range direction is better???
    DEBUG.print("Using a smaller sigma in range, because it seems that can be estimated better");
    INFO << "a priori std.dev offset vectors line direction [samples]:  " << SIGMAL;
    INFO.print();
    INFO << "a priori std.dev offset vectors pixel direction [samples]: " << SIGMAP;
    INFO.print();
    }

  // ______ Find #points > threshold ______
  matrix<real4> Data   = getofffile(i_resfile, THRESHOLD);
  // ______ Data contains the following: ______
  // Data(i,0) = winnumber; Data(i,1) = posL; Data(i,2) = posP;
  // Data(i,3) = offL;      Data(i,4) = offP; Data(i,5) = corr;

  // ______ start added by FvL ______
  ifstream DeltaLfile, DeltaPfile;
  streampos pos;

  if (demassist)
    {
      openfstream(DeltaLfile,"dac_delta_line.raw");
      bk_assert(DeltaLfile,"dac_delta_line.raw",__FILE__,__LINE__);
      openfstream(DeltaPfile,"dac_delta_pixel.raw");
      bk_assert(DeltaPfile,"dac_delta_pixel.raw",__FILE__,__LINE__);

      int32 posL, posP;
      real4 offL, offP;
      real8 deltaL,deltaP;
      const int32 sizer8  = sizeof(real8);
      real4 ms_az_timing_error_L = real4(slave.az_timing_error);   // ms = masterslave: relative timing error
      real4 ms_r_timing_error_P = real4(slave.r_timing_error);

      for (register int32 ii=0; ii<Data.lines(); ii++)
        {
          posL = int32(Data(ii,1));
          posP = int32(Data(ii,2));
          offL = Data(ii,3);
          offP = Data(ii,4);
          pos = (streampos)((posL-master.currentwindow.linelo)*                 // [MA] (streampos) define in the lhs to eliminate int wrapping
                            master.currentwindow.pixels() + posP - master.currentwindow.pixlo);
          pos = (streampos)(pos * sizer8);

          DeltaLfile.seekg(pos,ios::beg);
          DeltaPfile.seekg(pos,ios::beg);

          DeltaLfile.read((char*)&deltaL,sizer8);
          DeltaPfile.read((char*)&deltaP,sizer8);

          Data(ii,3) = offL-real4(deltaL)-ms_az_timing_error_L;
          Data(ii,4) = offP-real4(deltaP)-ms_r_timing_error_P;
        }
    }

  // ______ end added by FvL ______

  int32 ITERATION = 0;
  int32 DONE      = 0;
  // sqr: level significance: alpha=0.001; power of test: gamma=0.80
  //real4 CRIT_VALUE = sqrt(3.29);
  INFO << "Critical value for outlier test: " << CRIT_VALUE;
  INFO.print();
  uint winL = 0;// window number to be removed
  uint winP = 0;// window number of largest w -test in range
  matrix<real8> eL_hat;
  matrix<real8> eP_hat;
  matrix<real8> wtestL;
  matrix<real8> wtestP;
  matrix<real8> rhsL;
  matrix<real8> rhsP;
  matrix<real8> Qx_hat;
  real8 maxdev = 0.0;
  real8 overallmodeltestL = 0.0;
  real8 overallmodeltestP = 0.0;
  real8 maxwL;
  real8 maxwP;
  register int32 i,j,k,index;
  while (DONE != 1)
    {
    PROGRESS << "Start iteration " << ITERATION;
    PROGRESS.print();
    // ______ Remove identified outlier from previous estimation ______
    if (ITERATION != 0)
      {
      matrix<real4> tmp_DATA = Data; //(remove_observation_i,*);
      Data.resize(Data.lines()-1, Data.pixels());
      j = 0;// counter over reduced obs.vector
      for (i=0; i<tmp_DATA.lines(); i++)// counter over original window numbers
        {
        if (i != winL)// do not copy the one to be removed.
          {
          Data.setrow(j,tmp_DATA.getrow(i));// copy back without removed obs.
          j++;// fill next row of Data
          }
        else
          {
          INFO << "Removing observation " << i << " from observation vector.";
          INFO.print();
          }
        }
      }

    // ______Check redundancy______
    int32 Nobs = Data.lines();                          // Number of points > threshold
    if (Nobs < Nunk)
      {
      PRINT_ERROR("coregpm: Number of windows > threshold is smaller than parameters solved for.")
      throw(input_error);
      }

    // ______Set up system of equations______
    // ______Order unknowns: A00 A10 A01 A20 A11 A02 A30 A21 A12 A03 for degree=3______
    matrix<real8> yL(Nobs,1);                   // observation
    matrix<real8> yP(Nobs,1);                   // observation
    matrix<real8> A(Nobs,Nunk);                 // designmatrix
    matrix<real8> Qy_1(Nobs,1);                 // a priori covariance matrix (diag)

    // ______ Normalize data for polynomial ______
    INFO << "coregpm: polynomial normalized by factors: "
         << minL << " " << maxL << " " << minP << " " << maxP << " to [-2,2]";
    INFO.print();

    // ______Fill matrices______
    DEBUG.print("Setting up design matrix for LS adjustment");
    for (i=0; i<Nobs; i++)
      {
      real8 posL = normalize(real8(Data(i,1)),minL,maxL);
      real8 posP = normalize(real8(Data(i,2)),minP,maxP);
      yL(i,0)    = real8(Data(i,3));
      yP(i,0)    = real8(Data(i,4));
      DEBUG << "coregpm: (" << posL << ", "<< posP << "): yL="
            << yL(i,0) << " yP=" << yP(i,0);
      DEBUG.print();
      // ______Set up designmatrix______
      index = 0;
      for (j=0; j<=DEGREE; j++)
        {
        for (k=0; k<=j; k++)
          {
          A(i,index) = pow(posL,real8(j-k)) * pow(posP,real8(k));
          index++;
          }
        }
      }


    // ______Weight matrix data______
    DEBUG.print("Setting up (inverse of) covariance matrix for LS adjustment");
    switch(coregpminput.weightflag)
      {
      case 0:
        for (i=0; i<Nobs; i++)
          Qy_1(i,0) = real8(1.0);
        break;
      case 1:
        DEBUG.print("Using sqrt(coherence) as weights.");
        for (i=0; i<Nobs; i++)
          Qy_1(i,0) = real8(Data(i,5));// more weight to higher correlation
        // ______ Normalize weights to avoid influence on estimated var.factor ______
        INFO.print("Normalizing covariance matrix for LS estimation.");
        Qy_1 = Qy_1 / mean(Qy_1);// normalize weights (for tests!)
        break;
      case 2:
        DEBUG.print("Using coherence as weights.");
        for (i=0; i<Nobs; i++)
          Qy_1(i,0) = real8(Data(i,5))*real8(Data(i,5));// more weight to higher correlation
        // ______ Normalize weights to avoid influence on estimated var.factor ______
        INFO.print("Normalizing covariance matrix for LS estimation.");
        Qy_1 = Qy_1 / mean(Qy_1);// normalize weights (for tests!)
        break;
      // --- Bamler paper igarss 2000 and 2004; Bert Kampes, 16-Aug-2005 ---
      case 3:
        // for coherent cross-correlation the precision of the shift is
        // sigma_cc = sqrt(3/(2N))*sqrt(1-coh^2)/(pi*coh) in units of pixels
        // for incoherent cross-correlation as we do, sigma seems approx. [BK]
        // sigma_ic = sqrt(2/coh)*sigma_cc
        // actually with osf^1.5 (but we will ignore that here)
        // it seems for large N this is to optimistic, maybe because of a bias
        // in the coherence estimator, or some other reason;  in any case,
        // the result is a large number of warnings.
        DEBUG.print("Using expression Bamler04 as weights.");
        for (i=0; i<Nobs; i++)
          {
          // N_corr: number of samples for cross-corr; approx. FC_WINSIZE
          // number of effictive samples depends on data ovs factor
          // Bamler 2000: also on oversampling ratio of data, but ignored here.
          const real4 N_corr   = real4(corrwinL*corrwinP)/real4(master.ovs_az*master.ovs_rg);
          const real4 coh      = Data(i,5);// estimated correlation; assume unbiased?
          const real4 sigma_cc = sqrt(3.0/(2.0*N_corr))*sqrt(1.0-sqr(coh))/(PI*coh);
          const real4 sigma_ic = sqrt(2.0/coh)*sigma_cc;
          DEBUG << "Window " << i << ": estimated coherence   = " << coh;
          DEBUG.print();
          DEBUG << "Window " << i << ": sigma(estimated shift) for coherent cross-correlation = "
                << sigma_cc << " [pixel]";
          DEBUG.print();
          DEBUG << "Window " << i << ": sigma(estimated shift) = " << sigma_ic << " [pixel]";
          DEBUG.print();
          Qy_1(i,0) = 1.0/sqr(sigma_ic);// Qy_1=diag(inverse(Qy));
          SIGMAL = 1.0;// remove this factor effectively
          SIGMAP = 1.0;// remove this factor effectively
          }
        break;
      default:
        PRINT_ERROR("Panic, not possible with checked input.")
        throw(unhandled_case_error);
      }


    // ______Compute Normalmatrix, rghthandside______
    matrix<real8> N    = matTxmat(A,diagxmat(Qy_1,A));
    //matrix<real8> rhsL = matTxmat(A,diagxmat(Qy_1,yL));
    //matrix<real8> rhsP = matTxmat(A,diagxmat(Qy_1,yP));
    //matrix<real8> Qx_hat = N;
    rhsL = matTxmat(A,diagxmat(Qy_1,yL));
    rhsP = matTxmat(A,diagxmat(Qy_1,yP));
    Qx_hat = N;
    // ______Compute solution______
    choles(Qx_hat);             // Cholesky factorisation normalmatrix
    solvechol(Qx_hat,rhsL);     // Solution unknowns in rhs
    solvechol(Qx_hat,rhsP);     // Solution unknowns in rhs
    invertchol(Qx_hat);         // Covariance matrix of unknowns
    // ______Test inverse______
    for (i=0; i<Qx_hat.lines(); i++)
      for (j=0; j<i; j++)
        Qx_hat(j,i) = Qx_hat(i,j);// repair Qx
    maxdev = max(abs(N*Qx_hat-eye(real8(Qx_hat.lines()))));
    INFO << "coregpm: max(abs(N*inv(N)-I)) = " << maxdev;
    INFO.print();
    // ___ use trace buffer to store string, remember to rewind it ___
    if (maxdev > .01)
      {
      ERROR << "coregpm: maximum deviation N*inv(N) from unity = " << maxdev
            << ". This is larger than 0.01";
      ERROR.print(ERROR.get_str());
      throw(some_error);
      }
    else if (maxdev > .001)
      {
      WARNING << "coregpm: maximum deviation N*inv(N) from unity = " << maxdev
              << ". This is between 0.01 and 0.001";
      WARNING.print();
      }


    // ______Some other stuff, scale is ok______
    matrix<real8> Qy_hat        = A * (matxmatT(Qx_hat,A));
    matrix<real8> yL_hat        = A * rhsL;
    matrix<real8> yP_hat        = A * rhsP;
    //matrix<real8> eL_hat      = yL - yL_hat;
    //matrix<real8> eP_hat      = yP - yP_hat;
    eL_hat      = yL - yL_hat;
    eP_hat      = yP - yP_hat;
    //  matrix<real4> Qe_hat    = Qy - Qy_hat;
    matrix<real8> Qe_hat = -Qy_hat;
    for (i=0; i<Nobs; i++)
      Qe_hat(i,i) += (1. / Qy_1(i,0));

    // ______Overall model test (variance factor)______
    overallmodeltestL = 0.;
    overallmodeltestP = 0.;
    for (i=0; i<Nobs; i++)
      {
      overallmodeltestL += sqr(eL_hat(i,0))*Qy_1(i,0);
      overallmodeltestP += sqr(eP_hat(i,0))*Qy_1(i,0);
      }
    overallmodeltestL = (overallmodeltestL/sqr(SIGMAL)) /(Nobs-Nunk);// this is sigma hat!
    overallmodeltestP = (overallmodeltestP/sqr(SIGMAP)) /(Nobs-Nunk);// not OMT!
    INFO << "coregpm: overallmodeltest Lines = " << overallmodeltestL;
    INFO.print();
    INFO << "coregpm: overallmodeltest Pixels = " << overallmodeltestP;
    INFO.print();

    // ______Datasnooping, assume Qy diag______
    wtestL.resize(Nobs,1);
    wtestP.resize(Nobs,1);
    for (i=0; i<Nobs; i++)
      {
      wtestL(i,0) = eL_hat(i,0) / (sqrt(Qe_hat(i,i))*SIGMAL);// computed excl.var.factor
      wtestP(i,0) = eP_hat(i,0) / (sqrt(Qe_hat(i,i))*SIGMAP);
      }

    uint dumm = 0;
    maxwL     = max(abs(wtestL),winL,dumm);     // returns winL
    maxwP     = max(abs(wtestP),winP,dumm);     // returns winP
    INFO << "maximum wtest statistic azimuth = " << maxwL
         << " for window number: "
         <<  Data(winL,0);
    INFO.print();
    INFO << "maximum wtest statistic range   = " << maxwP
         << " for window number: "
         <<  Data(winP,0);
    INFO.print();
    // --- use summed wtest for outlier detection ---
    // #%// BK 21-Oct-2003
    matrix<real8> wtestsum = sqr(wtestL)+sqr(wtestP);// (Nobs,1)
    real8 maxwsum = max(wtestsum,winL,dumm);// idx to remove
    INFO << "Detected outlier:  summed sqr.wtest = " << maxwsum
         << "; observation: " << winL
         << "; window number: "
         <<  Data(winL,0);
    INFO.print();


    // ______ Test if we are done yet ______
    if (Nobs <= Nunk)
      {
      WARNING.print("NO redundancy!  Exiting iterations.");
      DONE = 1;// cannot remove more than this
      }
    // seems something fishy here..., b-method of testing delft
    //    if (max(overallmodeltestL,overallmodeltestP) < 1.0)
    //      {
    //      INFO.print("OMTs accepted, not iterating anymore (final solution reached).");
    //      DONE = 1;// ok (?).
    //      }
    if (max(maxwL,maxwP) <= CRIT_VALUE)// all tests accepted?
      {
      INFO.print("All outlier tests accepted! (final solution computed)");
      DONE = 1;// yeah!
      }
    if (ITERATION >= MAX_ITERATIONS)
      {
      INFO.print("max. number of iterations reached (exiting loop).");
      DONE = 1;// we reached max. (or no max_iter specified)
      }

    // ______ Only warn if last iteration has been done ______
    if (DONE == 1)
      {
      // ___ use trace buffer to store string, remember to rewind it ___
      if (overallmodeltestL > 10)
        {
        WARNING << "coregpm: overallmodeltest Lines = " << overallmodeltestL << ends;
        WARNING.print();
        WARNING << " is larger than 10. (Suggest model or a priori sigma not correct.)";
        WARNING.print();
        }
      // ___ use trace buffer to store string, remember to rewind it ___
      if (overallmodeltestP > 10)
        {
        WARNING << "coregpm: overallmodeltest Pixels = " << overallmodeltestP;
        WARNING.print();
        WARNING << " is larger than 10.\n(suggests a priori sigma not correct.)";
        WARNING.print();
        }
      // if a priori sigma is correct, max wtest should be something like 1.96
      if (max(maxwL,maxwP)>200.0)
        {
        WARNING << "Recommendation: remove window number: " << Data(winL,0)
               << " and re-run step COREGPM.  max. wtest is: "
               <<  max(maxwL,maxwP) << ".";
        WARNING.print();
        }

      // this test seems to generate too many warnings...
      // ______Test of Jaron Samson's thesis: not ok/ depends on SIGMA ...______
      // //real4 expected = 1. / 400.;   // WRONG, 1./sqr(28) ???
      // real8 expected = 1.0 / sqr(28); //784.;
      // expected /= sqr(SIGMAL);        // correct for variance factor
      // for (i=0; i<Nobs; i++)
      //   if (Qy_hat(i,i) > expected)
      //     {
      //     WARNING << "coregpm: Qy_hat too large for window: "
      //          << Data(i,0);
      //     WARNING.print();
      //     }

      }// Only warn when done iterating.
    ITERATION++;// update counter here!
    }// iterations remove outliers


  // ____ start added by FvL _________
  // Determine inverse transformation
  // (slave corners only, needed for overlap)

  // ______ Normalize data for polynomial ______
  const real8 sminL     = slave.originalwindow.linelo;
  const real8 smaxL     = slave.originalwindow.linehi;
  const real8 sminP     = slave.originalwindow.pixlo;
  const real8 smaxP     = slave.originalwindow.pixhi;

  // ______Check redundancy______
  int32 Nobs = Data.lines();                          // Number of points > threshold

  // ______Set up system of equations for slave______
  // ______Order unknowns: A00 A10 A01 A20 A11 A02 A30 A21 A12 A03 for degree=3______
  matrix<real8> srhsL;
  matrix<real8> srhsP;
  matrix<real8> yL(Nobs,1);                   // observation
  matrix<real8> yP(Nobs,1);                   // observation
  matrix<real8> A(Nobs,Nunk);                 // designmatrix
  matrix<real8> Qy_1(Nobs,1);                 // a priori covariance matrix (diag)

  // ______ Normalize data for polynomial ______
  INFO << "coregpm: slave polynomial normalized by factors: "
       << sminL << " " << smaxL << " " << sminP << " " << smaxP << " to [-2,2]";
  INFO.print();

  // ______Fill matrices______
  DEBUG.print("Setting up design matrix for LS adjustment");
  for (i=0; i<Nobs; i++)
    {
      real8 posL = normalize(real8(Data(i,1)+Data(i,3)),sminL,smaxL);
      real8 posP = normalize(real8(Data(i,2)+Data(i,4)),sminP,smaxP);
      yL(i,0)    = real8(-Data(i,3));
      yP(i,0)    = real8(-Data(i,4));
      DEBUG << "coregpm: (" << posL << ", "<< posP << "): yL="
            << yL(i,0) << " yP=" << yP(i,0);
      DEBUG.print();
      // ______Set up designmatrix______
      index = 0;
      for (j=0; j<=DEGREE; j++)
        {
          for (k=0; k<=j; k++)
            {
              A(i,index) = pow(posL,real8(j-k)) * pow(posP,real8(k));
              index++;
            }
        }
    }

    // ______Weight matrix data______
    DEBUG.print("Setting up (inverse of) covariance matrix for LS adjustment");
    switch(coregpminput.weightflag)
      {
      case 0:
        for (i=0; i<Nobs; i++)
          Qy_1(i,0) = real8(1.0);
        break;
      case 1:
        DEBUG.print("Using sqrt(coherence) as weights.");
        for (i=0; i<Nobs; i++)
          Qy_1(i,0) = real8(Data(i,5));// more weight to higher correlation
        // ______ Normalize weights to avoid influence on estimated var.factor ______
        INFO.print("Normalizing covariance matrix for LS estimation.");
        Qy_1 = Qy_1 / mean(Qy_1);// normalize weights (for tests!)
        break;
      case 2:
        DEBUG.print("Using coherence as weights.");
        for (i=0; i<Nobs; i++)
          Qy_1(i,0) = real8(Data(i,5))*real8(Data(i,5));// more weight to higher correlation
        // ______ Normalize weights to avoid influence on estimated var.factor ______
        INFO.print("Normalizing covariance matrix for LS estimation.");
        Qy_1 = Qy_1 / mean(Qy_1);// normalize weights (for tests!)
        break;
      // --- Bamler paper igarss 2000 and 2004; Bert Kampes, 16-Aug-2005 ---
      case 3:
        // for coherent cross-correlation the precision of the shift is
        // sigma_cc = sqrt(3/(2N))*sqrt(1-coh^2)/(pi*coh) in units of pixels
        // for incoherent cross-correlation as we do, sigma seems approx. [BK]
        // sigma_ic = sqrt(2/coh)*sigma_cc
        // actually with osf^1.5 (but we will ignore that here)
        // it seems for large N this is to optimistic, maybe because of a bias
        // in the coherence estimator, or some other reason;  in any case,
        // the result is a large number of warnings.
        DEBUG.print("Using expression Bamler04 as weights.");
        for (i=0; i<Nobs; i++)
          {
          // N_corr: number of samples for cross-corr; approx. FC_WINSIZE
          // number of effictive samples depends on data ovs factor
          // Bamler 2000: also on oversampling ratio of data, but ignored here.
          const real4 N_corr   = real4(corrwinL*corrwinP)/real4(master.ovs_az*master.ovs_rg);
          const real4 coh      = Data(i,5);// estimated correlation; assume unbiased?
          const real4 sigma_cc = sqrt(3.0/(2.0*N_corr))*sqrt(1.0-sqr(coh))/(PI*coh);
          const real4 sigma_ic = sqrt(2.0/coh)*sigma_cc;
          DEBUG << "Window " << i << ": estimated coherence   = " << coh;
          DEBUG.print();
          DEBUG << "Window " << i << ": sigma(estimated shift) for coherent cross-correlation = "
                << sigma_cc << " [pixel]";
          DEBUG.print();
          DEBUG << "Window " << i << ": sigma(estimated shift) = " << sigma_ic << " [pixel]";
          DEBUG.print();
          Qy_1(i,0) = 1.0/sqr(sigma_ic);// Qy_1=diag(inverse(Qy));
          SIGMAL = 1.0;// remove this factor effectively
          SIGMAP = 1.0;// remove this factor effectively
          }
        break;
      default:
        PRINT_ERROR("Panic, not possible with checked input.")
        throw(unhandled_case_error);
      }

  // ______Compute Normalmatrix, rghthandside______
  matrix<real8> N    = matTxmat(A,diagxmat(Qy_1,A)); //use same Qy_1
  srhsL = matTxmat(A,diagxmat(Qy_1,yL));
  srhsP = matTxmat(A,diagxmat(Qy_1,yP));
  Qx_hat = N;

  // ______Compute solution______
  choles(Qx_hat);             // Cholesky factorisation normalmatrix
  solvechol(Qx_hat,srhsL);     // Solution unknowns in rhs
  solvechol(Qx_hat,srhsP);     // Solution unknowns in rhs
  invertchol(Qx_hat);         // Covariance matrix of unknowns

  real8 slave_l0 = slave.currentwindow.linelo;
  real8 slave_lN = slave.currentwindow.linehi;
  real8 slave_p0 = slave.currentwindow.pixlo;
  real8 slave_pN = slave.currentwindow.pixhi;

  real8 deltaline_slave00,deltapixel_slave00,
    deltaline_slave0N,deltapixel_slave0N,
    deltaline_slaveN0,deltapixel_slaveN0,
    deltaline_slaveNN,deltapixel_slaveNN;

  deltaline_slave00 = polyval(normalize(slave_l0,sminL,smaxL),
                          normalize(slave_p0,sminP,smaxP),
                          srhsL,DEGREE);
  deltapixel_slave00 = polyval(normalize(slave_l0,sminL,smaxL),
                          normalize(slave_p0,sminP,smaxP),
                          srhsP,DEGREE);
  deltaline_slave0N = polyval(normalize(slave_l0,sminL,smaxL),
                          normalize(slave_pN,sminP,smaxP),
                          srhsL,DEGREE);
  deltapixel_slave0N = polyval(normalize(slave_l0,sminL,smaxL),
                          normalize(slave_pN,sminP,smaxP),
                          srhsP,DEGREE);
  deltaline_slaveN0 = polyval(normalize(slave_lN,sminL,smaxL),
                          normalize(slave_p0,sminP,smaxP),
                          srhsL,DEGREE);
  deltapixel_slaveN0 = polyval(normalize(slave_lN,sminL,smaxL),
                          normalize(slave_p0,sminP,smaxP),
                          srhsP,DEGREE);
  deltaline_slaveNN = polyval(normalize(slave_lN,sminL,smaxL),
                          normalize(slave_pN,sminP,smaxP),
                          srhsL,DEGREE);
  deltapixel_slaveNN = polyval(normalize(slave_lN,sminL,smaxL),
                          normalize(slave_pN,sminP,smaxP),
                          srhsP,DEGREE);

  // ____ end added by FvL _________

  // ______ Create dump file for making plots ______
  ofstream cpmdata("CPM_Data", ios::out | ios::trunc);
  bk_assert(cpmdata,"coregpm: CPM_DATA",__FILE__,__LINE__);
  cpmdata        << "File: CPM_Data"
                 << "\nThis file contains information on the least squares"
                 << "\n estimation of the coregistration parameters."
                 << "\nThis info is used in the plotcmp script."
                 << "\nThere are 10 columns with:"
                 << "\nWindow number, position L, position P, "
                 << "\n offsetL (observation), offsetP (observation), correlation,"
                 << "\n estimated errorL, errorP, w-test statistics for L, P."
                 << "\nwin   posL  posP      offL      offP  corr      eL     eP  wtstL  wtstP"
                 << "\n------------------------------------------------------------\n";
  cpmdata.close();

  // ______ Only way to format in c++ since stupid iomanip dont work? ______
  FILE *cpm;
  cpm=fopen("CPM_Data","a");
  //for (i=0; i<Nobs; i++)
  for (i=0; i<Data.lines(); i++)
    fprintf(cpm,
    "%4.0f %5.4f %5.4f %# 9.5f %# 9.5f %# 6.2f %6.2f %6.2f %6.2f %6.2f\n",
            Data(i,0), Data(i,1), Data(i,2),
            Data(i,3), Data(i,4), Data(i,5),
            eL_hat(i,0), eP_hat(i,0),
            abs(wtestL(i,0)), abs(wtestP(i,0)));
  fclose(cpm);


  // ====== Write results to scratch files ======
  ofstream scratchlogfile("scratchlogcpm", ios::out | ios::trunc);
  bk_assert(scratchlogfile,"coregpm: scratchlogcpm",__FILE__,__LINE__);
  scratchlogfile
    << "\n\n*******************************************************************"
    << "\n* COMP_COREGPM:"
    << "\n*******************************************************************"
    << "\nA polynomial model is weighted least squares estimated"
    << "\nfor azimuth and range through the FINE offset vectors."
    << "\nThe number of coefficient are the unknowns, the number of"
    << "\nobservations are the offset vectors above the THRESHOLD"
    << "\nspecified in the input file.  To estimate the unknowns, at"
    << "\nleast the number of observations must equal the number of unknowns."
    << "\nIf there are more observations, we can statistically test"
    << "\nwhether the observations fit the model, and whether there are"
    << "\noutliers in the observations, which we like to remove."
    << "\nThe overall model test does the first.  Wtest the second."
    << "\nWe advice to remove some bad estimated offsets by hand based"
    << "\nthe largest w-test, and to iterate running this step until"
    << "\nno outlier is identified anymore.  A great tool is plotting"
    << "\nthe observations and errors, which can be done with the utility"
    << "\nscripts provided by Doris (calls to GMT)."
    << "\nAlso see any book on LS methods."
    << "\n\nDegree of model:\t\t\t\t"
    << DEGREE
    << "\nThreshold on data (correlation):\t\t\t"
    << THRESHOLD
    << "\nOversmaplings factor used in fine:           \t"
    << osfactor
    << "\nThis means maximum can be found within [samples]: \t"
    << ACCURACY
    << "\nA priori sigma azimuth (based on experience): \t"
    << SIGMAL
    << "\nA priori sigma range (based on experience): \t"
    << SIGMAP
    << "\nNumber of observations: \t\t\t"
    << Data.lines()
    << "\nNumber of rejected observations: \t\t\t"
    << ITERATION
    << "\nNumber of unknowns: \t\t\t\t"
    << Nunk
    << "\nOverall model test in Azimuth direction: \t"
    << overallmodeltestL
    << "\nOverall model test in Range direction: \t\t"
    << overallmodeltestP
    << "\nLargest w test statistic in Azimuth direction: \t"
    << maxwL
    << "\n  for window number: \t\t\t\t"
    <<  Data(winL,0)
    << "\nLargest w test statistic in Range direction: \t"
    << maxwP
    << "\n  for window number: \t\t\t\t"
    <<  Data(winP,0)
    << "\nMaximum deviation from unity Normalmatrix*Covar(unknowns): \t"
    << maxdev
    << "\nEstimated parameters in Azimuth direction"
    << "\nx_hat \tstd"
    << "\n(a00 | a10 a01 | a20 a11 a02 | a30 a21 a12 a03 | ...)\n";
  for (i=0; i<Nunk; i++)
    scratchlogfile
      << setiosflags(ios::fixed)
      << setiosflags(ios::showpoint)
      << setiosflags(ios::right)
      << setw(8) << setprecision(4)
      <<  rhsL(i,0) << " \t" << sqrt(Qx_hat(i,i)) << endl;
  scratchlogfile << "\nEstimated parameters in Range direction"
                 << "\n(b00 | b10 b01 | b20 b11 b02 | b30 b21 b12 b03 | ...)\n";
  for (i=0; i<Nunk; i++)
    scratchlogfile
      << setiosflags(ios::fixed)
      << setiosflags(ios::showpoint)
      << setiosflags(ios::right)
      << setw(8) << setprecision(4)
      <<  rhsP(i,0) << " \t" << Qx_hat(i,i) << endl;

  scratchlogfile << "\nCovariance matrix estimated parameters:"
                 << "\n---------------------------------------\n";
  for (i=0; i<Nunk; i++)
    {
    for (j=0; j<Nunk; j++)
      {
      scratchlogfile
      << setiosflags(ios::fixed)
      << setiosflags(ios::showpoint)
      << setiosflags(ios::right)
      << setw(8) << setprecision(4)
      << Qx_hat(i,j) << " ";
      }
    scratchlogfile << endl;
    }
  scratchlogfile
    << "\n"
    << "\nDeltaline_slave00_poly:                    \t" << deltaline_slave00
    << "\nDeltapixel_slave00_poly:                   \t" << deltapixel_slave00
    << "\nDeltaline_slave0N_poly:                    \t" << deltaline_slave0N
    << "\nDeltapixel_slave0N_poly:                   \t" << deltapixel_slave0N
    << "\nDeltaline_slaveN0_poly:                    \t" << deltaline_slaveN0
    << "\nDeltapixel_slaveN0_poly:                   \t" << deltapixel_slaveN0
    << "\nDeltaline_slaveNN_poly:                    \t" << deltaline_slaveNN
    << "\nDeltapixel_slaveNN_poly:                   \t" << deltapixel_slaveNN;

  scratchlogfile << "\n*******************************************************************\n";
  scratchlogfile.close();


  ofstream scratchresfile("scratchrescpm", ios::out | ios::trunc);
  bk_assert(scratchresfile,"coregpm: scratchrescpm",__FILE__,__LINE__);

  scratchresfile.setf(ios::scientific, ios::floatfield);
  scratchresfile.setf(ios::right, ios::adjustfield);
  scratchresfile.precision(8);
  scratchresfile.width(18);

  scratchresfile
    << "\n\n*******************************************************************"
    << "\n*_Start_" << processcontrol[pr_i_coregpm]
    << "\n*******************************************************************"
    << "\nDegree_cpm:\t" << DEGREE
    << "\nNormalization_Lines:   \t" <<sminL<< " " <<smaxL<< ""
    << "\nNormalization_Pixels:  \t" <<sminP<< " " <<smaxP<< ""
    << "\nEstimated_coefficientsL:\n";
  
  
  int32 coeffL = 0;
  int32 coeffP = 0;
  for (i=0; i<Nunk; i++)
    {
    if (rhsL(i,0) < 0.)
      scratchresfile <<         rhsL(i,0);
    else
      scratchresfile << " " <<  rhsL(i,0);

    // ______ Add coefficient number behind value ______
    scratchresfile << " \t" <<  coeffL << " " << coeffP << "\n";
    coeffL--;
    coeffP++;
    if (coeffL == -1)
      {
      coeffL = coeffP;
      coeffP = 0;
      }
    }

  coeffL = 0;
  coeffP = 0;
  scratchresfile << "\nEstimated_coefficientsP:\n";
  for (i=0; i<Nunk; i++)
    {
    if (rhsP(i,0) < 0.)
      scratchresfile <<         rhsP(i,0);
    else
      scratchresfile << " " <<  rhsP(i,0);

    // ______ Add coefficient number behind value ______
    scratchresfile << " \t" <<  coeffL << " " << coeffP << "\n";
    coeffL--;
    coeffP++;
    if (coeffL == -1)
      {
      coeffL = coeffP;
      coeffP = 0;
      }
    }
   scratchresfile
    << "\nDeltaline_slave00_poly:                    \t" << deltaline_slave00
    << "\nDeltapixel_slave00_poly:                   \t" << deltapixel_slave00
    << "\nDeltaline_slave0N_poly:                    \t" << deltaline_slave0N
    << "\nDeltapixel_slave0N_poly:                   \t" << deltapixel_slave0N
    << "\nDeltaline_slaveN0_poly:                    \t" << deltaline_slaveN0
    << "\nDeltapixel_slaveN0_poly:                   \t" << deltapixel_slaveN0
    << "\nDeltaline_slaveNN_poly:                    \t" << deltaline_slaveNN
    << "\nDeltapixel_slaveNN_poly:                   \t" << deltapixel_slaveNN;
 scratchresfile << "\n*******************************************************************"
                 //<< "\n* End_coregpm:_NORMAL"
                 << "\n* End_" << processcontrol[pr_i_coregpm] << "_NORMAL"
                 << "\n*******************************************************************\n";
  scratchresfile.close();


// ====== Compute offsets for corners ======
// BK 18-May-2000
  // read rhsL from file due top format... double
  matrix<real8> Lcoeff = readcoeff("scratchrescpm",
                     "Estimated_coefficientsL:",Ncoeffs(DEGREE));
  // read rhsP from file due top format... double
  matrix<real8> Pcoeff = readcoeff("scratchrescpm",
                     "Estimated_coefficientsP:",Ncoeffs(DEGREE));
  matrix<real4> x_axis(2,1);
  matrix<real4> y_axis(2,1);
  x_axis(0,0) = minL;
  x_axis(1,0) = maxL;
  y_axis(0,0) = minP;
  y_axis(1,0) = maxP;
  normalize(x_axis,minL,maxL);
  normalize(y_axis,minP,maxP);
  matrix<real4> offsetcornersL = polyval<real4>(x_axis,y_axis,Lcoeff);  // MA
  matrix<real4> offsetcornersP = polyval<real4>(x_axis,y_axis,Pcoeff);
  INFO.print(" ");
  INFO.print("Modeled transformation in azimuth:");
  INFO.print("-------------------------------------------------");
  INFO << "  First line:    " << offsetcornersL(0,0)  << " ... " << offsetcornersL(0,1);
  INFO.print();
  INFO.print("                    :           :");
  INFO << "  Last line:     " << offsetcornersL(1,0)  << " ... " << offsetcornersL(1,1);
  INFO.print();
  INFO.print("\n");
  INFO.print("Modeled transformation in range:");
  INFO.print("-------------------------------------------------");
  INFO << "  First line:    " << offsetcornersP(0,0)  << " ... " << offsetcornersP(0,1);
  INFO.print();
  INFO.print("                    :           :");
  INFO << "  Last line:     " << offsetcornersP(1,0)  << " ... " << offsetcornersP(1,1);
  INFO.print();
  INFO.print(" ");


  // ====== Dump evaluated polynomial if requested ======
  // BK 17-May-2000
  if (coregpminput.dumpmodel)
    {
    DEBUG.print("Do evaluation of coreg model with stepsize 100 pixels or so...");
    DEBUG.print("And account for currentwindow, not orig window...");
    PROGRESS.print("Started dumping evaluated model azimuth.");
    TRACE.print();// empty buffer to be sure
    TRACE << "offsetazi_" << master.originalwindow.lines()
               <<          "_" << master.originalwindow.pixels()
               << ".r4";
    char fileazi[ONE27];
    strcpy(fileazi,TRACE.get_str());
    TRACE.print();// empty buffer to be sure

    ofstream dumpfile;
    openfstream(dumpfile,fileazi,true);
    bk_assert(dumpfile,fileazi,__FILE__,__LINE__);

    // polyval both standing x,y... (?)
    // matrix<real4> p_axis(1,master.originalwindow.pixels());
    matrix<real4> l_axis(1,1);                  // ...
    matrix<real4> p_axis(master.originalwindow.pixels(),1);
    for (i=0; i<p_axis.pixels(); ++i)
      p_axis(i,0) = i+master.originalwindow.pixlo;                  // multilook==1 ?
    normalize(p_axis,minP,maxP);

    // azimuth
    for (i =master.originalwindow.linelo;
         i<=master.originalwindow.linehi; ++i)  // all lines
      {
      l_axis(0,0) = normalize(real8(i),minL,maxL);
      matrix<real4> MODEL = polyval<real4>(l_axis,p_axis,Lcoeff);
      dumpfile << MODEL;
      }
    dumpfile.close();
    INFO << "Dumped model azimuth offset to file: " << fileazi
         << " format: real4; number of lines: "
         << master.originalwindow.lines()
         << " number of pixels: "
         << master.originalwindow.pixels();
    INFO.print();

    // ______ same for range ______
    PROGRESS.print("Started dumping evaluated model range.");
    TRACE.print();// empty buffer to be sure
    TRACE << "offsetrange_" << master.originalwindow.lines()
             << "_" << master.originalwindow.pixels() << ".r4";
    char filerange[ONE27];
    strcpy(filerange,TRACE.get_str());
    TRACE.print();// empty buffer to be sure
    ofstream dumpfile2;
    openfstream(dumpfile2,filerange,true);
    bk_assert(dumpfile2,filerange,__FILE__,__LINE__);

    for (i =master.originalwindow.linelo;
         i<=master.originalwindow.linehi; ++i)  // all lines
      {
      l_axis(0,0) = normalize(real8(i),minL,maxL);
      matrix<real4> MODEL = polyval<real4>(l_axis,p_axis,Pcoeff);
      dumpfile2 << MODEL;
      }
    INFO << "Dumped model range offset to file: " << filerange
         << " format: real4; number of lines: "
         << master.originalwindow.lines()
         << " number of pixels: "
         << master.originalwindow.pixels();
    INFO.print();
    dumpfile2.close();
    }

  // ====== Tidy up ======
  PROGRESS.print("finished computation of coregistration parameters.");
  } // END coregpm



/****************************************************************
 *    getofffile                                                *
 *                                                              *
 * Returns matrix (real4) with data of fine coreg from file     *
 *   mat(i,0)=window number                                     *
 *   mat(i,1)=position: line coordinate                         *
 *   mat(i,2)=position: pixels coordinate                       *
 *   mat(i,3)=offset: line direction                            *
 *   mat(i,4)=offset: pixle direction                           *
 *   mat(i,5)=correlation:                                      *
 * searches for "Number_of_correlation_windows:"                *
 *                                                              *
 *    Bert Kampes, 24-Feb-1999                                  *
 ****************************************************************/
matrix<real4> getofffile(
        const char* file,
        real4 threshold)
  {
  TRACE_FUNCTION("getofffile (BK 24-Feb-1999)");
  char                  dummyline[ONE27];
  char                  word[EIGHTY];
  bool                  foundsection = false;

  ifstream infile;
  openfstream(infile,file);
  bk_assert(infile,file,__FILE__,__LINE__);


  // ======Search file for data section======
  while (infile)
    {
    infile >> word;
    if (strcmp("Number_of_correlation_windows:",word))  // no pattern match.
      {
      infile.getline(dummyline,ONE27,'\n');             // goto next line.
      }
    else                                                // in data section
      {
      foundsection=true;
      int32 N;                                          // number of points
      infile >> N;
      infile.getline(dummyline,ONE27,'\n');             // next line
      infile.getline(dummyline,ONE27,'\n');             // skip line with info
      int32 pos  = infile.tellg();                      // position of start data
      int32 Nobs = 0;                                   // number points > threshold
      real4 winnumber, posL, posP, offL, offP, corr;    // on file
      register int32 i;
      for (i=0;i<N;i++)
        {
        infile >> winnumber >> posL >> posP >> offL >> offP >> corr;
        infile.getline(dummyline,ONE27,'\n');           // goto next data record
        if (corr > threshold)
          Nobs++;
        }

      if (Nobs == 0)
        {
        PRINT_ERROR("code ???: No data found > threshold.")
        throw(some_error);
        }

      matrix<real4> Data(Nobs,6);
      infile.seekg(pos);                                // return to start data
      int32 cnti = -1;
      for (i=0;i<N;i++)
        {
        infile >> winnumber >> posL >> posP >> offL >> offP >> corr;
        infile.getline(dummyline,ONE27,'\n');           // goto next data record
        if (corr > threshold)
          {
          cnti++;
          Data(cnti,0) = winnumber;
          Data(cnti,1) = posL;
          Data(cnti,2) = posP;
          Data(cnti,3) = offL;
          Data(cnti,4) = offP;
          Data(cnti,5) = corr;
          }
        }

      infile.close();
      return Data;
      } // else
    } // file

  // ______Tidy up______
  if (!foundsection)
    {
    PRINT_ERROR("code 401: getofffile: couldn't find data section in file.");
    throw(some_error);
    }
  infile.close();

  // --- return a dummy here since some compiler like that ---
  return matrix<real4>(999,999);// BK 07-Apr-2003
  } // END getofffile



/****************************************************************
 *    cc4                                                       *
 *                                                              *
 * cubic convolution 4 points                                   *
 *                                                              *
 * input:                                                       *
 *  - x-axis                                                    *
 * output:                                                      *
 *  - y=f(x); function evaluated at x                           *
 *                                                              *
 *    Bert Kampes, 16-Mar-1999                                  *
 ****************************************************************/
matrix<real4> cc4(
        const matrix<real4> &x)
  {
  TRACE_FUNCTION("cc4 (BK 16-Mar-1999)");
  if (x.pixels() != 1)
    {
    PRINT_ERROR("cc4: standing vectors only.")
    throw(input_error);
    }

  real4 alpha = -1.0;
  matrix<real4> y(x.lines(),1);
  for (register uint i=0;i<y.lines();i++)
    {
    real4 xx2 = sqr(x(i,0));
    real4 xx  = sqrt(xx2);
    if      (xx < 1)
      y(i,0) = (alpha+2)*xx2*xx - (alpha+3)*xx2 + 1;
    else if (xx < 2)
      y(i,0) = alpha*xx2*xx - 5*alpha*xx2 + 8*alpha*xx - 4*alpha;
    else
      y(i,0) = 0.0;
    }
  return y;
  } // END cc4


/****************************************************************
 *    cc6                                                       *
 *                                                              *
 * cubic convolution 6 points                                   *
 *                                                              *
 * input:                                                       *
 *  - x-axis                                                    *
 * output:                                                      *
 *  - y=f(x); function evaluated at x                           *
 *                                                              *
 *    Bert Kampes, 16-Mar-1999                                  *
 * corrected (alfa+beta)->(alfa-beta) after correction in paper *
 * by Ramon Hanssen                                             *
 *    Bert Kampes, 16-Mar-1999                                  *
 ****************************************************************/
matrix<real4> cc6(
        const matrix<real4> &x)
  {
  TRACE_FUNCTION("cc6 (BK 16-Mar-1999)");
  if (x.pixels() != 1)
    {
    PRINT_ERROR("cc6: standing vectors only.")
    throw(input_error);
    }

  real4 alpha = -.5;
  real4 beta  =  .5;
  matrix<real4> y(x.lines(),1);
  for (register uint i=0;i<y.lines();i++)
    {
    real4 xx2 = sqr(x(i,0));
    real4 xx  = sqrt(xx2);
    if      (xx < 1)
      y(i,0) = (alpha-beta+2)*xx2*xx - (alpha-beta+3)*xx2 + 1;
    //y(i,0) = (alpha+beta+2)*xx2*xx - (alpha+beta+3)*xx2 + 1;??wrong in paper?
    else if (xx < 2)
      y(i,0) =   alpha*xx2*xx - (5*alpha-beta)*xx2
               + (8*alpha-3*beta)*xx - (4*alpha-2*beta);
    else if (xx < 3)
      y(i,0) = beta*xx2*xx - 8*beta*xx2 + 21*beta*xx - 18*beta;
    else
      y(i,0) = 0.;
    }
  return y;
  } // END cc6


/****************************************************************
 *    ts6                                                       *
 *                                                              *
 * truncated sinc 6 points                                      *
 *                                                              *
 * input:                                                       *
 *  - x-axis                                                    *
 * output:                                                      *
 *  - y=f(x); function evaluated at x                           *
 *                                                              *
 *    Bert Kampes, 16-Mar-1999                                  *
 ****************************************************************/
matrix<real4> ts6(
        const matrix<real4> &x)
  {
  TRACE_FUNCTION("ts6 (BK 16-Mar-1999)");
  if (x.pixels() != 1)
    {
    PRINT_ERROR("ts6: standing vectors only.")
    throw(input_error);
    }

  matrix<real4> y(x.lines(),1);
  for (register uint i=0;i<y.lines();i++)
    y(i,0) = sinc(x(i,0)) * rect(x(i,0)/6.0);
  return y;
  } // END ts6


/****************************************************************
 *    ts8                                                       *
 *                                                              *
 * truncated sinc 8 points                                      *
 *                                                              *
 * input:                                                       *
 *  - x-axis                                                    *
 * output:                                                      *
 *  - y=f(x); function evaluated at x                           *
 *                                                              *
 *    Bert Kampes, 16-Mar-1999                                  *
 ****************************************************************/
matrix<real4> ts8(
        const matrix<real4> &x)
  {
  TRACE_FUNCTION("ts8 (BK 16-Mar-1999)");
  if (x.pixels() != 1)
    {
    PRINT_ERROR("ts8: standing vectors only.")
    throw(input_error);
    }

  matrix<real4> y(x.lines(),1);
  for (register uint i=0;i<y.lines();i++)
    y(i,0) = sinc(x(i,0)) * rect(x(i,0)/8.0);
  return y;
  } // END ts8


/****************************************************************
 *    ts16                                                      *
 *                                                              *
 * truncated sinc 16 points                                     *
 *                                                              *
 * input:                                                       *
 *  - x-axis                                                    *
 * output:                                                      *
 *  - y=f(x); function evaluated at x                           *
 *                                                              *
 *    Bert Kampes, 16-Mar-1999                                  *
 ****************************************************************/
matrix<real4> ts16(
        const matrix<real4> &x)
  {
  TRACE_FUNCTION("ts16 (BK 16-Mar-1999)");
  if (x.pixels() != 1)
    {
    PRINT_ERROR("ts16: standing vectors only.")
    throw(input_error);
    }
  matrix<real4> y(x.lines(),1);
  for (register uint i=0;i<y.lines();i++)
    y(i,0) = sinc(x(i,0)) * rect(x(i,0)/16.0);
  return y;
  } // END ts16


/****************************************************************
 *    rect                                                      *
 *                                                              *
 * rect function for matrix (stepping function?)                *
 *                                                              *
 * input:                                                       *
 *  - x-axis                                                    *
 * output:                                                      *
 *  - y=f(x); function evaluated at x                           *
 *                                                              *
 *    Bert Kampes, 16-Mar-1999                                  *
 ****************************************************************/
matrix<real4> rect(
        const matrix<real4> &x)
  {
  TRACE_FUNCTION("rect (BK 16-Mar-1999)");
  if (x.pixels() != 1)
    {
    PRINT_ERROR("rect: standing vectors only.");
    throw(input_error);
    }

  matrix<real4> y(x.lines(),1);
  for (register uint i=0;i<y.lines();i++)
    y(i,0) = rect(x(i,0));
  return y;
  } // END rect


/****************************************************************
 *    tri                                                       *
 *                                                              *
 * tri function for matrix (piecewize linear?, triangle)        *
 *                                                              *
 * input:                                                       *
 *  - x-axis                                                    *
 * output:                                                      *
 *  - y=f(x); function evaluated at x                           *
 *                                                              *
 *    Bert Kampes, 16-Mar-1999                                  *
 ****************************************************************/
matrix<real4> tri(
        const matrix<real4> &x)
  {
  TRACE_FUNCTION("tri (BK 16-Mar-1999)")
  if (x.pixels() != 1)
    {
    PRINT_ERROR("tri: standing vectors only.")
    throw(input_error);
    }
  matrix<real4> y(x.lines(),1);
  for (register uint i=0;i<y.lines();i++)
    y(i,0) = tri(x(i,0));
  return y;
  } // END tri


/****************************************************************
 *    knab                                                      *
 *                                                              *
 * KNAB window of N points, oversampling factor CHI             *
 *                                                              *
 * defined by: Migliaccio IEEE letters vol41,no5, pp1105,1110, 2003 *
 * k = sinc(x).*(cosh((pi*v*L/2)*sqrt(1-(2.*x./L).^2))/cosh(pi*v*L/2));
 *                                                              *
 * input:                                                       *
 *  - x-axis                                                    *
 *  - oversampling factor of bandlimited sigal CHI              *
 *  - N points of kernel size                                   *
 * output:                                                      *
 *  - y=f(x); function evaluated at x                           *
 *                                                              *
 *    Bert Kampes, 22-DEC-2003                                  *
 ****************************************************************/
matrix<real4> knab(
        const matrix<real4> &x,
        const real4 CHI,
        const int32 N)
  {
  TRACE_FUNCTION("knab (BK 22-Dec-2003)");
  if (x.pixels() != 1)
    {
    PRINT_ERROR("knab: standing vectors only.")
    throw(input_error);
    }
  matrix<real4> y(x.lines(),1);
  real4 v  = 1.0-1.0/CHI;
  real4 vv = PI*v*real4(N)/2.0;
  for (register uint i=0;i<y.lines();i++)
    y(i,0) = sinc(x(i,0))*cosh(vv*sqrt(1.0-sqr(2.0*x(i,0)/real4(N))))/cosh(vv);
  return y;
  } // END knab



/****************************************************************
 *    rc_kernel                                                 *
 *                                                              *
 * Raised Cosine window of N points, oversampling factor CHI    *
 *                                                              *
 * defined by: Cho, Kong and Kim, J.Elektromagn.Waves and appl  *
 *  vol19, no.1, pp, 129-135, 2005;                             *
 * claimed to be best, 0.9999 for 6 points kernel.              *
 * k(x) = sinc(x).*[cos(v*pi*x)/(1-4*v^2*x^2)]*rect(x/L)     *
 *  where v = 1-B/fs = 1-1/Chi (roll-off factor; ERS: 15.55/18.96)*
 *        L = 6 (window size)                                   *
 *                                                              *
 * input:                                                       *
 *  - x-axis                                                    *
 *  - oversampling factor of bandlimited sigal CHI              *
 *  - N points of kernel size                                   *
 * output:                                                      *
 *  - y=f(x); function evaluated at x                           *
 *                                                              *
 #%// Bert Kampes, 28-Jul-2005
 ****************************************************************/
matrix<real4> rc_kernel(
        const matrix<real4> &x,
        const real4 CHI,
        const int32 N)
  {
  TRACE_FUNCTION("rc_kernel (BK 28-Jul-2005)");
  if (x.pixels() != 1)
    {
    PRINT_ERROR("rc_kernel: standing vectors only.")
    throw(input_error);
    }
  matrix<real4> y(x.lines(),1);
  real4 v  = 1.0-1.0/CHI;// alpha in paper cho05
  for (register uint i=0;i<y.lines();i++)
    y(i,0) = sinc(x(i,0)) * rect(x(i,0)/real4(N))*
             cos(v*PI*x(i,0)) / (1.0-sqr(2.0*v*x(i,0)));
  return y;
  } // END rc_kernel



/****************************************************************
 *    resample                                                  *
 *                                                              *
 * Resample slave to master grid based on coregistration        *
 *  parameters.                                                 *
 * if dbow==0 then default to overlap, else dbow,               *
 *  write 0's where it does not overlap                         *
 * (later at interf.comp. if master<slave then doris exits! bug)*
 *                                                              *
 * input:                                                       *
 *  - inputoptions                                              *
 * output:                                                      *
 *  - void (file)                                               *
 *                                                              *
 *    Bert Kampes, 16-Mar-1999                                  *
 * added DBOW master add zeros.                                 *
 #%// BK 21-Aug-2000BOW master add zeros.                       *
 * shift data to center of spectrum before resampling, shift    *
 * back afterwards. (see e.g. thesis Geudtner)                  *
 #%// BK 09-Nov-2000                                            *
 * Seems to be a bug in shifting the data spectrum if more      *
 * buffers are used, working on it.              _Data               *
 * (Increase FORSURE variable if crash)                         *
 #%// BK 19-Nov-2000                                            *
 ****************************************************************/
void resample(
        const input_gen         &generalinput,
        const input_resample    &resampleinput,
        const slcimage          &master,
        const slcimage          &slave,
        const matrix<real8>     &cpmL,          // coregistration parameters
        const matrix<real8>     &cpmP,          // coregistration parameters
        const int16             &demassist,
        const matrix<real8>     &minMaxL,
        const matrix<real8>     &minMaxP
)
  {
  TRACE_FUNCTION("resample (BK 16-Mar-1999; BK 09-Nov-2000)")
  if   (resampleinput.shiftazi == 1)
    DEBUG.print("shifting kernelL to data fDC BK 26-Oct-2002");
  // ___ Handle input ___
  //const uint BUFFERMEMSIZE = generalinput.memory;       // Bytes  500MB --> 500 000 000 bytes
  const real8 BUFFERMEMSIZE = generalinput.memory;       // Bytes  500MB --> 500 000 000 bytes
  const int32 Npoints      = resampleinput.method%100;  // #pnts interpolator
  if (isodd(Npoints))
    {
    PRINT_ERROR("resample only even point interpolators.")
    throw(input_error);
    }
  const int32 Npointsd2    = Npoints/2;
  const int32 Npointsd2m1  = Npointsd2-1;
  //const uint  Sfilelines   = slave.currentwindow.lines();
  const uint sizeofci16    = sizeof(compli16);
  const uint sizeofcr4     = sizeof(complr4);
  const uint sizeofr4      = sizeof(real4); //[FvL]

  // ______ Normalize data for polynomial ______
 // const real8 minL         = master.originalwindow.linelo;
 // const real8 maxL         = master.originalwindow.linehi;
 // const real8 minP         = master.originalwindow.pixlo;
 // const real8 maxP         = master.originalwindow.pixhi;
  const real8 minL           = minMaxL(0,0);
  const real8 maxL           = minMaxL(1,0);
  const real8 minP           = minMaxP(0,0);
  const real8 maxP           = minMaxP(1,0);
  
  INFO << "resample: polynomial normalized by factors: "
       << minL << " " << maxL << " " << minP << " " << maxP << " to [-2,2]";
  INFO.print();

  // ______ For KNAB/Raised Cosine kernel if requested ______
  // ______ Because kernel is same in az. and rg. min. must be used.
  const real4 CHI_az = slave.prf/slave.abw;// oversampling factor az
  const real4 CHI_rg = (slave.rsr2x/2.0)/slave.rbw;// oversampling factor rg
  const real4 CHI    = min(CHI_az,CHI_rg);// min. oversampling factor of data
  INFO << "Oversampling ratio azimuth (PRF/ABW):    " << CHI_az;
  INFO.print();
  INFO << "Oversampling ratio azimuth (RSR/RBW):    " << CHI_rg;
  INFO.print();
  INFO << "KNAB/RC kernel uses: oversampling ratio: " << CHI;
  INFO.print();
  if (CHI < 1.1)
    {
    WARNING << "Oversampling ratio: " << CHI << " not optimal for KNAB/RC";
    WARNING.print();
    }


  // ====== Create lookup table ======
  // ______ e.g. four point interpolator
  // ______ interpolating point: p=6.4925
  // ______ required points: 5, 6, 7, 8
  // ______ kernel number from lookup table: floor(.4925*INTERVAL+.5)
  // ______  table[0]= 0 1 0 0 ;table[INTERVAL]= 0 0 1 0
  // ______ intervals in lookup table: dx
  // ______ for high doppler 100 is OK (fdc=3prf; 6pi --> 10deg error?)
  // ______ 2047? 4095? which one is better for Sentinel-1 (Wu Wenhao)
  const int32 INTERVAL  = 2047;                          // precision: 1./INTERVAL [pixel]
  const int32 Ninterval = INTERVAL + 1;                 // size of lookup table
  const real8 dx        = 1.0/INTERVAL;                 // interval look up table
  INFO << "resample: lookup table size: " << Ninterval;
  INFO.print();

  register int32 i;
  matrix<real4> x_axis(Npoints,1);
  for (i=0; i<Npoints; ++i)
    x_axis(i,0) = 1.0 - Npointsd2 + i;                  // start at [-1 0 1 2]

  // ______ Lookup table complex because of multiplication with complex ______
  // ______ Loopkup table for azimuth and range and ______
  // ______ shift spectrum of azi kernel with doppler centroid ______
  // ______ kernel in azimuth should be sampled higer ______
  // ______ and may be different from range due to different ______
  // ______ oversampling ratio and spectral shift (const) ______
  matrix<complr4> *pntKernelAz[Ninterval];// kernel in azimuth
  matrix<complr4> *pntKernelRg[Ninterval];// kernel in range
  // ______ same axis required for shift azimuth spectrum as used ______
  // ______ for kernel to avoid phase shift (Raffaele Nutricato) ______
  matrix<real4>   *pntAxis[Ninterval];

  for (i=0; i<Ninterval; ++i)
    {
    pntKernelAz[i] = new matrix<complr4> (Npoints,1);
    pntKernelRg[i] = new matrix<complr4> (Npoints,1);
    pntAxis[i]     = new matrix<real4>   (Npoints,1);// only used for azishift
    switch(resampleinput.method)
      {
      // --- Extremely simple kernels (not good, but fast) ---
      case rs_rect:
        (*pntKernelAz[i]) = mat2cr4(rect(x_axis));
        (*pntKernelRg[i]) = mat2cr4(rect(x_axis));
        break;
      case rs_tri:
        (*pntKernelAz[i]) = mat2cr4(tri(x_axis));
        (*pntKernelRg[i]) = mat2cr4(tri(x_axis));
        break;
      // --- Truncated sinc ---
      case rs_ts6p:
        (*pntKernelAz[i]) = mat2cr4(ts6(x_axis));
        (*pntKernelRg[i]) = mat2cr4(ts6(x_axis));
        break;
      case rs_ts8p:
        (*pntKernelAz[i]) = mat2cr4(ts8(x_axis));
        (*pntKernelRg[i]) = mat2cr4(ts8(x_axis));
        break;
      case rs_ts16p:
        (*pntKernelAz[i]) = mat2cr4(ts16(x_axis));
        (*pntKernelRg[i]) = mat2cr4(ts16(x_axis));
        break;
      // --- Cubic Convolution kernel: theoretical better than truncated sinc. ---
      case rs_cc4p:
        (*pntKernelAz[i]) = mat2cr4(cc4(x_axis));
        (*pntKernelRg[i]) = mat2cr4(cc4(x_axis));
        break;
      case rs_cc6p:
        (*pntKernelAz[i]) = mat2cr4(cc6(x_axis));
        (*pntKernelRg[i]) = mat2cr4(cc6(x_axis));
        break;
      // --- KNAB kernel: theoretical better than cubic conv. ---
      case rs_knab4p:
        (*pntKernelAz[i]) = mat2cr4(knab(x_axis,CHI_az,4));
        (*pntKernelRg[i]) = mat2cr4(knab(x_axis,CHI_rg,4));
        break;
      case rs_knab6p:
        (*pntKernelAz[i]) = mat2cr4(knab(x_axis,CHI_az,6));
        (*pntKernelRg[i]) = mat2cr4(knab(x_axis,CHI_rg,6));
        break;
      case rs_knab8p:
        (*pntKernelAz[i]) = mat2cr4(knab(x_axis,CHI_az,8));
        (*pntKernelRg[i]) = mat2cr4(knab(x_axis,CHI_rg,8));
        break;
      case rs_knab10p:
        (*pntKernelAz[i]) = mat2cr4(knab(x_axis,CHI_az,10));
        (*pntKernelRg[i]) = mat2cr4(knab(x_axis,CHI_rg,10));
        break;
      case rs_knab16p:
        (*pntKernelAz[i]) = mat2cr4(knab(x_axis,CHI_az,16));
        (*pntKernelRg[i]) = mat2cr4(knab(x_axis,CHI_rg,16));
        break;
      // --- Raised cosine: theoretical best ---
      case rs_rc6p:
        (*pntKernelAz[i]) = mat2cr4(rc_kernel(x_axis,CHI_az,6));
        (*pntKernelRg[i]) = mat2cr4(rc_kernel(x_axis,CHI_rg,6));
        break;
      case rs_rc12p:
        (*pntKernelAz[i]) = mat2cr4(rc_kernel(x_axis,CHI_az,12));
        (*pntKernelRg[i]) = mat2cr4(rc_kernel(x_axis,CHI_rg,12));
        break;
      default:
        PRINT_ERROR("impossible.")
        throw(unhandled_case_error);
      }//kernel selector
    (*pntAxis[i]) = x_axis;// to shift kernelL use: k*=exp(-i*2pi*axis*fdc/prf)
    x_axis       -= dx;    // Note: 'wrong' way (mirrored)
    }
  // ====== Usage: pntKernelAz[0]->showdata(); or (*pntKernelAz[0][0]).showdata(); ======
  // ______ Log kernels to check sum, etc. ______
  DEBUG.print("Overview of LUT for interpolation kernel follows:");
  DEBUG.print("-------------------------------------------------");

  for (i=0; i<Ninterval; ++i)
    {
    for (int32 x=0; x<Npoints; ++x)
      DEBUG << ((*pntAxis[i])(x,0)) << "      ";
    DEBUG.print();
    real4 sum_az = 0.0;
    real4 sum_rg = 0.0;
    for (int32 x=0; x<Npoints; ++x)
      {
      DEBUG << real((*pntKernelAz[i])(x,0)) << " ";// complex kernel
      sum_az += real((*pntKernelAz[i])(x,0));
      sum_rg += real((*pntKernelRg[i])(x,0));
      }
    DEBUG << "(sum=" << sum_az << ")";
    DEBUG.print();
    DEBUG.print("Normalizing kernel by dividing LUT elements by sum:");
    (*pntKernelAz[i]) /= sum_az;
    (*pntKernelRg[i]) /= sum_rg;
    // ______ Only show azimuth kernel ______
    for (int32 x=0; x<Npoints; ++x)
      DEBUG << real((*pntKernelAz[i])(x,0)) << " ";// complex kernel; normalized
    DEBUG.print();
    }
  PROGRESS.print("Resample: normalized lookup table created (kernel and axis).");

  // ______Save some time by computing degree here______
  const int32 degree_cpmL = degree(cpmL.size());
  const int32 degree_cpmP = degree(cpmP.size());

  // ______ Initialization (needed for DEM assist) [FvL] _____
  real8 deltaL_dem,deltaP_dem;
  real4 deltaL_poly,deltaP_poly;
  real4 interpL, interpP;
  real4 ms_az_timing_error_L = real4(slave.az_timing_error);
  real4 ms_r_timing_error_P = real4(slave.r_timing_error);
  const int32 sizer8  = sizeof(real8);
  ifstream DeltaLfile, DeltaPfile;

  if (demassist)
    {
      openfstream(DeltaLfile,"dac_delta_line.raw");
      bk_assert(DeltaLfile,"dac_delta_line.raw",__FILE__,__LINE__);
      openfstream(DeltaPfile,"dac_delta_pixel.raw");
      bk_assert(DeltaPfile,"dac_delta_pixel.raw",__FILE__,__LINE__);
    }

  streampos pos;

  // ______Corners of overlap in master system______
  // changed by FvL

  window overlap;
  if (demassist)
    overlap = getoverlap(master,slave,real8(Npointsd2),real8(ms_az_timing_error_L),real8(ms_r_timing_error_P));
  else
    overlap = getoverlap(master,slave,real8(Npointsd2),real8(0),real8(0));


  // ====== Adjust overlap possibly for RS_DBOW card ======
  int32 write0lines1  = 0;                      // DBOW card, 0's at start
  int32 write0linesN  = 0;
  int32 write0pixels1 = 0;
  int32 write0pixelsN = 0;
  if (!(resampleinput.dbow.linelo == 0 &&       // as such initialized by readinput
        resampleinput.dbow.linehi == 0 &&
        resampleinput.dbow.pixlo  == 0 &&
        resampleinput.dbow.pixhi  == 0    ))
    {
    // ______ Check if overlap is large enough to contain DBOW ______
    if (resampleinput.dbow.linelo > overlap.linehi)
      {
      PRINT_ERROR("RS_DBOW: specified min. line larger than max. line of overlap.")
      throw(input_error);
      }
    if (resampleinput.dbow.linehi < overlap.linelo)
      {
      PRINT_ERROR("RS_DBOW: specified max. line smaller than min. line of overlap.")
      throw(input_error);
      }
    if (resampleinput.dbow.pixlo > overlap.pixhi)
      {
      PRINT_ERROR("RS_DBOW: specified min. pixel larger than max. pixel of overlap.")
      throw(input_error);
      }
    if (resampleinput.dbow.pixhi < overlap.pixlo)
      {
      PRINT_ERROR("RS_DBOW: specified max. pixel smaller than min. pixel of overlap.")
      throw(input_error);
      }

    write0lines1  =  overlap.linelo - resampleinput.dbow.linelo;

    if ( write0lines1 < 0 ) write0lines1 = 0;   // smaller window selected
    write0linesN  = -overlap.linehi + resampleinput.dbow.linehi;

    if ( write0linesN < 0 ) write0linesN = 0;   // smaller window selected
    write0pixels1  =  overlap.pixlo - resampleinput.dbow.pixlo;

    if ( write0pixels1 < 0 ) write0pixels1 = 0; // smaller window selected
    write0pixelsN  = -overlap.pixhi + resampleinput.dbow.pixhi;

    if ( write0pixelsN < 0 ) write0pixelsN = 0; // smaller window selected

    if (resampleinput.dbow.linelo < overlap.linelo)
      {
      WARNING << "RS_DBOW: min. line < overlap (writing: " << write0lines1
           << " lines with zeros before first resampled line).";
      WARNING.print();
      }
    else
      overlap.linelo = resampleinput.dbow.linelo;       // correct it
    if (resampleinput.dbow.linehi > overlap.linehi)
      {
      WARNING << "RS_DBOW: max. line > overlap (writing: " << write0linesN
           << " lines with zeros after last resampled line).";
      WARNING.print();
      }
    else
      overlap.linehi = resampleinput.dbow.linehi;       // correct it

    if (resampleinput.dbow.pixlo < overlap.pixlo)
      {
      WARNING << "RS_DBOW: min. pixel < overlap (writing: " << write0pixels1
           << " columns with zeros before first resampled column).";
      WARNING.print();
      }
    else
      overlap.pixlo = resampleinput.dbow.pixlo;         // correct it

    if (resampleinput.dbow.pixhi > overlap.pixhi)
      {
      WARNING << "RS_DBOW: max. pixel > overlap (writing: " << write0pixelsN
           << " columns with zeros after last resampled column).";
      WARNING.print();
      }
    else
      overlap.pixhi = resampleinput.dbow.pixhi;         // correct it

    } // adjust overlap


  // ______ Buffersize output matrix ______
  const int32 Npointsxsize = Npoints*sizeofcr4; // size for memcpy (fill PART)
  const int32 npixels      = slave.currentwindow.pixels();
  const real8 bytesperline = sizeofcr4 * npixels;
  // ___ COMMENTED OUT, OLD WAY SHIFT DATA, now shiftkernel ___
  const real8 bigmatrices  = 2.5;                                             // BUFFER, RESULT & PART buffers
  //const int32 nlines       = int32((BUFFERMEMSIZE/bigmatrices)/bytesperline); // buffer nlines
  const int32 nlines       = int32(ceil( (BUFFERMEMSIZE/bigmatrices)/bytesperline )); // buffer nlines [MA]

    DEBUG << "BUFFERMEMSIZE: " << BUFFERMEMSIZE << ")";
    DEBUG.print();
    DEBUG << "nlines: " << nlines << ")";
    DEBUG.print();
  // ______ Declare/allocate matrices ______
  matrix<complr4> BUFFER;                       // load after output is written
  matrix<complr4> RESULT(nlines,overlap.pixhi-overlap.pixlo+1);
  matrix<real4> SLAVE_LINE(nlines,overlap.pixhi-overlap.pixlo+1); // for output final shifts [FvL]
  matrix<real4> SLAVE_PIXEL(nlines,overlap.pixhi-overlap.pixlo+1); // for output final shifts [FvL]
  matrix<complr4> PART(Npoints,Npoints);

#ifdef __USE_VECLIB_LIBRARY__
  matrix<complr4> TMPRES(Npoints,1);
  int32 Np = Npoints;                           // must be non-constant
  int32 ONEint = 1;                             // must have pointer to 1
  complr4 c4alpha(1.,0.0);
  complr4 c4beta(0.0,0.0);
  STUPID_cr4 ANS;                               // VECLIB struct return type
#endif


  // ====== Open output files ======
  ofstream ofile;
  openfstream(ofile,resampleinput.fileout,generalinput.overwrit);
  bk_assert(ofile,resampleinput.fileout,__FILE__,__LINE__);

  ofstream slavelineofile;
  openfstream(slavelineofile,"rsmp_orig_slave_line.raw",generalinput.overwrit);
  bk_assert(slavelineofile,"rsmp_orig_slave_line.raw",__FILE__,__LINE__);

  ofstream slavepixelofile;
  openfstream(slavepixelofile,"rsmp_orig_slave_pixel.raw",generalinput.overwrit);
  bk_assert(slavepixelofile,"rsmp_orig_slave_pixel.raw",__FILE__,__LINE__);

  //ofstream slavelineofile("rsmp_orig_slave_line.raw", ios::out | ios::trunc); //[FvL]
  //bk_assert(slavelineofile,"rsmp_orig_slave_line.raw",__FILE__,__LINE__);

  //ofstream slavepixelofile("rsmp_orig_slave_pixel.raw", ios::out | ios::trunc); //[FvL]
  //bk_assert(slavepixelofile,"rsmp_orig_slave_pixel.raw",__FILE__,__LINE__);

  // ________ First write zero lines if appropriate (DBOW) ______
  const real4 zeror4(0); //[FvL]
  switch (resampleinput.oformatflag)
    {
    case FORMATCR4:
      {
      const complr4 zerocr4(0,0);
      for (int32 thisline=0; thisline<write0lines1; ++thisline)
        for (int32 thispixel=0;
             thispixel<int32(RESULT.pixels())+write0pixels1+write0pixelsN;
             ++thispixel)
          {
          ofile.write((char*)&zerocr4,sizeofcr4);
          slavelineofile.write((char*)&zeror4,sizeofr4); //[FvL]
          slavepixelofile.write((char*)&zeror4,sizeofr4);
          }
      break;
      }
    case FORMATCI2:
      {
      const compli16 zeroci16(0,0);
      for (int32 thisline=0; thisline<write0lines1; ++thisline)
        for (int32 thispixel=0;
             thispixel<int32(RESULT.pixels())+write0pixels1+write0pixelsN;
             ++thispixel)
          {
          ofile.write((char*)&zeroci16,sizeofci16);
          slavelineofile.write((char*)&zeror4,sizeofr4); //[FvL]
          slavepixelofile.write((char*)&zeror4,sizeofr4);
          }
      break;
      }
    default:
      PRINT_ERROR("impossible format")
      throw(unhandled_case_error);
    }

  // ______ Info ______
  INFO << "Overlap window: "
       << overlap.linelo << ":" << overlap.linehi << ", "
       << overlap.pixlo  << ":" << overlap.pixhi;
  INFO.print();


  // ______ Progress messages ______
  int32 percent    = 0;
  int32 tenpercent = int32(rint(overlap.lines()/10.0));  // round
  if (tenpercent==0) tenpercent = 1000;                   // avoid error: x%0

  // ====== Resample all lines that are requested ======
  bool newbufferrequired = true;                // read initial slave buffer
  register int32 linecnt = -1;                  // indicate output buffer full
  int32 firstline        = 0;                   // slave system
  int32 lastline         = 0;

  register int32 line;                          // loop counter master system
  register int32 pixel;                         // loop counter master system
  for (line=overlap.linelo; line<=overlap.linehi; line++)
    {
    // ______ Progress messages ______
    if (((line-overlap.linelo)%tenpercent)==0)
      {
      PROGRESS << "RESAMPLE: " << setw(3) << percent << "%";
      PROGRESS.print();
      percent += 10;
      }

    // ====== Write RESULT to disk if it is full (write last bit at end) ======
    if (linecnt==int32(RESULT.lines())-1)              // ==nlines
      {
      newbufferrequired = true;                 // do load slave from file
      DEBUG << "Writing slave: ["
           << line-RESULT.lines() << ":" << line-1 << ", "
           << overlap.pixlo << ":" << overlap.pixhi
           << "] (master coord. system)";
      DEBUG.print();
      linecnt = 0;
      // ______ Actually write ______
      switch (resampleinput.oformatflag)
        {
        case FORMATCR4:
          {
          // old, now first write zeropixels...: ofile << RESULT;
          const complr4 zerocr4(0.0, 0.0);
          for (int32 thisline=0; thisline<int32(RESULT.lines()); ++thisline)
            {
            // ______ Write zero pixels at start ______
            for (int32 thispixel=0; thispixel<write0pixels1; ++thispixel)
              {
              ofile.write((char*)&zerocr4,sizeofcr4);
              slavelineofile.write((char*)&zeror4,sizeofr4); //[FvL]
              slavepixelofile.write((char*)&zeror4,sizeofr4);
              }
            // ______ WRITE the interpolated data per row ______
            ofile.write((char*)&RESULT[thisline][0],RESULT.pixels()*sizeof(RESULT(0,0)));
            slavelineofile.write((char*)&SLAVE_LINE[thisline][0],SLAVE_LINE.pixels()*sizeof(SLAVE_LINE(0,0))); //[FvL]
            slavepixelofile.write((char*)&SLAVE_PIXEL[thisline][0],SLAVE_PIXEL.pixels()*sizeof(SLAVE_PIXEL(0,0)));
            // ______ Write zero pixels at end ______
            for (int32 thispixel=0; thispixel<write0pixelsN; ++thispixel)
              {
              ofile.write((char*)&zerocr4,sizeofcr4);
              slavelineofile.write((char*)&zeror4,sizeofr4); //[FvL]
              slavepixelofile.write((char*)&zeror4,sizeofr4);
            }
            }
          break;
          }
        case FORMATCI2:
          {
          const compli16 zeroci16(0,0);
          compli16 castedresult;
          for (int32 thisline=0; thisline<int32(RESULT.lines()); ++thisline)
            {
            // ______ Write zero pixels at start ______
            for (int32 thispixel=0; thispixel<write0pixels1; ++thispixel)
              {
              ofile.write((char*)&zeroci16,sizeofci16);
              slavelineofile.write((char*)&zeror4,sizeofr4); //[FvL]
              slavepixelofile.write((char*)&zeror4,sizeofr4);
              }
            // ______ Write the interpolated data per row ______
            for (int32 thispixel=0; thispixel<int32(RESULT.pixels()); ++thispixel)
              {
              // no default conversion, this seems slow, test this (BK)
              castedresult = cr4toci2(RESULT(thisline,thispixel));
              ofile.write((char*)&castedresult,sizeofci16);
              slavelineofile.write((char*)&SLAVE_LINE[thisline][0],SLAVE_LINE.pixels()*sizeof(SLAVE_LINE(0,0))); //[FvL]
              slavepixelofile.write((char*)&SLAVE_PIXEL[thisline][0],SLAVE_PIXEL.pixels()*sizeof(SLAVE_PIXEL(0,0)));
              }
            // ______ Write zero pixels at end ______
            for (int32 thispixel=0; thispixel<write0pixelsN; ++thispixel)
              {
              ofile.write((char*)&zeroci16,sizeofci16);
              slavelineofile.write((char*)&zeror4,sizeofr4); //[FvL]
              slavepixelofile.write((char*)&zeror4,sizeofr4);
              }
            }
          break;
          }
        default:
          PRINT_ERROR("impossible format")
          throw(unhandled_case_error);
        }
      }//end if linecnt

    else // output buffer not full yet
      {
      linecnt++;
      }

    // ====== Read slave buffer if justwritten || firstblock ======
    if (newbufferrequired==true)
      {
      newbufferrequired = false;        // only load after output
                                        // written
      if (demassist)
        {
          pos = (streampos)((line-master.currentwindow.linelo)*master.currentwindow.pixels() + overlap.pixlo - master.currentwindow.pixlo);
          pos = (streampos)(pos * sizer8);
          DeltaLfile.seekg(pos,ios::beg);                  // [MA] better to check for failbit
          DeltaLfile.read((char*)&deltaL_dem,sizer8);

          deltaL_poly = polyval(normalize(real4(line),minL,maxL),
                                normalize(real4(overlap.pixlo),minP,maxP),
                                cpmL,degree_cpmL);

          real4 firstline_pixlo  = real4(line  + deltaL_dem + deltaL_poly + ms_az_timing_error_L);

          pos = (streampos)((line-master.currentwindow.linelo)*master.currentwindow.pixels() + overlap.pixhi - master.currentwindow.pixlo);
          pos = (streampos)(pos * sizer8);
          DeltaLfile.seekg(pos,ios::beg);
          DeltaLfile.read((char*)&deltaL_dem,sizer8);

          deltaL_poly = polyval(normalize(real4(line),minL,maxL),
                                normalize(real4(overlap.pixhi),minP,maxP),
                                cpmL,degree_cpmL);

          real4 firstline_pixhi  = real4(line  + deltaL_dem + deltaL_poly + ms_az_timing_error_L);


          int32 line2 = line + nlines - 1;

          // LAST BUFFER FIX
          // [DON] Davide Nitti,  the overrun of last line due to buffer nlines.
          // start added by don
          if (line2 > int32(master.currentwindow.linehi))
          {
             DEBUG << "Variable line2: [ACTUAL Value: " << line2 << " - NEW Value: " << master.currentwindow.linehi << "]";
             DEBUG.print();
             line2 = master.currentwindow.linehi;
          }
          // end added by don

          pos = (streampos)((line2-master.currentwindow.linelo)*master.currentwindow.pixels() + overlap.pixlo - master.currentwindow.pixlo);
          pos = (streampos)(pos * sizer8);
          DeltaLfile.seekg(pos,ios::beg);
          DeltaLfile.read((char*)&deltaL_dem,sizeof(deltaL_dem)); // [MA] sizer8 --> sizeof(deltaL_dem)

          if ( DeltaLfile.fail() ) { // [MA]  put it to a proper class
          WARNING << "Failed to read position: " << pos  ; // coherence will be lost in lastbuffer
          WARNING.print() ;
          // exit(1)
          }

          deltaL_poly = polyval(normalize(real4(line2),minL,maxL),
                                normalize(real4(overlap.pixlo),minP,maxP),
                                cpmL,degree_cpmL);

          real4 lastline_pixlo  = (real4)(line2  + deltaL_dem + deltaL_poly + ms_az_timing_error_L);

          pos = (streampos)((line2-master.currentwindow.linelo)*master.currentwindow.pixels() + overlap.pixhi - master.currentwindow.pixlo);
          pos = (streampos)(pos * sizer8);
          DeltaLfile.seekg(pos,ios::beg);
          DeltaLfile.read((char*)&deltaL_dem,sizer8);

          deltaL_poly = polyval(normalize(real4(line2),minL,maxL),
                                normalize(real4(overlap.pixhi),minP,maxP),
                                cpmL,degree_cpmL);

          real4 lastline_pixhi  = (real4)(line2  + deltaL_dem + deltaL_poly + ms_az_timing_error_L);

          firstline = int32(ceil(min(firstline_pixlo,firstline_pixhi)))-Npoints;
          lastline  = int32(ceil(min(lastline_pixlo,lastline_pixhi)))+Npoints;
        }
      else
        {
          firstline = int32(ceil(min(line +
                       polyval(normalize(real4(line),minL,maxL),
                               normalize(real4(overlap.pixlo),minP,maxP),
                                             cpmL,degree_cpmL),
                       line +
                       polyval(normalize(real4(line),minL,maxL),
                               normalize(real4(overlap.pixhi),minP,maxP),
                               cpmL,degree_cpmL))))
                           - Npoints;
          int32 line2 = line + nlines - 1;
          lastline  = int32(ceil(min(line2 +
                        polyval(normalize(real4(line2),minL,maxL),
                                normalize(real4(overlap.pixlo),minP,maxP),
                                cpmL,degree_cpmL),
                                 line2 +
                        polyval(normalize(real4(line2),minL,maxL),
                                normalize(real4(overlap.pixhi),minP,maxP),
                                cpmL,degree_cpmL))))
                             + Npoints;
        }

      //const int32 FORSURE = 25;         // extend buffer by 2*FORSURE start/end
      int32 FORSURE = 25;         // extend buffer by 2*FORSURE start/end
      if ( master.ovs_az > 1 && master.ovs_az < 32  ) // [MA] To avoid any extreme value in the result file.
       {
        FORSURE = FORSURE*master.ovs_az;              // [MA] the value should scale with oversampling otherwise it may fail.
        DEBUG << "FORSURE: " << FORSURE << " extra lines before and after each buffer (oversampled)";
        DEBUG.print();
       }
      else
       {
        DEBUG << "FORSURE: " << FORSURE << " extra lines before and after each buffer (zero-looked)";
        DEBUG.print();
       }

      firstline -= FORSURE; // extend buffer
      lastline  += FORSURE; // extend buffer


      // ______ Don't compare apples with pears, uint<->int! ______
      if (firstline < int32(slave.currentwindow.linelo))
        firstline = slave.currentwindow.linelo;

      if (lastline > int32(slave.currentwindow.linehi))
        lastline = slave.currentwindow.linehi;
      // ______ Fill slave BUFFER from disk ______
      window winslavefile(firstline, lastline,  // part of slave loaded
                           slave.currentwindow.pixlo,   // from file in BUFFER.
                           slave.currentwindow.pixhi);
      DEBUG << "Reading slave: ["
           << winslavefile.linelo << ":" << winslavefile.linehi << ", "
           << winslavefile.pixlo  << ":" << winslavefile.pixhi  << "]";
      DEBUG.print();
      BUFFER = slave.readdata(winslavefile);
      } // ___end: Read new slave buffer to resample outputbuffer


    // ====== Actual resample all pixels this output line ======
    for (pixel=overlap.pixlo; pixel<=int32(overlap.pixhi); pixel++)
      {
        if (demassist)
          {

            //pos = overlap.pixels() * ( line - overlap.linelo ) + pixel - overlap.pixlo;
            pos = (streampos)((line-master.currentwindow.linelo)*master.currentwindow.pixels() + pixel - master.currentwindow.pixlo);
            pos = (streampos)(pos * sizer8);

            DeltaLfile.seekg(pos,ios::beg);
            DeltaPfile.seekg(pos,ios::beg);

            DeltaLfile.read((char*)&deltaL_dem,sizer8);
            DeltaPfile.read((char*)&deltaP_dem,sizer8);

            deltaL_poly = polyval(normalize(real4(line),minL,maxL),
                      normalize(real4(pixel),minP,maxP),
                      cpmL,degree_cpmL);
            deltaP_poly = polyval(normalize(real4(line),minL,maxL),
                      normalize(real4(pixel),minP,maxP),
                      cpmP,degree_cpmP);

            interpL  = real4(line  + deltaL_dem + deltaL_poly + ms_az_timing_error_L);
            interpP = real4(pixel + deltaP_dem + deltaP_poly + ms_r_timing_error_P);

          }
        else
          {

            // ______ Evaluate coregistration polynomial ______
            // bk 25-10-99 why don't i do this per buffer, that's faster. (but more mem)
            //interpL = line  + polyval(line,pixel,cpmL,degree_cpmL); // e.g. 255.35432
            //interpP = pixel + polyval(line,pixel,cpmP,degree_cpmP); // e.g. 2.5232
            // ______ BK USE normalized coordinates, do this smarter .... !!!!
            interpL = line  +
              polyval(normalize(real4(line),minL,maxL),
                      normalize(real4(pixel),minP,maxP),
                      cpmL,degree_cpmL);                              // e.g. 255.35432
            interpP = pixel +
              polyval(normalize(real4(line),minL,maxL),
                      normalize(real4(pixel),minP,maxP),
                      cpmP,degree_cpmP);                              // e.g. 2.5232
          }


      // ______ Get correct lines for interpolation ______
      const int32 fl_interpL = int32(interpL);
      const int32 fl_interpP = int32(interpP);
      const int32 firstL     = fl_interpL - Npointsd2m1;        // e.g. 254 (5 6 7)
      const int32 firstP     = fl_interpP - Npointsd2m1;        // e.g. 1   (2 3 4)
      const real4 interpLdec = interpL - fl_interpL;            // e.g. .35432
      const real4 interpPdec = interpP - fl_interpP;            // e.g. .5232

      // ______ Copy kernels here, change kernelL if required _ // BK 26-Oct-2002
      // ______ Faster to have two kernel lookup tables ! _____
      // ______ I have that now, but still make copy (slow) ______
      const int32 kernelnoL   = int32(interpLdec*INTERVAL+0.5); // lookup table index
      const int32 kernelnoP   = int32(interpPdec*INTERVAL+0.5); // lookup table index
      matrix<complr4> kernelL = (*pntKernelAz[kernelnoL]);      // local copy to change
      const matrix<complr4> kernelP = (*pntKernelRg[kernelnoP]);// local copy

#ifdef __DEBUG //turn this on as default in case of seg. faults,
               //maybe modify... [FvL]
      // ______This shouldn't be possible...______
      const int32 Npointsm1 = Npoints-1;
      if (firstL < slave.currentwindow.linelo)
        {
        WARNING.print("firstL smaller than on disk (required for interpolation). continuing");
        RESULT(linecnt,pixel-overlap.pixlo) = complr4(0.,0.);
        continue;               // with next pixel
        }
      if (firstL+Npointsm1 > slave.currentwindow.linehi)
        {
        WARNING << "lastL larger than on disk (required for interpolation). continuing"
        << "lineL: " << firstL+Npointsm1 << " > " << slave.currentwindow.linehi ;
        WARNING.print();
        RESULT(linecnt,pixel-overlap.pixlo) = complr4(0.,0.);
        continue;               // with next pixel
        }
      if (firstP < slave.currentwindow.pixlo)
        {
        WARNING.print("firstP smaller than on disk (required for interpolation). continuing");
        RESULT(linecnt,pixel-overlap.pixlo) = complr4(0.,0.);
        continue;               // with next pixel
        }
      if (firstP+Npointsm1 > slave.currentwindow.pixhi)
        {
        WARNING.print("lastP larger than on disk (required for interpolation). continuing");
        RESULT(linecnt,pixel-overlap.pixlo) = complr4(0.,0.);
        continue;               // with next pixel
        }
#endif

      // ______ Shift azimuth kernel with fDC before interpolation ______
      if   (resampleinput.shiftazi == 1)
        {
        // ___ Doppler centroid is function of range only ____
        const real4 tmp = 2.0*PI*slave.pix2fdc(interpP)/slave.prf;
        // ___ to shift spectrum of convolution kernel to fDC of data, multiply
        // ___ in the space domain with a phase trend of -2pi*t*fdc/prf
        // ___ (to shift back (no need) you would use +fdc), see manual;
        for (i=0; i<Npoints; ++i)
          {
          // ___ Modify kernel, shift spectrum to fDC ___
          const real4 t  = ((*pntAxis[kernelnoL])(i,0))*tmp;
          //kernelL(i,0)  *= complr4(cos(t),-sin(t));// note '-' (see manual)
          kernelL(i,0)  *= complr4(fast_cos(t),fast_min_sin(t));// note '-' (see manual)
          }
        }

        // ______ For speed: define setdata internally (memcpy) ______
        for (i=0; i<Npoints; i++)
          memcpy(PART[i],
          BUFFER[i+firstL-firstline]+
          firstP-slave.currentwindow.pixlo,Npointsxsize);

        // ====== Some speed considerations ======
        #ifdef __USE_VECLIB_LIBRARY__
        // ______Compute PART * kernelP______
        cgemv("T",&Np,&Np,&c4alpha, PART[0],&Np,
              kernelP[0],&ONEint,
              &c4beta,TMPRES[0],&ONEint,1);
        // ______Compute Result * kernelL; put in matrix RESULT______
        ANS = cdotu(&Np,TMPRES[0],&ONEint, kernelL[0],&ONEint);
        RESULT(linecnt,pixel-overlap.pixlo) = complr4(ANS.re,ANS.im);
        #else // do not use VECLIB
        // ______ NO VECLIB: slower, but works ______
        RESULT(linecnt,pixel-overlap.pixlo) =
             ((matTxmat(PART*kernelP, kernelL))(0,0));
        #endif // VECLIB y/n

	    // ========== collect final shifts ====================== [FvL]
	    // (required for re-ramping of the spectrum for TOPS data

	    SLAVE_LINE(linecnt,pixel-overlap.pixlo) = interpL;
	    SLAVE_PIXEL(linecnt,pixel-overlap.pixlo) = interpP;

      } // for all pixels in overlap
    } // for all lines in overlap


  // ______ Write last lines of Result to disk (filled upto linecnt) ______
  DEBUG << "Writing slave: ["
       << overlap.linehi-linecnt << ":" << overlap.linehi << ", "
       << overlap.pixlo << ":" << overlap.pixhi
       << "] (master coord. system)";
  DEBUG.print();

   const int16 nofLinesBuf = 1;//DONOT change it to more than ONE line
 //  const int32 maxNofBuf = int32(floor(real4(linecnt)/real4(nofLinesBuf)));
  // ______ Actually write ______
  switch (resampleinput.oformatflag)
    {
    case FORMATCR4:
      {
           
     
          //This buffer is of size 1 line and RESULT.pixels() plus the zero-border pixels
       matrix<complr4> thisBuffer(nofLinesBuf,RESULT.pixels()+write0pixels1+write0pixelsN);
       matrix<real4> thisBuffer_line(nofLinesBuf,SLAVE_LINE.pixels()+write0pixels1+write0pixelsN);
       matrix<real4> thisBuffer_pixel(nofLinesBuf,SLAVE_PIXEL.pixels()+write0pixels1+write0pixelsN);
       
       DEBUG << "thisBuffer pixels : " << thisBuffer.pixels() << "\n";
       DEBUG << "thisBuffer lines:   " << thisBuffer.lines();
       DEBUG.print();
       
      for (int32 thisline=0; thisline<=linecnt; thisline++)
        {
        //Use loop to create buffer not to write each pixel results
        
          //Write the results per line
          //First allocate the results to the corresponding window
           window windef(0,0,0,0);                       // default, thus copy to total matrix
           
           //The allocation window starts at 0 and ends at 0
           // Starts at pixel write0pixels1 and ends at pixel RESULT.pixels()-1
           //the rest are atutimatically set to zero
           window win1(0, 0,write0pixels1, RESULT.pixels()-1);
  
           //Allocate the corresponding line to the buffer this buffer
          thisBuffer.setdata(win1,RESULT.getrow(thisline),windef) ;
          thisBuffer_line.setdata(win1,SLAVE_LINE.getrow(thisline),windef) ;
          thisBuffer_pixel.setdata(win1,SLAVE_PIXEL.getrow(thisline),windef) ;

            //Dump data to file
            // ______ WRITE the interpolated data per row ______
              ofile.write((char*)&thisBuffer[0][0],thisBuffer.pixels()*sizeof(thisBuffer(0,0)));
              slavelineofile.write((char*)&thisBuffer_line[0][0],thisBuffer_line.pixels()*sizeof(thisBuffer_line(0,0))); //[FvL]
              slavepixelofile.write((char*)&thisBuffer_pixel[0][0],thisBuffer_pixel.pixels()*sizeof(thisBuffer_pixel(0,0)));
              
           
   
        }
      break;
      }
    case FORMATCI2:
      {
      const compli16 zeroci16(0,0);
      compli16 castedresult;
       matrix<compli16> thisBuffer(nofLinesBuf,RESULT.pixels()+write0pixels1+write0pixelsN);
       matrix<real4> thisBuffer_line(nofLinesBuf,SLAVE_LINE.pixels()+write0pixels1+write0pixelsN);
       matrix<real4> thisBuffer_pixel(nofLinesBuf,SLAVE_PIXEL.pixels()+write0pixels1+write0pixelsN);
       
       DEBUG << "thisBuffer pixels : " << thisBuffer.pixels() << "\n";
       DEBUG << "thisBuffer lines:   " << thisBuffer.lines();
       DEBUG.print();
       
      for (int32 thisline=0; thisline<=linecnt; thisline++)
        {
        //Use loop to create buffer not to write the each pixel results
         //Write the results per line
          //First allocate the results to the corresponding window
           window windef(0,0,0,0);                       // default, thus copy to total matrix
           window win1(0, 0,write0pixels1, RESULT.pixels()-1);
           
            //The allocation window starts at 0 and ends at 0
           // Starts at pixel write0pixels1 and ends at pixel RESULT.pixels()-1
           //the rest are atutimatically set to zero
           //Need loop for casted data
          for (int32 thisPx = write0pixels1; thisPx<= RESULT.pixels()-1;thisPx++)
           thisBuffer(0,thisPx) = cr4toci2(RESULT(thisline,thisPx-write0pixels1));
              
        
          thisBuffer_line.setdata(win1,SLAVE_LINE.getrow(thisline),windef) ;
          thisBuffer_pixel.setdata(win1,SLAVE_PIXEL.getrow(thisline),windef) ;
      
            //Dump data to file
            // ______ WRITE the interpolated data per row ______
          
              ofile.write((char*)&thisBuffer[0][0],thisBuffer.pixels()*sizeof(thisBuffer(0,0)));
              slavelineofile.write((char*)&thisBuffer_line[0][0],thisBuffer_line.pixels()*sizeof(thisBuffer_line(0,0))); //[FvL]
              slavepixelofile.write((char*)&thisBuffer_pixel[0][0],thisBuffer_pixel.pixels()*sizeof(thisBuffer_pixel(0,0)));
         
    
        }
      break;
      }
    default:
      PRINT_ERROR("impossible format")
      throw(unhandled_case_error);
    }


  // ====== Write last zero lines if appropriate (DBOW card) ======
  switch (resampleinput.oformatflag)
    {
    case FORMATCR4:
      {
      complr4 zerocr4(0,0);
      for (int32 thisline=0; thisline<write0linesN; ++thisline)
        for (int32 thispixel=0;
             thispixel<int32(RESULT.pixels())+write0pixels1+write0pixelsN;
             ++thispixel)
          {
          ofile.write((char*)&zerocr4,sizeofcr4);
          slavelineofile.write((char*)&zeror4,sizeofr4); //[FvL]
          slavepixelofile.write((char*)&zeror4,sizeofr4);
          }
      break;
      }
    case FORMATCI2:
      {
      compli16 zeroci16(0,0);
      for (int32 thisline=0; thisline<write0linesN; ++thisline)
        for (int32 thispixel=0;
             thispixel<int32(RESULT.pixels())+write0pixels1+write0pixelsN;
             ++thispixel)
          {
          ofile.write((char*)&zeroci16,sizeofci16);
          slavelineofile.write((char*)&zeror4,sizeofr4); //[FvL]
          slavepixelofile.write((char*)&zeror4,sizeofr4);
          }
      break;
      }
    default:
      PRINT_ERROR("impossible format")
      throw(unhandled_case_error);
    }
  ofile.close();
  slavelineofile.close(); //[FvL]
  slavepixelofile.close(); //[FvL]

//fclose (pFile);

  // ====== Write results to slave resfile ======
  char rsmethod[EIGHTY];
  switch(resampleinput.method)
    {
    case rs_rect:
      strcpy(rsmethod,"nearest neighbour");
      break;
    case rs_tri:
      strcpy(rsmethod,"piecewise linear");
      break;
    case rs_cc4p:
      strcpy(rsmethod,"4 point cubic convolution");
      break;
    case rs_cc6p:
      strcpy(rsmethod,"6 point cubic convolution");
      break;
    case rs_ts6p:
      strcpy(rsmethod,"6 point truncated sinc");
      break;
    case rs_ts8p:
      strcpy(rsmethod,"8 point truncated sinc");
      break;
    case rs_ts16p:
      strcpy(rsmethod,"16 point truncated sinc");
      break;
    case rs_knab4p:
      strcpy(rsmethod,"4 point knab kernel");
      break;
    case rs_knab6p:
      strcpy(rsmethod,"6 point knab kernel");
      break;
    case rs_knab8p:
      strcpy(rsmethod,"8 point knab kernel");
      break;
    case rs_knab10p:
      strcpy(rsmethod,"10 point knab kernel");
      break;
    case rs_knab16p:
      strcpy(rsmethod,"16 point knab kernel");
      break;
    case rs_rc6p:
      strcpy(rsmethod,"6 point raised cosine kernel");
      break;
    case rs_rc12p:
      strcpy(rsmethod,"12 point raised cosine kernel");
      break;
    default:
      PRINT_ERROR("impossible.")
      throw(unhandled_case_error);
    }

  char rsoformat[EIGHTY];
  switch(resampleinput.oformatflag)
    {
    case FORMATCR4:
      strcpy(rsoformat,"complex_real4");
      break;
    case FORMATCI2:
      strcpy(rsoformat,"complex_short");
      break;
    default:
      PRINT_ERROR("impossible.")
      throw(unhandled_case_error);
    }


  // --- Write result file ---
  ofstream scratchlogfile("scratchlogresample", ios::out | ios::trunc);
  bk_assert(scratchlogfile,"resample: scratchlogresample",__FILE__,__LINE__);
  scratchlogfile
    << "\n\n*******************************************************************"
    << "\n* RESAMPLE:"
    << "\n*******************************************************************"
    << "\nData_output_file: \t\t\t"
    <<  resampleinput.fileout
    << "\nData_output_format: \t\t\t"
    << rsoformat
    << "\nInterpolation kernel: \t\t\t"
    <<  rsmethod
    << "\nResampled slave size in master system: \t"
    <<  overlap.linelo - write0lines1 << ", "
    <<  overlap.linehi + write0linesN << ", "
    <<  overlap.pixlo  - write0pixels1 << ", "
    <<  overlap.pixhi  + write0pixelsN
    << "\n*******************************************************************\n";
  scratchlogfile.close();

  ofstream scratchresfile("scratchresresample", ios::out | ios::trunc);
  bk_assert(scratchresfile,"resample: scratchresresample",__FILE__,__LINE__);
  scratchresfile
    << "\n\n*******************************************************************"
    << "\n*_Start_" << processcontrol[pr_s_resample]
    << "\n*******************************************************************"
    << "\nNormalization_Lines:   \t" <<minL<< " " <<maxL<< ""
    << "\nNormalization_Pixels:  \t" <<minP<< " " <<maxP<< ""
    << "\nShifted azimuth spectrum:             \t\t"
    <<  resampleinput.shiftazi
    << "\nData_output_file:                     \t\t"
    <<  resampleinput.fileout
    << "\nData_output_format:                   \t\t"
    << rsoformat
    << "\nInterpolation kernel:                 \t\t"
    <<  rsmethod
    << "\nFirst_line (w.r.t. original_master):  \t\t"
    <<  overlap.linelo - write0lines1
    << "\nLast_line (w.r.t. original_master):   \t\t"
    <<  overlap.linehi + write0linesN
    << "\nFirst_pixel (w.r.t. original_master): \t\t"
    <<  overlap.pixlo  - write0pixels1
    << "\nLast_pixel (w.r.t. original_master):  \t\t"
    <<  overlap.pixhi  + write0pixelsN
    << "\n*******************************************************************"
    << "\n* End_" << processcontrol[pr_s_resample] << "_NORMAL"
    << "\n*******************************************************************\n";
  scratchresfile.close();


  // ______Tidy up______
  DEBUG.print("deleting new matrix, memory errors could be caused by this");
  for (i=0;i<Ninterval;i++)// like this ???
    {
    delete    pntKernelAz[i];
    delete    pntKernelRg[i];
    delete    pntAxis[i];
    //    delete [] pntKernelAz[i];
    }
  DEBUG.print("Exiting resample.");
  } // END resample


/****************************************************************
 * ms_timing_error                                              *
 *                                                              *
 * relative timing error between master and slave               *
 *                                                              *
 * input:                                                       *
 *  - master                                                    *
 *  - interferogram result file                                 *
 *  - timing input                                              *
 *  - coarse_orbit_offsetL                                      *
 *  - coarse_orbit_offsetP                                      *
 * output:                                                      *
 *  - ms_az_timing_error_L                                      *
 *  - ms_r_timing_error_P                                       *
 *  - ms_az_timing_error                                        *
 *  - ms_r_timing_error                                         *
 *                                                              *
 *    Freek van Leijen, 06-SEP-2007                             *
 ****************************************************************/
void ms_timing_error(
        const slcimage        &master, // normalization factors, ovs_rg/az
        const char*           i_resfile,
        const input_reltiming    &timinginput,
        int32                 &coarse_orbit_offsetL,
        int32                 &coarse_orbit_offsetP)
  {
  TRACE_FUNCTION("ms_timing_error (FvL 6-SEP-2007)")

    INFO << coarse_orbit_offsetL;
    INFO.print();
    INFO << coarse_orbit_offsetP;
    INFO.print();

  const real4 THRESHOLD = timinginput.threshold;// threshold ...
  const int32 MAX_ITERATIONS = timinginput.maxiter;// max. of pnts to remove
  const real4 CRIT_VALUE = timinginput.k_alpha;// crit. value outlier removal
  const int32 DEGREE = 0;// degree of polynomial
  const int32 Nunk = Ncoeffs(DEGREE);// Number of unknowns/direction

  // ______ Normalize data for polynomial ______
  const real8 minL     = master.originalwindow.linelo;
  const real8 maxL     = master.originalwindow.linehi;
  const real8 minP     = master.originalwindow.pixlo;
  const real8 maxP     = master.originalwindow.pixhi;

  // ______ A priori sigma of  offset ______
  // ______ Read this factor from the result file
  // ______ "Oversampling factor: 32"
  // ______ "Window_size_L_for_correlation: 4"
  // ______ "Window_size_P_for_correlation: 121"
  DEBUG.print("Reading oversampling factor from result file");
  uint osfactor  = 32;// oversamplingsfactor
  int32 corrwinL = 64;// window size to compute FINE correlation
  int32 corrwinP = 64;// window size to compute FINE correlation
  char c4osfactor[4];
  char c10corrwinL[10];
  char c10corrwinP[10];
  bool found = readres(c4osfactor,sizeof(c4osfactor),i_resfile, "Oversampling", 1);
  if (found) osfactor = uint(atoi(c4osfactor));
  found = readres(c10corrwinL,sizeof(c10corrwinL),i_resfile, "Window_size_L_for_correlation:", 0);
  if (found) corrwinL = int32(atoi(c10corrwinL));
  found = readres(c10corrwinP,sizeof(c10corrwinP),i_resfile, "Window_size_P_for_correlation:", 0);
  if (found) corrwinP = int32(atoi(c10corrwinP));
  corrwinL = max(10,corrwinL-8);// if fft method peak is not at center
  corrwinP = max(10,corrwinP-8);//  +then effective number of samples is smaller
  // _____ oversampling factor is bin in which maximum can be found _____
  // _____ ovsf=16-->apriorisigma=0.03
  const real4 ACCURACY = 0.5 * (1.0/(real4(osfactor)));

  // but we need coreg accuracy of 0.1 pixel about.  therefore use a priori
  // based on experience here, and different for azimuth and range
  // this also helps our automated outlier detection and testing hopefully.
  // BK 15-Apr-2003
  // if the image is oversampled, then still use orig spacing
  real4 SIGMAL = 0.15/master.ovs_az;// sigma in orig pixels
  real4 SIGMAP = 0.10/master.ovs_rg;// seems range direction is better???
  INFO.print("Using a smaller sigma in range, because it seems that can be estimated better");
  INFO << "a priori std.dev offset vectors line direction [samples]:  " << SIGMAL;
  INFO.print();
  INFO << "a priori std.dev offset vectors pixel direction [samples]: " << SIGMAP;
  INFO.print();

  // ______ Find #points > threshold ______
  matrix<real4> Data   = getofffile(i_resfile, THRESHOLD);
  // ______ Data contains the following: ______
  // Data(i,0) = winnumber; Data(i,1) = posL; Data(i,2) = posP;
  // Data(i,3) = offL;      Data(i,4) = offP; Data(i,5) = corr;


  int32 ITERATION = 0;
  int32 DONE      = 0;
  // sqr: level significance: alpha=0.001; power of test: gamma=0.80
  //real4 CRIT_VALUE = sqrt(3.29);
  INFO << "Critical value for outlier test: " << CRIT_VALUE;
  INFO.print();
  uint winL = 0;// window number to be removed
  uint winP = 0;// window number of largest w -test in range
  matrix<real8> eL_hat;
  matrix<real8> eP_hat;
  matrix<real8> wtestL;
  matrix<real8> wtestP;
  matrix<real8> rhsL;
  matrix<real8> rhsP;
  matrix<real8> Qx_hat;
  real8 maxdev = 0.0;
  real8 overallmodeltestL = 0.0;
  real8 overallmodeltestP = 0.0;
  real8 maxwL;
  real8 maxwP;
  register int32 i,j,k,index;
  while (DONE != 1)
    {
    DEBUG << "Start iteration " << ITERATION;
    DEBUG.print();
    // ______ Remove identified outlier from previous estimation ______
    if (ITERATION != 0)
      {
      matrix<real4> tmp_DATA = Data; //(remove_observation_i,*);
      Data.resize(Data.lines()-1, Data.pixels());
      j = 0;// counter over reduced obs.vector
      for (i=0; i<tmp_DATA.lines(); i++)// counter over original window numbers
        {
        if (i != winL)// do not copy the one to be removed.
          {
          Data.setrow(j,tmp_DATA.getrow(i));// copy back without removed obs.
          j++;// fill next row of Data
          }
        else
          {
          DEBUG << "Removing observation " << i << " from observation vector.";
          DEBUG.print();
          }
        }
      }

    // ______Check redundancy______
    int32 Nobs = Data.lines();                          // Number of points > threshold
    if (Nobs < Nunk)
      {
      PRINT_ERROR("ms_timing_error: Number of windows > threshold is smaller than parameters solved for.")
      throw(input_error);
      }

    // ______Set up system of equations______
    // ______Order unknowns: A00 A10 A01 A20 A11 A02 A30 A21 A12 A03 for degree=3______
    matrix<real8> yL(Nobs,1);                   // observation
    matrix<real8> yP(Nobs,1);                   // observation
    matrix<real8> A(Nobs,Nunk);                 // designmatrix
    matrix<real8> Qy_1(Nobs,1);                 // a priori covariance matrix (diag)

    // ______ Normalize data for polynomial ______
    DEBUG << "ms_timing_error: polynomial normalized by factors: "
         << minL << " " << maxL << " " << minP << " " << maxP << " to [-2,2]";
    DEBUG.print();

    // ______Fill matrices______
    DEBUG.print("Setting up design matrix for LS adjustment");
    for (i=0; i<Nobs; i++)
      {
      real8 posL = normalize(real8(Data(i,1)),minL,maxL);
      real8 posP = normalize(real8(Data(i,2)),minP,maxP);
      yL(i,0)    = real8(Data(i,3));
      yP(i,0)    = real8(Data(i,4));
      DEBUG << "ms_timing_error: (" << posL << ", "<< posP << "): yL="
            << yL(i,0) << " yP=" << yP(i,0);
      DEBUG.print();
      // ______Set up designmatrix______
      index = 0;
      for (j=0; j<=DEGREE; j++)
        {
        for (k=0; k<=j; k++)
          {
          A(i,index) = pow(posL,real8(j-k)) * pow(posP,real8(k));
          index++;
          }
        }
      }


    // ______Weight matrix data______
    DEBUG.print("Setting up (inverse of) covariance matrix for LS adjustment");
    for (i=0; i<Nobs; i++)
      Qy_1(i,0) = real8(1.0); //unweighted, could be changed later


    // ______Compute Normalmatrix, rghthandside______
    matrix<real8> N    = matTxmat(A,diagxmat(Qy_1,A));
    rhsL = matTxmat(A,diagxmat(Qy_1,yL));
    rhsP = matTxmat(A,diagxmat(Qy_1,yP));
    Qx_hat = N;
    // ______Compute solution______
    choles(Qx_hat);             // Cholesky factorisation normalmatrix
    solvechol(Qx_hat,rhsL);     // Solution unknowns in rhs
    solvechol(Qx_hat,rhsP);     // Solution unknowns in rhs
    invertchol(Qx_hat);         // Covariance matrix of unknowns
    // ______Test inverse______
    for (i=0; i<Qx_hat.lines(); i++)
      for (j=0; j<i; j++)
        Qx_hat(j,i) = Qx_hat(i,j);// repair Qx
    maxdev = max(abs(N*Qx_hat-eye(real8(Qx_hat.lines()))));
    DEBUG << "ms_timing_error: max(abs(N*inv(N)-I)) = " << maxdev;
    DEBUG.print();
    // ___ use trace buffer to store string, remember to rewind it ___
    if (maxdev > .01)
      {
      ERROR << "ms_timing_error: maximum deviation N*inv(N) from unity = " << maxdev
            << ". This is larger than 0.01";
      ERROR.print(ERROR.get_str());
      throw(some_error);
      }
    else if (maxdev > .001)
      {
      WARNING << "ms_timing_error: maximum deviation N*inv(N) from unity = " << maxdev
              << ". This is between 0.01 and 0.001";
      WARNING.print();
      }


    // ______Some other stuff, scale is ok______
    matrix<real8> Qy_hat        = A * (matxmatT(Qx_hat,A));
    matrix<real8> yL_hat        = A * rhsL;
    matrix<real8> yP_hat        = A * rhsP;
    eL_hat      = yL - yL_hat;
    eP_hat      = yP - yP_hat;
    matrix<real8> Qe_hat = -Qy_hat;
    for (i=0; i<Nobs; i++)
      Qe_hat(i,i) += (1. / Qy_1(i,0));

    // ______Overall model test (variance factor)______
    overallmodeltestL = 0.;
    overallmodeltestP = 0.;
    for (i=0; i<Nobs; i++)
      {
      overallmodeltestL += sqr(eL_hat(i,0))*Qy_1(i,0);
      overallmodeltestP += sqr(eP_hat(i,0))*Qy_1(i,0);
      }
    overallmodeltestL = (overallmodeltestL/sqr(SIGMAL)) /(Nobs-Nunk);// this is sigma hat!
    overallmodeltestP = (overallmodeltestP/sqr(SIGMAP)) /(Nobs-Nunk);// not OMT!
    DEBUG << "ms_timing_error: overallmodeltest Lines = " << overallmodeltestL;
    DEBUG.print();
    DEBUG << "ms_timing_error: overallmodeltest Pixels = " << overallmodeltestP;
    DEBUG.print();

    // ______Datasnooping, assume Qy diag______
    wtestL.resize(Nobs,1);
    wtestP.resize(Nobs,1);
    for (i=0; i<Nobs; i++)
      {
      wtestL(i,0) = eL_hat(i,0) / (sqrt(Qe_hat(i,i))*SIGMAL);// computed excl.var.factor
      wtestP(i,0) = eP_hat(i,0) / (sqrt(Qe_hat(i,i))*SIGMAP);
      }

    uint dumm = 0;
    maxwL     = max(abs(wtestL),winL,dumm);     // returns winL
    maxwP     = max(abs(wtestP),winP,dumm);     // returns winP
    DEBUG << "maximum wtest statistic azimuth = " << maxwL
          << " for window number: "
          <<  Data(winL,0);
    DEBUG.print();
    DEBUG << "maximum wtest statistic range   = " << maxwP
          << " for window number: "
          <<  Data(winP,0);
    DEBUG.print();
    // --- use summed wtest for outlier detection ---
    // #%// BK 21-Oct-2003
    matrix<real8> wtestsum = sqr(wtestL)+sqr(wtestP);// (Nobs,1)
    real8 maxwsum = max(wtestsum,winL,dumm);// idx to remove
    DEBUG << "Detected outlier:  summed sqr.wtest = " << maxwsum
          << "; observation: " << winL
          << "; window number: "
          <<  Data(winL,0);
    DEBUG.print();


    // ______ Test if we are done yet ______
    if (Nobs <= Nunk)
      {
      WARNING.print("NO redundancy!  Exiting iterations.");
      DONE = 1;// cannot remove more than this
      }
    // seems something fishy here..., b-method of testing delft
    //    if (max(overallmodeltestL,overallmodeltestP) < 1.0)
    //      {
    //      INFO.print("OMTs accepted, not iterating anymore (final solution reached).");
    //      DONE = 1;// ok (?).
    //      }
    if (max(maxwL,maxwP) <= CRIT_VALUE)// all tests accepted?
      {
      INFO.print("All outlier tests accepted! (final solution computed)");
      DONE = 1;// yeah!
      }
    if (ITERATION >= MAX_ITERATIONS)
      {
      INFO.print("max. number of iterations reached (exiting loop).");
      DONE = 1;// we reached max. (or no max_iter specified)
      }

    // ______ Only warn if last iteration has been done ______
    if (DONE == 1)
      {
      // ___ use trace buffer to store string, remember to rewind it ___
      if (overallmodeltestL > 10)
        {
        WARNING << "ms_timing_error: overallmodeltest Lines = " << overallmodeltestL << ends;
        WARNING.print();
        WARNING << " is larger than 10. (Suggest model or a priori sigma not correct.)";
        WARNING.print();
        }
      // ___ use trace buffer to store string, remember to rewind it ___
      if (overallmodeltestP > 10)
        {
        WARNING << "ms_timing_error: overallmodeltest Pixels = " << overallmodeltestP;
        WARNING.print();
        WARNING << " is larger than 10.\n(suggests a priori sigma not correct.)";
        WARNING.print();
        }

      }// Only warn when done iterating.
    ITERATION++;// update counter here!
    }// iterations remove outliers


  // Calculate master-slave timing errors
  int32 ms_az_timing_error_L = coarse_orbit_offsetL-int32(rint(rhsL(0,0)));
  int32 ms_r_timing_error_P = coarse_orbit_offsetP-int32(rint(rhsP(0,0)));

  real8 ms_az_timing_error = real8(ms_az_timing_error_L)/master.prf;
  real8 ms_r_timing_error = real8(ms_r_timing_error_P)/master.rsr2x;

  INFO << "Orbit azimuth offset (master-slave): " << coarse_orbit_offsetL << " lines.";
  INFO.print();
  INFO << "Orbit range offset (master-slave): " << coarse_orbit_offsetP << " pixels.";
  INFO.print();
  INFO << "Estimated azimuth offset (master-slave): " << rhsL(0,0) << " lines.";
  INFO.print();
  INFO << "Estimated range offset (master-slave): " << rhsP(0,0) << " pixels.";
  INFO.print();

  INFO << "Estimated azimuth timing error (master-slave): " << ms_az_timing_error_L << " lines.";
  INFO.print();
  INFO << "Estimated range timing error (master-slave): " << ms_r_timing_error_P << " pixels.";
  INFO.print();

  INFO << "Estimated azimuth timing error (master-slave) [sec]: " << ms_az_timing_error << " sec.";
  INFO.print();
  INFO << "Estimated range timing error (master-slave) [sec]: " << ms_r_timing_error << " sec.";
  INFO.print();


  // ______ Write to tmp files ______
  ofstream scratchlogfile("scratchlogtiming", ios::out | ios::trunc);
  bk_assert(scratchlogfile,"timing: scratchlogtiming",__FILE__,__LINE__);
  scratchlogfile << "\n\n*******************************************************************"
                 << "\n* RELATIVE_TIMING_ERROR"
                 << "\n*******************************************************************"
                 << "\nOrbit_azimuth_offset (master-slave):    \t" << coarse_orbit_offsetL << " lines."
                 << "\nOrbit_range_offset (master-slave):      \t" << coarse_orbit_offsetP << " pixels."
                 << "\nEstimated_azimuth_offset (master-slave): " << rhsL(0,0) << " lines."
                 << "\nEstimated_range_offset (master-slave): " << rhsP(0,0) << " pixels."
                 << "\nEstimated_azimuth_timing_error_lines (master-slave): " << ms_az_timing_error_L << " lines."
                 << "\nEstimated_range_timing_error_pixels (master-slave): " << ms_r_timing_error_P << " pixels."
                 << "\nEstimated_azimuth_timing_error_sec (master-slave): " << ms_az_timing_error << " sec."
                 << "\nEstimated_range_timing_error_sec (master-slave): " << ms_r_timing_error << " sec."
                 << "\n*******************************************************************\n";
  scratchlogfile.close();

  ofstream scratchresfile("scratchrestiming", ios::out | ios::trunc);
  bk_assert(scratchresfile,"timing: scratchrestiming",__FILE__,__LINE__);
  scratchresfile.setf(ios::right, ios::adjustfield);
  scratchresfile
    << "\n\n*******************************************************************"
    << "\n*_Start_" << processcontrol[pr_i_timing]
    << "\n*******************************************************************"
    << "\nOrbit_azimuth_offset (master-slave):    \t" << coarse_orbit_offsetL << " lines."
    << "\nOrbit_range_offset (master-slave):      \t" << coarse_orbit_offsetP << " pixels."
    << "\nEstimated_azimuth_offset (master-slave): " << rhsL(0,0) << " lines."
    << "\nEstimated_range_offset (master-slave): " << rhsP(0,0) << " pixels."
    << "\nEstimated_azimuth_timing_error_lines (master-slave): " << ms_az_timing_error_L << " lines."
    << "\nEstimated_range_timing_error_pixels (master-slave): " << ms_r_timing_error_P << " pixels."
    << "\nEstimated_azimuth_timing_error_sec (master-slave): " << ms_az_timing_error << " sec."
    << "\nEstimated_range_timing_error_sec (master-slave): " << ms_r_timing_error << " sec."
    << "\n*******************************************************************"
    << "\n* End_" << processcontrol[pr_i_timing] << "_NORMAL"
    << "\n*******************************************************************\n";


  // ====== Tidy up ======
  scratchresfile.close();
  PROGRESS.print("Finished computation of master-slave timing error.");

  } // END rel_timing_error