File: ChangeLog

package info (click to toggle)
source-extractor 2.25.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 8,004 kB
  • sloc: ansic: 39,413; sh: 1,063; makefile: 312; python: 26
file content (1387 lines) | stat: -rw-r--r-- 63,651 bytes parent folder | download | duplicates (2)
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
#
#				ChangeLog
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#
#	This file part of:	SExtractor
#
#	Copyright:		(C) 1997-2017 IAP/CNRS/UPMC
#
#	License:		GNU General Public License
#
#	SExtractor 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 3 of the License, or
# 	(at your option) any later version.
#	SExtractor 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 SExtractor. If not, see <http://www.gnu.org/licenses/>.
#
#	Last modified:		19/06/2017
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

------------------------------------------------------------------------
r381 | bertin | 2016-03-08 22:35:51 +0100 (Tue, 08 Mar 2016) | 2 lines

Added missing dgeo.c and dgeo.h files.

------------------------------------------------------------------------
r380 | bertin | 2016-03-08 18:02:20 +0100 (Tue, 08 Mar 2016) | 13 lines

Fixed PCi_j WCS keyword parsing issue (thanks to O.Fors for reporting this issue).
Fixed issue with magnitudes when used as PSF model parameters (thanks to A.Donnarumma for reporting this issue).
Added ID_PARENT catalog parameter to identify the common parent of deblended sources (thanks to R.McMahon for the suggestion).
Introduced regularization of Sersic model ellipticities based on AMALGAm prescriptions for the Great3 challenge (see Mandelbaum et al. 2015).
Fixed error in ecliptic coordinate computations (thanks to H.Bouy for reporting this issue).
Added support for differential geometry maps, with new DGEO_TYPE and DGEO_IMAGE configuration keywords and new DGEOX/Y_IMAGE and DGEOX/YWIN_IMAGE measurement parameters.
Added differential geometry map correction to model-fitting.
Added VIGNET_DGEOX and VIGNET_DGEOY differential geometry map cutouts in catalogs (for use in PSFEx).
Added support for PSF model dependencies in ASSOC vectors.
Fixed issue with single-line background meshes.
Fixed positional offsets of large galaxy models on MODELS and -MODELS check-images.
Pushed version number to 2.23.1.

------------------------------------------------------------------------
r332 | bertin | 2014-03-19 14:56:33 +0100 (Wed, 19 Mar 2014) | 3 lines

Refactored management of aspect ratios in model-fitting.
Pushed version number to 2.19.5.

------------------------------------------------------------------------
r323 | bertin | 2013-09-24 10:03:28 +0200 (Tue, 24 Sep 2013) | 4 lines

Fixed positional offsets of large galaxy models on MODELS and -MODELS check-ima\
ges.
Pushed version number to 2.19.4.

------------------------------------------------------------------------
r321 | bertin | 2013-09-12 14:44:12 +0200 (Thu, 12 Sep 2013) | 2 lines

Added missing reset of measurements parameters at each catalog initialization.

------------------------------------------------------------------------
r320 | bertin | 2013-09-12 14:09:40 +0200 (Thu, 12 Sep 2013) | 5 lines

Fixed regression with --disable-model-fitting option.
Fixed issue with model fitting measurement leftovers with masked sources (thank
s to E. Rykoff).
Pushed version number to 2.19.3.

------------------------------------------------------------------------
r319 | marmo | 2013-08-17 22:41:03 +0200 (Sat, 17 Aug 2013) | 2 lines

Solved issue with --disable-model-fitting configuration option. Pushed version number to 2.19.2

------------------------------------------------------------------------
r314 | bertin | 2013-07-17 17:00:34 +0200 (Wed, 17 Jul 2013) | 2 lines

Fixed obsolete SExtractor measurement parameters in "make check" tests.

------------------------------------------------------------------------
r313 | bertin | 2013-07-17 16:40:17 +0200 (Wed, 17 Jul 2013) | 3 lines

Fixed compilation issue with finitef() function in profit.c on OSX 10.8.
Pushed version number to 2.19.1.

------------------------------------------------------------------------
r312 | bertin | 2013-07-05 15:52:54 +0200 (Fri, 05 Jul 2013) | 10 lines

Fixed issue with MINIBACKGROUND	and MINIBACK_RMS multi-extension check-images.
Added new measurement parameters:
FLUXRATIO_POINTSOURCE :    Point-source flux-to-total ratio from fitting,
FLUXRATIOERR_POINTSOURCE : Uncertainty on point-source flux-to-total ratio,
FLUXRATIO_SPHEROID :       Spheroid flux-to-total ratio from fitting,
FLUXRATIOERR_SPHEROID :    Uncertainty on spheroid flux-to-total ratio,
FLUXRATIO_DISK :           Disk flux-to-total ratio from fitting, and
FLUXRATIOERR_DISK :        Uncertainty on disk flux-to-total ratio.
Pushed version number to 2.19.0

------------------------------------------------------------------------
r311 | bertin | 2013-06-18 12:35:54 +0200 (Tue, 18 Jun 2013) | 2 lines

Fixed uninitialized 2nd BACK_VALUE in double image + BACK_TYPE MANUAL modes.

------------------------------------------------------------------------
r310 | bertin | 2013-06-06 17:06:51 +0200 (Thu, 06 Jun 2013) | 3 lines

Fixed missing image name in sex.xml VOTable output in double image mode when input filenames are separated by a comma instead of a space.
Pushed version number to 2.18.12

------------------------------------------------------------------------
r309 | bertin | 2013-04-27 15:35:48 +0200 (Sat, 27 Apr 2013) | 8 lines

Fixed issue with ASSOC_TYPE NEAREST (Thanks to V. de Lapparent).
Fixed regression with Eli Rykoff's fixes.
Fixed issue with FFTW includes.
Fixed typos in VOTable output.
Added translation of Boolean T and F to Y and N in XSLT.
Added --with-mkl-dir option in configure.
Pushed version number to 2.18.11.

------------------------------------------------------------------------
r307 | bertin | 2013-04-05 10:23:35 +0200 (Fri, 05 Apr 2013) | 3 lines

Added proper correction of model subsampling to SPHEROIDS and DISKS check-images.
Pushed version number to 2.18.9.

------------------------------------------------------------------------
r306 | bertin | 2013-04-04 17:54:11 +0200 (Thu, 04 Apr 2013) | 2 lines

Fixed typo in acx_mkl (no consequence here).

------------------------------------------------------------------------
r305 | bertin | 2013-04-04 00:04:38 +0200 (Thu, 04 Apr 2013) | 11 lines

Added support for Gaussian priors on (transformed) model parameters (deactivated).
Fixed model sub-sampling issues with large objects, including check-image resizing.
Fixed initialization of DETMODEL size guess (thanks to Eli Rykoff).
Fixed image extension pb in double weighting/single image mode.
Improved debug info for memory allocations in FFT and FITS libraries.
Fixed crashes with DETMODEL magnitudes on null measurement weight maps.
Added Eli Rykoff's fix to discard sources with NaNs in the fitted positions.
Improved MKL autoconfiguration.
Improved vectorization in FITS data transformations and FFT-based convolutions.
Pushed SExtractor version number to 3.18.8.

------------------------------------------------------------------------
r302 | bertin | 2012-09-23 18:27:09 +0200 (Sun, 23 Sep 2012) | 4 lines

Fixed issue with the position, positional uncertainties and flux of (large) sub-sampled models.
Fixed padding issue for binary FITS catalogs >2GB.
Pushed version number to 2.18.4.

------------------------------------------------------------------------
r300 | bertin | 2012-07-19 18:21:32 +0200 (Thu, 19 Jul 2012) | 4 lines

Added support for CORE-AVX2 and CORE-AVC-I optimized code when using INTEL compiler.
Added better control of the number of threads used in MKL library calls (when used).
Pushed version number to 2.18.3.

------------------------------------------------------------------------
r298 | bertin | 2012-07-17 22:20:15 +0200 (Tue, 17 Jul 2012) | 3 lines

Fixed issue with --with-fftw-libdir configure option (thanks to John P. Marriner).
Fixed minor issue with the reading of TNX and TPV WCS coefficients.

------------------------------------------------------------------------
r297 | bertin | 2012-07-12 18:05:39 +0200 (Thu, 12 Jul 2012) | 5 lines

Fixed regression with FITS image extension numbering.
Fixed issues with PSF image extension numbering.
Fixed crashes when calling FFT routines with the MKL library.
Pushed version number to 2.18.2.

------------------------------------------------------------------------
r296 | bertin | 2012-07-12 11:31:00 +0200 (Thu, 12 Jul 2012) | 3 lines

Replaced --enable-gprof configuration with --enable-profiling.
Switched on --enable-mkl for make rpm-best.

------------------------------------------------------------------------
r295 | bertin | 2012-07-11 18:51:29 +0200 (Wed, 11 Jul 2012) | 5 lines

Fixed obsolete autoconf macros in configure.ac
Added control of the number of threads in MKL calls.
Added support for negative NTHREADS (= max number of threads).
Pushed version number to 2.18.1.

------------------------------------------------------------------------
r294 | bertin | 2012-07-10 00:02:36 +0200 (Tue, 10 Jul 2012) | 4 lines

Added support for the INTEL MKL library in place of ATLAS and FFTW (configure --enable-mkl option).
Updated LevMar library to V2.6.
Pushed version number to 2.18.0.

------------------------------------------------------------------------
r293 | bertin | 2012-07-09 10:53:30 +0200 (Mon, 09 Jul 2012) | 5 lines

Updated WCS library: fixed issue with TPV CTYPEs and added support for MJDSTART header keyword.
Updated FITS library to the latest version, removing potential conflicts with the CFITSIO library.
Added PSF/model-fitting support for MEFs.
Pushed version number to 2.17.0

------------------------------------------------------------------------
r292 | bertin | 2012-06-06 22:01:59 +0200 (Wed, 06 Jun 2012) | 2 lines

Fixed Inf in some instances of SPREADERR_MODEL.

------------------------------------------------------------------------
r291 | bertin | 2012-06-03 21:43:35 +0200 (Sun, 03 Jun 2012) | 3 lines

Fixed obsolete behaviour with 8 bit images (would suppose 8 bit integers  are signed by default).
Pushed version number to 2.16.3.

------------------------------------------------------------------------
r290 | bertin | 2012-06-01 21:08:09 +0200 (Fri, 01 Jun 2012) | 4 lines

Fixed sporadic occurences of NaN in SPREADERR_MODEL and ERRBMODEL_IMAGE.
Updated WCS library to the latest version.
Pushed version number to 2.16.2.

------------------------------------------------------------------------
r284 | bertin | 2012-04-18 13:57:02 +0200 (Wed, 18 Apr 2012) | 12 lines

Fixed potential issues in ASSOCCOORD_TYPE WORLD mode.
Fixed triggering of model surface brightness measurement.
Added new FLUX_DETMODEL,FLUXERR_DETMODEL, MAG_DETMODEL,MAGERR_DETMODEL, FLAGS_DE
TMODEL and CHI2_DETMODEL measurement parameters that apply on the measurement im
age a model fitted on the detection image (two PSF models required); these new p
arameters are meant for measuring faint galaxy colors.
Improved displayed info for memory allocation failures.
Increased default maximum number of threads set by configure to 1024.
Updated Copyright display line (2012).
Added support for "TPV" WCS projection.
Pushed version number to 2.16.0.

------------------------------------------------------------------------
r271 | bertin | 2011-10-08 22:31:03 +0200 (Sat, 08 Oct 2011) | 2 lines

Fixed large memory leak in model-fitting.

------------------------------------------------------------------------
r265 | bertin | 2011-09-06 19:08:22 +0200 (Tue, 06 Sep 2011) | 2 lines

Fixed triggering of model surface brightness measurement.

------------------------------------------------------------------------
r264 | bertin | 2011-09-06 17:46:57 +0200 (Tue, 06 Sep 2011) | 5 lines

Fixed scaling issue with surface brightness measurements on galaxy models (thanks to V. de Lapparent).
Optimized the setup of astrometric polynoms.
Removed confusing FITS header keywords from non-MEF check-images.
Pushed version number to 2.14.7.

------------------------------------------------------------------------
r263 | bertin | 2011-08-22 15:11:43 +0200 (Mon, 22 Aug 2011) | 3 lines

Removed (dummy) WCS information from FITS_1.0 catalog primary header (thanks to H.J. McCracken for reporting).
Pushed version number to 2.14.5

------------------------------------------------------------------------
r262 | bertin | 2011-08-05 16:14:18 +0200 (Fri, 05 Aug 2011) | 2 lines

Added missing README in src/wcs/ subdirectory.

------------------------------------------------------------------------
r261 | bertin | 2011-08-05 16:13:20 +0200 (Fri, 05 Aug 2011) | 2 lines

Added forgotten LICENSE file in main directory.

------------------------------------------------------------------------
r257 | bertin | 2011-07-25 11:49:12 +0200 (Mon, 25 Jul 2011) | 2 lines

Replaced a third missing F in HAVE_SINCOSF!

------------------------------------------------------------------------
r256 | bertin | 2011-07-25 10:43:22 +0200 (Mon, 25 Jul 2011) | 2 lines

Replaced a second missing F in HAVE_SINCOSF.

------------------------------------------------------------------------
r255 | bertin | 2011-07-25 10:23:25 +0200 (Mon, 25 Jul 2011) | 2 lines

Had forgotten the final F in HAVE_SINCOSF in add_prof().

------------------------------------------------------------------------
r254 | bertin | 2011-07-25 10:20:17 +0200 (Mon, 25 Jul 2011) | 5 lines

Fixed missing test for sincosf() that prevented the code to compile on MacOS (thanks to C.Aspin).
Added support for RADESYS WCS keyword (non-standard RADECSYS still supported).
Fixed display precision issues with SPREAD_MODEL.
Pushed version number to 2.14.4.

------------------------------------------------------------------------
r250 | bertin | 2011-07-01 15:49:04 +0200 (Fri, 01 Jul 2011) | 4 lines

Fixed issue with FWHMPSF_WORLD.
Added support for AVX extensions with INTEL compiler v12.
Version number pushed to 2.14.2.

------------------------------------------------------------------------
r246 | bertin | 2011-05-31 22:07:38 +0200 (Tue, 31 May 2011) | 4 lines

Fixed regression involving SPREAD_MODEL and SPREADERR_MODEL (Thanks Shantanu for reporting).
Added Rescale_Weights PARAM in XML output.
Pushed version number to 2.14.1

------------------------------------------------------------------------
r244 | bertin | 2011-05-06 15:45:20 +0200 (Fri, 06 May 2011) | 8 lines

Fixed FLUX_HYBRID and MAG_HYBRID centering issues.
Added 2nd order moments measurements of the convolved model.
Fixed issues introduced in a recent updates with check-images.
Implemented new algorithms for SPREAD_MODEL and SPREADERR_MODEL (no optimization yet and the scaling is still variable however).
Added experimental SNR_WIN measurement parameter.
Fixed crash with empty ASSOC lists.
Pushed version number to 2.13.6.

------------------------------------------------------------------------
r243 | bertin | 2011-03-13 17:52:46 +0100 (Sun, 13 Mar 2011) | 3 lines

Added one extra decimal to position measurements in pixel coordinates.
Preliminary implementation of a RESCALE_WEIGHTS configuration switch.

------------------------------------------------------------------------
r242 | bertin | 2011-01-26 11:34:58 +0100 (Wed, 26 Jan 2011) | 2 lines

Added missing .vcproj distribution files in LevMar library directory.

------------------------------------------------------------------------
r241 | bertin | 2011-01-25 01:16:47 +0100 (Tue, 25 Jan 2011) | 4 lines

Added new ASSOCCOORD_TYPE configuration parameter for ASSOCiating detections either in PIXEL or WORLD coordinates.
Fixed sampling issues for Sersic, de Vaucouleurs and exponential model-fitting.
Version number pushed to 2.13.2.

------------------------------------------------------------------------
r239 | bertin | 2010-12-02 18:58:35 +0100 (Thu, 02 Dec 2010) | 2 lines

Fixed issue with output Check-image headers when reading individual extensions from MEFs (thanks to user Lantern for the bug report).

------------------------------------------------------------------------
r236 | bertin | 2010-11-11 15:55:08 +0100 (Thu, 11 Nov 2010) | 4 lines

Fixed issue with zero-sized columns in FITS binary tables,
Removed unused variables in poly.c.
Fixed issue with invalid comment in XSL stylesheet.

------------------------------------------------------------------------
r235 | bertin | 2010-10-25 22:50:17 +0200 (Mon, 25 Oct 2010) | 2 lines

Added FLUXHYBRID_,MAG_HYBRID

------------------------------------------------------------------------
r234 | bertin | 2010-10-14 16:06:58 +0200 (Thu, 14 Oct 2010) | 3 lines

Fixed issue with duplicated sources when PSF_NMAX is >1.
Pushed version number to 2.13.1.

------------------------------------------------------------------------
r233 | bertin | 2010-10-11 18:14:04 +0200 (Mon, 11 Oct 2010) | 11 lines

Moved the whole package back to GPL.
Added more complete headers to all files.
Clarified licensing issues.
Updated FITS library.
Updated configuration files.
Added configuration files to the list of data that get installed in ${prefix}/share/sextractor.
Added background offset and point-source model components: FLUX_BACKOFFSET,FLUXERR_BACKOFFSET,FLUX_POINTSOURCE,FLUXERR_POINTSOURCE,MAG_POINTSOURCE,MAGERR_POINTSOURCE.
Tweaked model-fitting convergence parameters.
Fixed catalogue source ordering/number issue in dual-image mode.
Pushed version number to 2.13.0.

------------------------------------------------------------------------
r231 | bertin | 2010-09-29 17:11:15 +0200 (Wed, 29 Sep 2010) | 3 lines

Fixed issue with adaptive CLASS_STAR in dual image mode (thanks to N.Sevilla).
Pushed version number to 2.12.3.

------------------------------------------------------------------------
r230 | bertin | 2010-09-22 17:54:49 +0200 (Wed, 22 Sep 2010) | 2 lines

Allowed SEEING_FWHM to be 0 if no PSF is available and CLASS_STAR is not in the
parameter list.

------------------------------------------------------------------------
r229 | bertin | 2010-09-13 11:05:21 +0200 (Mon, 13 Sep 2010) | 6 lines

Removed singular matrix warnings in LevMar solver calls.
Changed the management of tolerances in Hessian inversion SVD.
Pushed Lanczos interpolator to 4th order in PSF and model-fitting.
Normalized the interpolating function so that the DC component gain is 1.
Pushed version number 2.12.2.

------------------------------------------------------------------------
r228 | bertin | 2010-08-26 16:30:26 +0200 (Thu, 26 Aug 2010) | 5 lines

Fixed model-fitting issue with empty images in dual-image mode (thanks to
V. de Lapparent for reporting).
Updated LevMar to version 2.5.
Updated URLs in various places.
Pushed version number to 2.12.1.

------------------------------------------------------------------------
r227 | bertin | 2010-08-23 15:17:00 +0200 (Mon, 23 Aug 2010) | 3 lines

Added --disable-model-fitting configure option to turn-off model-fitting
features and to allow compiling SExtractor without requiring the ATLAS and
FFTW libraries.
Version number pushed to 2.12.0.

------------------------------------------------------------------------
r226 | bertin | 2010-08-20 18:32:32 +0200 (Fri, 20 Aug 2010) | 2 lines

Added  POLAR1ERRMODEL_WORLD,POLAR2ERRMODEL_WORLD,POLARCORRMODEL_WORLD,
ELLIP1ERRMODEL_WORLD,ELLIP2ERRMODEL_WORLD and ELLIPCORRMODEL_WORLD measurement
parameters.

------------------------------------------------------------------------
r225 | bertin | 2010-08-08 19:34:14 +0200 (Sun, 08 Aug 2010) | 9 lines

Fixed detection threshold missing in XML metadata output.
Fixed TFORM error message in fitshead.c (thanks to S.Guieu).
Fixed model-fitting error variance/covariance issue (bug in matrix inversion).
Added ELLIP1ERRMODEL_IMAGE, ELLIP2ERRMODEL_IMAGE, ELLIPCORRMODEL_IMAGE,
POLAR1ERRMODEL_IMAGE, POLAR2ERRMODEL_IMAGE, POLARCORRMODEL_IMAGE (more testing
is needed and WORLD versions are not yet functional).
Narrowed the tolerance constraint for stopping windowed centering iterations.
Fixed incorrect reading of the DATE-OBS FITS keyword when EPOCH and MJD-OBS are missing.
Pushed version number to 2.11.11.

------------------------------------------------------------------------
r224 | bertin | 2010-07-16 11:05:40 +0200 (Fri, 16 Jul 2010) | 5 lines

Fixed WINdowed position error estimates that were underestimated by a factor 2
(thanks to G.Bernstein).
Fixed FLUXERR_WIN triggering issue.
Optimized WIN parameter computations.
Pushed version number to 2.11.8.

------------------------------------------------------------------------
r221 | bertin | 2010-07-09 16:41:51 +0200 (Fri, 09 Jul 2010) | 20 lines

Added VOTABLE "version" attribute to XML output.
Reverted minimization algorithm back to double precision (while keeping single
precision for data and parameters in "bounded" space).
Added specific handling of "Jacobian calls" in model-fitting.
Sped up the resampling process in model-fitting.
Tuned up minimization algorithm in model-fitting.
Added shortcuts to the computation of the local PSF model. 
Fixed triggering issues with some model-fitting parameters (thanks to
S.Serrano).
Removed CLASS_STAR_MODEL and DISK_PATTERN* measurement parameters.
Added automatic tracking of the PSF FWHM from the local PSF model if
SEEING_FWHM is 0 for CLASS_STAR.
Fixed excessive WIN parameter computation time on large ring-shaped objects.
Fixed model-fitting issue with null half-light radii (thanks to S.Desai and
B.Armstrong).
Fixed aperture display value error in FITS-LDAC catalogue header.
Removed redundant update_tab() calls in FITS library.
Fixed comment copy issue for slashes within strings in FITS library (thanks to
F.Schuller).
Added check of PSF values; SExtractor will now exit in error in the case where
all PSF components sum up to 0.
Replaced computation of model second moments and ellipticities with analytical
estimates.
Improved the accuracy of peak and average model surface brightness estimates.
Fixed some compiler warnings.
Pushed version number to 2.11.7.

------------------------------------------------------------------------
r220 | bertin | 2010-02-05 14:17:20 +0100 (Fri, 05 Feb 2010) | 5 lines

Added reading of .head ASCII headers (suggestion from M.Monnerville and
P.Hudelot).
Improved real-time display.
Fixed various issues with XSLT in double image mode.
Pushed version number to 2.11.0.

------------------------------------------------------------------------
r219 | bertin | 2010-01-21 14:38:14 +0100 (Thu, 21 Jan 2010) | 3 lines

Added the DETECT_MAXAREA (advanced) configuration keyword (as suggested by
V.Terron).
Improved processing time display.

------------------------------------------------------------------------
r218 | bertin | 2009-12-16 01:02:21 +0100 (Wed, 16 Dec 2009) | 9 lines

Fixed world coordinates in PSF-fitting.
Fixed error ellipse measurements in PSF-fitting (but works only for PSF_NMAX=1
currently).
Simplified PSF parameter handling (removed PSFDISPLAY_TYPE configuration
option).
Simplified triggering of local north axis computation.
Allowed model axis ratios to exceed 1 to facilitate convergence.
Fixed alignment bug for symmetric models.
Restricted maximum allowed range for model coordinates.
Pushed version number to 2.10.0.

------------------------------------------------------------------------
r217 | bertin | 2009-12-01 14:46:19 +0100 (Tue, 01 Dec 2009) | 3 lines

Set XMODEL_IMAGE and YMODEL_IMAGE data types back to double precision (thanks
to S.Desai).
Fixed various compilation warnings.

------------------------------------------------------------------------
r216 | bertin | 2009-11-18 17:45:26 +0100 (Wed, 18 Nov 2009) | 4 lines

Fixed issue with FFTW configure for custom library paths.
Fixed compilation warnings in pattern.c and lm.h.
Pushed version number to 2.9.9.

------------------------------------------------------------------------
r215 | bertin | 2009-11-02 17:25:36 +0100 (Mon, 02 Nov 2009) | 3 lines

Fixed typos introduced in the 2.4 LevMar custom update.
Added support for 64 bit binary table elements in FITS library (thanks to J.P.
McFarland).

------------------------------------------------------------------------
r214 | bertin | 2009-10-22 21:36:54 +0200 (Thu, 22 Oct 2009) | 4 lines

Fixed issue with SVD on some objects.
Updated the LevMar library to V2.4.
Pushed version number to 2.9.7.

------------------------------------------------------------------------
r213 | bertin | 2009-10-19 17:10:20 +0200 (Mon, 19 Oct 2009) | 4 lines

Fixed MODELS check-image.
Fixed X/YMODEL_WORLD issue.
Increased CLEANing margin for model-fitting.

------------------------------------------------------------------------
r212 | bertin | 2009-10-09 18:21:18 +0200 (Fri, 09 Oct 2009) | 5 lines

Improved the quality of model resampling for subsampled objects.
Implemented a more consistent model size and flux scaling scheme for subsampled
objects.
Fixed Sersic model generation bug.
Pushed version number to 2.9.6.

------------------------------------------------------------------------
r211 | bertin | 2009-10-08 23:34:46 +0200 (Thu, 08 Oct 2009) | 6 lines

Added automatic image rebinning for fitting very large objects (>512 pixels).
Fixed several issues related to image and weight copy prior to fitting.
Fixed bug with symmetric models.
Fixed issue with new FFT planning scheme.
Pushed version number to 2.9.5.

------------------------------------------------------------------------
r210 | bertin | 2009-10-01 17:54:49 +0200 (Thu, 01 Oct 2009) | 4 lines

Added new NLOWWEIGHT_ISO and NLOWDWEIGHT_ISO parameters that count the number
of bad pixels within the measured isophotal footprint, and within one pixel of
the detected isophotal footprint, respectively.
FLAGS_WEIGHT is now working without crashing.
Pushed version number to 2.9.3.

------------------------------------------------------------------------
r209 | bertin | 2009-09-29 18:54:34 +0200 (Tue, 29 Sep 2009) | 6 lines

Fixed BITPIX display info.
Changed CONCENTRATION_MODEL to SPREAD_MODEL.
Added SPREADERR_MODEL measurement (currently a crude estimate).
Optimized FFT calls.
Set PSF_NMAX to 2 by default.

------------------------------------------------------------------------
r208 | bertin | 2009-09-24 14:38:44 +0200 (Thu, 24 Sep 2009) | 5 lines

Fixed CONCENTRATION_MODEL issue.
Removed singular matrix warning.
Added MATRIX_MODELERR measurement parameters.
Added DURATION_ANALYSIS measurement parameter.

------------------------------------------------------------------------
r207 | bertin | 2009-09-21 14:27:28 +0200 (Mon, 21 Sep 2009) | 6 lines

Added FLUX_MAX_MODEL, FLUX_EFF_MODEL, FLUX_MEAN_MODEL, MU_MAX_MODEL,
MU_EFF_MODEL and MU_MEAN_MODEL parameters (FLUX_MAX_MODEL estimator still
somewhat inacurrate).
Added FLUX_MAX_SPHEROID, FLUX_EFF_SPHEROID, FLUX_MEAN_SPHEROID, MU_MAX_SPHEROID,
MU_EFF_SPHEROID, MU_MEAN_SPHEROID parameters.
Added FLUX_MAX_DISK, FLUX_EFF_DISK, FLUX_MEAN_DISK, MU_MAX_DISK, MU_EFF_DISK
and MU_MEAN_DISK parameters.
Changed the way total model fluxes and model moments are computed.
Pushed version number to 2.9.2.

------------------------------------------------------------------------
r206 | bertin | 2009-09-14 00:24:01 +0200 (Mon, 14 Sep 2009) | 10 lines

Changed ExMODEL parameters to ELLIPx_MODEL.
Changed EPSxMODEL parameters to POLARx_MODEL.
Added AMODEL, BMODEL, THETAMODEL for both _IMAGE and _WORLD coordinates.
Added CXXMODEL CYYMODEL, CXYMODEL for both _IMAGE and _WORLD coordinates.
AddedTHETAMODEL_SKY,THETAMODEL_J2000,THETAMODEL_B1950.
Added ELLIPxMODEL_WORLD and POLARxMODEL_WORLD.
Fixed broken PSF-fitting.
Fixed warnings while generating the configure (thanks to S.Pascual).
Pushed version number to 2.9.1.

------------------------------------------------------------------------
r205 | bertin | 2009-09-10 19:28:28 +0200 (Thu, 10 Sep 2009) | 2 lines

Put back missing item in configure file.

------------------------------------------------------------------------
r204 | bertin | 2009-09-09 17:49:41 +0200 (Wed, 09 Sep 2009) | 2 lines

Cleaned up configure file.

------------------------------------------------------------------------
r203 | bertin | 2009-09-09 11:47:17 +0200 (Wed, 09 Sep 2009) | 2 lines

Added new rpm-best option in Makefile.am.

------------------------------------------------------------------------
r202 | bertin | 2009-09-08 22:11:04 +0200 (Tue, 08 Sep 2009) | 3 lines

Changed the --enable-automatic-flags configure option to --enable-auto-flags.
Added --enable-best-link configure option.

------------------------------------------------------------------------
r201 | bertin | 2009-09-08 18:58:59 +0200 (Tue, 08 Sep 2009) | 4 lines

Switched to single precision for model fitting.
Changed configure behaviour towards CFLAGS and LDFLAGS: automatic settings are
now applied only if the --enable-automatic-flags configure option is set
(thanks to S.Pascual).
Version number pushed to 2.9.0.

------------------------------------------------------------------------
r200 | bertin | 2009-08-27 23:25:14 +0200 (Thu, 27 Aug 2009) | 5 lines

Removed redundant code in astrom_pos().
Fixed random crashes with model fitting (thanks to S.Desai).
Fixed gain problem in PSF fitting.
Pushed version number to 2.8.9.

------------------------------------------------------------------------
r199 | bertin | 2009-07-20 21:41:29 +0200 (Mon, 20 Jul 2009) | 3 lines

Added FOCAL coordinates for centering parameters.
Re-organized astrometric calls.

------------------------------------------------------------------------
r198 | bertin | 2009-06-26 17:41:48 +0200 (Fri, 26 Jun 2009) | 2 lines

Fixed incorrect FFTW type in multithread check.

------------------------------------------------------------------------
r197 | bertin | 2009-06-26 17:13:08 +0200 (Fri, 26 Jun 2009) | 6 lines

Made parallel version of ATLAS not mandatory for the multithread option (unused).
Replaced configuration error with warning if FFTW is not multithreaded and
multithreading has been activated (unused).
Added autoconfig support for FFTW multithreaded versions combined in libfftw3
(unused).
Added runtime warning if ATLAS is not multithreaded and multithreading is on
(unused).
Version number pushed to 2.8.8.

------------------------------------------------------------------------
r196 | bertin | 2009-05-29 21:17:33 +0200 (Fri, 29 May 2009) | 2 lines

Further refinements on display.

------------------------------------------------------------------------
r195 | bertin | 2009-05-29 18:35:54 +0200 (Fri, 29 May 2009) | 2 lines

Improved online display.

------------------------------------------------------------------------
r194 | bertin | 2009-05-29 18:21:25 +0200 (Fri, 29 May 2009) | 6 lines

Removed multithreading in FFTs (would degrade performance).
Added computation of FLUXERR_MODEL and MAGERR_MODEL.
Fixed a numerical bug in E1MODEL_IMAGE and E2MODEL_IMAGE.
Improved onscreen display.
Pushed version number to 2.8.7

------------------------------------------------------------------------
r193 | bertin | 2009-05-22 14:26:11 +0200 (Fri, 22 May 2009) | 2 lines

Included Chiara's MissFITS fix in fitspick().

------------------------------------------------------------------------
r192 | bertin | 2009-05-22 14:14:26 +0200 (Fri, 22 May 2009) | 3 lines

Added filtering of non-numerical characters for floating-point FITS keywords
(thanks to D.G. Bonfield for the suggestion).

------------------------------------------------------------------------
r191 | bertin | 2009-05-19 17:40:54 +0200 (Tue, 19 May 2009) | 2 lines

Increased field format size from %15.10e to %18.10e and from %5.1f to %6.2f.

------------------------------------------------------------------------
r190 | bertin | 2009-05-07 11:18:57 +0200 (Thu, 07 May 2009) | 2 lines

Removed forgotten debug printout.

------------------------------------------------------------------------
r189 | bertin | 2009-04-28 19:40:43 +0200 (Tue, 28 Apr 2009) | 2 lines

Fixed bug in make_kernel() test bug (thanks to R.Owen).

------------------------------------------------------------------------
r187 | bertin | 2009-04-09 15:31:57 +0200 (Thu, 09 Apr 2009) | 2 lines

Forgot to regenerate configure file.

------------------------------------------------------------------------
r186 | bertin | 2009-04-09 15:29:59 +0200 (Thu, 09 Apr 2009) | 3 lines

Removed obsolete measurement parameters.
Pushed version number to 2.8.6

------------------------------------------------------------------------
r185 | bertin | 2009-04-01 18:53:14 +0200 (Wed, 01 Apr 2009) | 2 lines

More junk cleaning.

------------------------------------------------------------------------
r184 | bertin | 2009-04-01 18:17:33 +0200 (Wed, 01 Apr 2009) | 4 lines

Fixed icc 11 compilations options on x86-64 architecture.
Cleaned up obsolete references.
Added favicon to XSLT filter.

------------------------------------------------------------------------
r183 | bertin | 2009-04-01 15:53:17 +0200 (Wed, 01 Apr 2009) | 2 lines

Added another refinement to the XSLT filter.

------------------------------------------------------------------------
r182 | bertin | 2009-04-01 13:11:33 +0200 (Wed, 01 Apr 2009) | 2 lines

Updated XSLT filter (AstrOmatic theme).

------------------------------------------------------------------------
r181 | bertin | 2009-03-23 19:21:58 +0100 (Mon, 23 Mar 2009) | 8 lines

Removed unstable and buggy measurements from parameter list.
Cleaned up Makefile.am RPM options.
Fixed rpm build issue on Fedora Core 10.
Fixed display of max thread number in configure help.
Updated icc compilation flags to 11.0 syntax.
Set the license string to CeCILL in the .spec file.
Pushed version number to 2.8.5.

------------------------------------------------------------------------
r180 | bertin | 2009-03-20 14:11:44 +0100 (Fri, 20 Mar 2009) | 3 lines

Put back model chi2 normalisation.
Made handling of dynamic compression and chi2 computations more flexible.

------------------------------------------------------------------------
r179 | bertin | 2009-03-18 15:43:36 +0100 (Wed, 18 Mar 2009) | 3 lines

Added CONCENTRATION_MODEL and finalized CLASS_ST parameters.
Version number pushed to 2.8.4.

------------------------------------------------------------------------
r178 | bertin | 2009-03-10 14:05:07 +0100 (Tue, 10 Mar 2009) | 1 line

Set mime-type property of SExtractor doc to application/pdf
------------------------------------------------------------------------
r177 | bertin | 2009-02-20 19:06:45 +0100 (Fri, 20 Feb 2009) | 4 lines

Fixed bug which would cause the mapping to depend on the ordering of PVs.
Changed software license to CeCILL (French equivalent of GPL).
Pushed version number to 2.8.3.

------------------------------------------------------------------------
r176 | bertin | 2009-01-29 19:34:29 +0100 (Thu, 29 Jan 2009) | 1 line

Fixed crash with model fitting on small objects
------------------------------------------------------------------------
r175 | bertin | 2009-01-28 22:52:45 +0100 (Wed, 28 Jan 2009) | 1 line

Nothing
------------------------------------------------------------------------
r173 | bertin | 2009-01-28 18:37:46 +0100 (Wed, 28 Jan 2009) | 1 line

merged with SExFIGI branch
------------------------------------------------------------------------
r39 | bertin | 2009-01-28 17:05:55 +0100 (Wed, 28 Jan 2009) | 1 line

Moved software to trunk
------------------------------------------------------------------------
r22 | bertin | 2006-10-29 21:04:25 +0100 (Sun, 29 Oct 2006) | 5 lines

Updated FITS library to the latest version.
Fixed some UCDs in output parameters.
Applied patch by Sergio Pascual for configuring the path to the XSL file.
Updated the BUGS section.

------------------------------------------------------------------------
r21 | bertin | 2006-08-16 18:06:49 +0200 (Wed, 16 Aug 2006) | 2 lines

Discard NaN pixels in non-weighted background measurements (as in SWarp).

------------------------------------------------------------------------
r20 | baillard | 2006-07-18 13:54:43 +0200 (Tue, 18 Jul 2006) | 2 lines

Move sextractor to public repository

------------------------------------------------------------------------
r19 | bertin | 2006-07-17 19:56:12 +0200 (Mon, 17 Jul 2006) | 4 lines

Doc: keyword list updated.
ChangeLog updated.
Back-propagated destructive byte-swapping bugfix in FITS library.

------------------------------------------------------------------------
r18 | bertin | 2006-07-14 20:25:09 +0200 (Fri, 14 Jul 2006) | 3 lines

Removed warnings in psf.c (P.Delorme's edits) using brute-force.
Switched ChangeLog to SVN format.

------------------------------------------------------------------------
r17 | bertin | 2006-07-14 20:13:39 +0200 (Fri, 14 Jul 2006) | 8 lines

Yet another rewriting of the XML part. Meta-data, error messages and catalog
info are now consistant between the catalog and the XML metadata file. Still
some pb with the COOSYS epoch and system in the VOTable version of the catalog
(but correct in the XML metadata file).
CATALOG_TYPE ASCII_VO changed to ASCII_VOTABLE.
Added a check in error catching to prevent recursive loops.
Added reinit of the warning counter to allow multiple uses of the warning
history.
Cleaned up configure.ac and added a default path for the (still missing) XSL
file.
Updated config/default.sex, BUGS HISTORY and README files.
Ready for release of V2.5.

------------------------------------------------------------------------
r16 | bertin | 2006-07-13 22:06:48 +0200 (Thu, 13 Jul 2006) | 5 lines

XML VOTable approach changed again: support for error messaging in VO catalog
(not only metadata) and FITS serialization of LDAC files in XML output.
COOSYS tag added with relevant information.
Removed MAMA_CORFLEX advanced config parameter (replaced with define).
Version number pushed to 2.5.

------------------------------------------------------------------------
r15 | bertin | 2006-07-12 20:34:06 +0200 (Wed, 12 Jul 2006) | 4 lines

Improved XML VOTable (still waiting for F.Ochsenbein comments, though).
Added meta-data to VOTable catalog output.
Fixed potential bug with long command lines.

------------------------------------------------------------------------
r14 | bertin | 2006-07-11 23:04:18 +0200 (Tue, 11 Jul 2006) | 2 lines

Completed the conversion of XML output to the VOTable format.

------------------------------------------------------------------------
r13 | bertin | 2006-07-10 21:49:59 +0200 (Mon, 10 Jul 2006) | 6 lines

Added support for ICRS in header WCS.
Changed the way header WCS info is interpreted when EQUINOX is missing.
Added dump of command line in XML meta-data.
Pushed max number of recorded warnings to 100.
Changed XML meta-data output format to VOTable (not complete yet).

------------------------------------------------------------------------
r12 | bertin | 2006-07-09 19:57:00 +0200 (Sun, 09 Jul 2006) | 4 lines

Added support for warning history in the fits library.
Added duration to XML error output.
Added ten most recent warnings to XML output.

------------------------------------------------------------------------
r11 | bertin | 2006-07-07 20:30:30 +0200 (Fri, 07 Jul 2006) | 4 lines

Added catching of error messages and forwarding to XML.
Added ASCII_VO output catalog format (inspired by G.Tissier's VOTable patch)
Fixed issue with conflicting CDi_j/CDELTi parameters (report by J.F. Bonnarel).

------------------------------------------------------------------------
r10 | bertin | 2006-07-05 20:11:29 +0200 (Wed, 05 Jul 2006) | 2 lines

Added more configuration parameters to XML output.

------------------------------------------------------------------------
r9 | bertin | 2006-07-04 17:39:58 +0200 (Tue, 04 Jul 2006) | 3 lines

Fixed a bug with the reentrant version of strtok in TNX.
Added more XML info.

------------------------------------------------------------------------
r8 | bertin | 2006-07-03 21:31:15 +0200 (Mon, 03 Jul 2006) | 5 lines

Updated display to the leatest "Bertin standards".
Added comments to uncommonly used config parameters in default .sex.
Changed default output channel for info about extraction to stdout.
Added XML output.

------------------------------------------------------------------------
r7 | bertin | 2006-07-02 21:15:05 +0200 (Sun, 02 Jul 2006) | 5 lines

Updated WCS lib to the latest SCAMP version.
Added support for TNX distortions.
Added support for WCS with more than 2D (NAXIS=3 right now).
Added -g compilation flag for gcc.

------------------------------------------------------------------------
r6 | bertin | 2006-06-29 22:38:02 +0200 (Thu, 29 Jun 2006) | 7 lines

Self Organizing Map code revived!
The FITS body writing routine now complies with strict aliasing constraints,
but: Strict-aliasing optimization option dropped in acx_prog_cc_optim.m4
because of too many problems with gcc 4.1 (missing X_IMAGE output, etc.): too
much "fun" with pointers in the SExtractor code.
Local background estimates work again after many years of oblivion, thanks to
an increased top margin in the buffering mechanism (bug found by P.Astier).
Overwriting of displayed infos fixed.

------------------------------------------------------------------------
r5 | bertin | 2006-01-12 20:12:04 +0100 (Thu, 12 Jan 2006) | 2 lines

Preliminary merging with P.Delorme branch (improved PSF-fitting). 

------------------------------------------------------------------------
r4 | bertin | 2005-11-30 07:29:34 +0100 (Wed, 30 Nov 2005) | 3 lines

Added preliminary support for FLAGS_WEIGHT. Null weights above detections are
still missed.

------------------------------------------------------------------------
r3 | bertin | 2005-10-19 20:12:37 +0200 (Wed, 19 Oct 2005) | 1 line


------------------------------------------------------------------------
r2 | bertin | 2005-10-17 16:57:55 +0200 (Mon, 17 Oct 2005) | 1 line

first SExtractor import

-------------------------------- old ChangeLog --------------------------------
Who     When            Where(mostly)   What

EB      03/07/97        clean.c         Make removal of LSB sources optional.
                        scanimage()     Idem.
                        clean.h
                        types.h         Move prototypes from types.h to clean.h

EB      23/07/97        -               Blanking of detections. Major update.
                                        outobj2 components are now handled
                                        through the obj2 pointer.

EB      31/07/97        photom.c        MAGERR_APER bug introduced during the
                                        add of blanking fixed.

EB      01/08/97        LDACTools       Upgraded from the EIS version.

EB      04/08/97        -               Added handling of external FLAG-maps.
                        read_prefs()    Upgraded from the WeightWatcher code.
                        newfield()      Changed slightly the frame description
                                        display.
EB      13/08/97        filterback()    Fixed bug with even BACK_FILTERSIZE
                        localback()     Fixed bug with LOCAL backgrounds for
                                        BLANKed detections.

EB      27/08/97        -               Added handling of external WEIGHT-maps.

EB      02/09/97        makeback()      Added display of currently processed
                                        line.
                        sexheadsc.h
                        catout.c        New ASCII_SKYCAT catalog format.

EB      05/09/97        -               Fixed -PROTOTYPES check-image bug.

EB      13/09/97        filter.c        Added FILTER_THRESH option.
                        scan.c          Fixed WEIGHT-map detection bug.

EB      10/10/97        examine_iso()
                        clean()         Improve CLEANing and take into account
                                        variable S/N.
                        plist.[c,h]     New memory-friendly propagation of
                                        information through deblending.

EB      16/10/97        main()          New syntax for dual-image mode.

EB      18/10/97        analyse.c
                        photom.c        Exact computation of photometric errors
                                        in the context of variable S/N.

EB      20/10/97        prefs.h         new MAMA_CORFLEX preferences parameter,
                        astrom.c
                        param.h         new X_MAMA and Y_MAMA output parameters

EB      21/10/97        createblank()   Bug in single-image mode fixed.
                        sortit()        Bug in dual-image + BLANKing mode.

EB      24/10/97        astrom.c        X_MAMA and Y_MAMA computed differently
                        addcleanobj()   Bug in the automag flagging fixed by
                                        modifying the margin computations

EB      26/10/97        analyse()       ASSOC selection added.
                        photom.c        MASKing with photometric CORRECTion
                                        added.

EB      04/11/97        readprefs()     Added support for ENV variables within
                                        .sex config file.

EB      06/11/97        photom.c        Bug in FLUXERR_ISOCOR fixed.

EB      13/11/97        end_readobj()
                        end_writeobj()  "Potential bug" fixed.

EB      18/11/97        flag.[c,h]      New module for computing flags from
                                        flag-map.

EB      21/11/97        newfield()      PIXEL_SCALE pb with non-WCS images
                                        fixed.

EB      24/11/97        prefs.h         CROSS_ID keyval changed to MATCHED.
                        initcheck()     WCS rescaling for MINIBACKGROUND and
                                        MINIBACKRMS added.

EB      28/11/97        initcheck()     Bug fixed in WCS coordinates of MINIs.

EB      29/11/97        initcheck()     Another bug added in MINIs fixed.
                        sexhead.h       Corrected SEXTHLD value.

EB      19/12/97        readprefs()     Test length of command-line arguments

EB      21/12/97        endobject()     Replace prefs pixel-scale by field
                                        pixel-scale for S/G separation.

EB      06/01/98        readimagehead() Load basic WCS infos even if no astrom
                                        parameter is requested (for MINIBACKs).
                                        Added handling of CDxx_xx (thanks to
                                        D. Mink)

EB      29/01/98        -               Added crude interpolation scheme in
                                        presence of image weighting: new
                                        interpolate.c module.

EB      30/01/98        preanalyse()
                        examineiso()    Changed the rules concerning the
                                        handling of "infinitely thin"
                                        detections (B_IMAGE=0).

EB      31/01/98        parcelout()     Fixed a big (but intermittent) bug
                                        preventing proper deblending in
                                        weighted images.

EB      07/02/98        photom.c
                        scan.c
                        makeit.c        Revisited completely the handling of
                                        bad pixels for the photometry.

EB      10/02/98        endobject()     (De)blanking strategy slightly changed.

EB	16/02/98        -               New parameters XPEAK_ and YPEAK_ added.

EB      13/03/98        -               Finalization of the handling of weights
                                        (Background RMS, weight threshold).
                        endobject()     SEGMENTATION check-image bug fixed.

EB      16/03/98        readprefs()     Management of the conflicts between
                                        weight-types seriously updated.

EB      20/03/98        photom.c        MAGERR bug in presence of weighting
                                        fixed.

EB      23/03/98        clean()         Wrong handling of abcor factor
                                        corrected.

EB      25/03/98        clean()         realloc() bug in CLEANing with Linux
                        scan.c          fixed.

EB      26/03/98        readimagehead() Typo in OBS-DATE FITS keyword reading.

EB      27/03/98        sortit()        Bug that prevented some faint
                                        detections to be CLEANed fixed.
                        -               Add a new EXTRA_WARNINGS prefs option.

EB      11/04/98        -               Added FITS_UNSIGNED option.
                        filterback()    Bug with empty images fixed.
                        main()          New banner.

EB      15/04/98        getflag()       Potential bug for big objects with
                                        FLAGTYPE MOST fixed.
                        examineiso()    Wrong detection threshold for CLEANing
                                        in multi-image mode replaced with
                                        correct one.
EB      29/04/98        -               Allow multiple FLAG-MAPs (up to 4
                                        currently): IMAFLAG_ISO and
                                        NIMAFLAG_ISO have become vectors.
                        getflags()      Bug with FLAG_TYPEs MIN and MAX fixed.

EB      30/04/98        copyastrom()    Fixed a bug with INTERP_TYPE VAR_ONLY.
                        -               Simplified access init_interpolate.

EB      02/05/98        define.h
                        fitsread()      Improve stability with incorrect FITS
                                        headers.

EB      03/05/98        filterback()    RMS determination more tolerant towards
                                        constant weight-maps.
                                        BACK_FILTERing anisotropy bug fixed.
                        makeit()        Bad closing of CHECKIMAGEs fixed.
                        -               New CATALOG_TYPE NONE option.
                        -               APER measurements functional again
                                        (recently introduced bug).

EB      06/05/98        readimagehead() Pb with FITS astrometric strings fixed.

EB      07/05/98        getconv()       Uninitialized variable pb fixed.

EB      12/05/98        loadstrip()     Bug in the production of BACKGROUND
                                        CHECK-image fixed.

EB      28/05/98        define.h        new VECFLAG() macro for flagging
                                        arrays.
                        prefs.h         Remove "&" before ptrs to static
                                        arrays.

EB      13/06/98        initastrom()    Wrong mapping of PC components fixed.
                        readimagehead() Wrong mapping of CD components fixed.

EB      29/06/98        makeit()        Handling of weight-maps+interpolation
                                        simplified.
                        scanimage()     Missing reference field in the reading
                                        of dwscan added.
                        useprefs()      Bad default threshold in VAR_ONLY
                                        interpolation mode fixed.

EB      30/06/98        backguess()     Missing scaling of "sig" in the
                                        computation of "*mean" added, but
                                        threshold changed from 0.2 to 0.0,
                                        awaiting for more tests.

EB      08/07/98        readimagehead() CDx_x FITS WCS parameters are now
                                        given priority before PCxxxx.

EB      09/07/98        filterback()    Filtering bug at image borders fixed.

EB      21/07/98        photom.c        Division by zero for unphotometrable
                                        objects fixed.

EB      23/07/98        fitswrite()     Pb with very long strings fixed.
                        readcatparams() Reading of .param files more robust.
                                        Comments starting with '#' now allowed.

EB      27/07/98        readimagehead()
                        initcheck()     Changed the handling of CDELTx params
                                        when CDx_x are used. Now works with
                                        MINIBACKGROUND check-images.

EB      11/08/98        photom.c        Purify warning fixed in
                                        computeautoflux()
                        scan.c          Purify warning fixed in scanimage().
                                        BLANKing procedure of CLEANed pixels
                                        fixed. Memory leaks fixed.

EB      18/11/98        -               New BACK_TYPE, BACK_VALUE, and
                                        THRESH_TYPE config parameters.
                        flag.c          Fixed initialization bug in FLAG_TYPE
                                        MAX mode (thanks to T.Erben).

EB      20/11/98        back.c          New BACK_FILTTHRESH parameter.

EB      23/11/98        prefs.c
                        weight.c        Quick fix of MAP_RMS measurement mode.

EB      26/11/98        -               New key->alloc flag to distinguish
                                        between constant and dynamic pointers.

EB      28/11/98        -               lint warnings fixed.

EB      29/11/98        assoc.c         New ASSOC_TYPE NEAREST option.

EB      28/12/98        catout.c        Added dependency between flux_auto and
                                        flux_radius

EB      13/01/99        endobject()     Fixed numbering problem in SEGMENTATION
                                        maps when CLEAN is N.

EB      27/01/99        load_assoc()    Stupid bug in 2 ASSOC_PARAMS mode
                                        fixed.

EB      19/02/99        examineiso()    Variable thresholding is now taken into
                                        account for S/G classification and
                                        FWHMs.

EB      25/02/99        types.h         Wrong data-type for BACK_VALUE fixed.

EB      02/03/99        examineiso()    XPEAK and YPEAK offset bug fixed.

EB      06/04/99        -               Unused variables removed.
                        clean.c
                        scan.c          New handling of CLEANed blanked
					detections.

EB      08/04/99        -               Various memory leaks fixed
                        readimage()     BACKGROUND_RMS check-images now
                                        operational in single-image mode.

EB      15/04/99        param.h         Remove the 0's from the formatting
                                        of flags.

EB      21/04/99        -               New _PROFILE photometric parameters.

EB      06/05/99        examineiso()    Potential bug in the threshs[i] fixed.
                        readimage()     Bug in BACKGROUND_RMS mode fixed.

EB      11/05/99        -               Major change: handling of weight-maps
                                        during the background processing.
                                        New WEIGHT_GAIN parameter.

EB      19/05/99        scanimage()     Important "bug" fix: slight differences
                                        between single- and double-image modes
                                        supressed.

EB      24/05/99        makeback()      Memory leak in double-weight/single-
                                        image mode fixed.
                        makeit()        New info display.
                        inheritfield()  Interpolation flag is no longer
                                        inherited (fixes a bug in some weird
                                        double-weight-maps configs).

EB      12/08/99        endfield()      Fixed segmentation fault at the end
                                        of processing when ASSOC is used.
                        psf_load()      Remove malloc() of null-size data
                                        with constant PSFs.

EB      10/09/99        makeit()        Background pb in WEIGHT_TYPE NONE,...
                                        fixed.

EB      14/09/99        back()          Replacement value for bad variance map
                                        background meshes changed to 1.0
                        scanimage()     Bug with THRESH_TYPE ABSOLUTE in
                                        WEIGHTing mode fixed.

EB      30/09/99        fitsread()      The quote (') symbol is now properly
                                        handled in FITS headers.

EB      07/10/99        scanimage()     Removed debug information inadvertently
                                        left in the previous release.

EB      24/01/2000      computeautoflux()
                                        Small inaccuracy in crowding-flag
                                        positioning fixed.

EB      01/02/2000      localback()     Fixed division by zero in local
                                        background estimates of some heavily
                                        deblended detections in MASK_TYPE
                                        CORRECT mode.
EB      03/02/2000      makeback()      Risk of segmentation fault with huge
                                        weight maps fixed.

EB      11/02/2000      computeautoflux()
                                        Wrong version of photom.c in release
                                        V2.1.5 fixed.

EB      14/10/2000      newfield()      RMS_FIELD now properly taken into
                                        account.
                        prefs.h         BACK_FILTERSIZE upper limit pushed to
                                        11.

EB      04/02/2001      backhisto()
                        backstat()      Fixed two huge bugs in the MAP_WEIGHT
                                        calibration.

EB      08/02/2001      makeback()      Fixed a small bug in large-image mode.
                        clean()         Fixed CLEANing bug for hollow objects.

EB      23/09/2001      neurfilter()    Fixed a bug that would make the result
                                        of neural filtering compiler-dependent.
                        makeback()      Corrected typos in text displayed on
                                        screen.

EB      24/09/2001      endobject()     Add 1 to xmin,xmax,ymin and ymax object
                                        parameters to be compatible with the
                                        FITS convention for pixel coordinates.

EB      17/06/2002      -               Added Large File Support

EB      13/12/2002      -               Moved to autoconf'ed distribution.
                        -               FITS and WCS library updated.
                        main()          New banner.
EB      15/12/2002      -               Added Support for MEF files.

EB      24/01/2003      initastrom()
                        astrom.h        Increased PV array to 2000 to comply
                                        with the newly added version of the WCS
                                        library.
                        preflist.h      Increased default MEMORY_PIXSTACK to
                                        200,000.
                        acx_prog_cc_optim.m4
                                        Added "-g" to default CFLAGS when
                                        compiling with gcc.
EB      05/02/2003      readimage.c     Added <math.h> include statement.

EB      06/02/2003      backguess()     Fixed potential bug with unitialized
                                        value.

EB      07/02/2003      back.c
                        fitscat.h
                        define.h
                        configure.in    Improved LFS support (with glibc2.2).

EB      05/03/2003      -               Put back config/ dir and add Benne
                                        Holwerda's manual.

EB      02/04/2003      makeback()      Fixed a memory leak on weight histo.
                        refine.c        Modify parcelout() array allocation.
                        pc.c
                        psf.c
                        som.c           Added dummy return to please insure++.

EB      03/04/2003      endastrom()     2 arrays were freed twice sometimes.

EB      28/11/2003      -               Fixed gcc -Wall warnings
                        -               Updated the fitscat and wcs libraries
                                        to the latest versions.

EB      03/12/2003      add_tab()       Removed confusing seg section, fixing
                                        the SEXNDET header bug with MEFs.
                        save_head()     Add saving of headpos file position.

EB      15/06/2004      analyse.c
                        check.c
                        clean.c         Mv SEGMENTATION map from 16 to 32 bits.

EB      13/12/2004      computepetroflux()
                                        Added Petrosian "total" magnitudes
                        winpos.c        Added *WIN_* position measurements.

EB      14/12/2004      key.h           Keyword max length changed to 31 chars

EB      15/12/2004      -               New RPM build system
                        -               Updated the fits and wcs libraries
                                        to the latest versions.

EB      15/02/2005      compute_winpos()
                                        Added 1.0 to computed coordinates and
                                        fixed error singularities. New
                                        iterative procedure (more accurate).

EB      17/07/2005      compute_winpos()
                                        Added computation of "windowed moments".
                        astrom.c        Added support for WORLD "windowed
                                        parameters".

EB      18/07/2005      dumpprefs()     Added support for "deep dump".
                        Makefile.am     added the -g option to gcc CFLAGS.
                        param.h         Fixed non-FORTRAN compliant format
                                        in TDISP output.

EB      22/08/2005      compute_winpos()
                                        Fixed issues for sources with flux<0.

EB      23/08/2005      param.h         Removed duplicated lines.

EB      24/08/2005      compute_winpos()
                                        Added Kaiser's POLARizations (POLAR and
                                        POLARWIN) and FLAGS_WIN.

EB      25/08/2005      compute_winpos()
                                        Added NITER_WIN giving the number of
                                        WIN iterations.

EB      22/09/2005      compute_winpos()
                                        Fixed a trigger bug with ERR*WIN_IMAGE.

EB      23/09/2005      define.h        Corrected SExtractor URL.

EB      27/09/2005      examineiso()    Fixed NaN in computing ISO thresholds.

EB      19/10/2005      updateparamflags()
                                        Fixed a trigger bug with ERR*WIN_IMAGE.
                        astrom_winshapeparam()
                                        Fixed null *WIN_WORLDs.
                        preflist.h      Improved display of advanced parameters.