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
|
#
# ChangeLog
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#
# This file part of: PSFEx
#
# Copyright: (C) 1998-2010 Emmanuel Bertin -- IAP/CNRS/UPMC
#
# License: GNU General Public License
#
# PSFEx 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.
# PSFEx 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 PSFEx. If not, see <http://www.gnu.org/licenses/>.
#
# Last modified: 08/11/2010
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
------------------------------------------------------------------------
r162 | bertin | 2010-11-07 17:42:10 +0100 (Sun, 07 Nov 2010) | 4 lines
Removed infrequently used check-images (MOFFAT,-MOFFAT,-SYMMETRICAL) from the de
fault configuration file.
Re-ordered the configuration file.
Moved PSF_SUFFIX to the group of "advanced" parameters.
------------------------------------------------------------------------
r161 | bertin | 2010-11-03 23:23:23 +0100 (Wed, 03 Nov 2010) | 4 lines
Fixed pb with XSLT comment.
Fixed sorting issue because of a missing declaration.
Version number pushed to 3.9.1.
------------------------------------------------------------------------
r160 | bertin | 2010-10-25 20:14:56 +0200 (Mon, 25 Oct 2010) | 2 lines
Updated file headers with the proper license info.
------------------------------------------------------------------------
r159 | bertin | 2010-10-15 23:55:52 +0200 (Fri, 15 Oct 2010) | 3 lines
Updated headers.
Added misc.h include file.
------------------------------------------------------------------------
r158 | bertin | 2010-10-10 18:45:06 +0200 (Sun, 10 Oct 2010) | 2 lines
Added missing LevMar 2.5 distrib files.
------------------------------------------------------------------------
r157 | bertin | 2010-10-10 18:30:26 +0200 (Sun, 10 Oct 2010) | 6 lines
Moved back the code to GPL.
Added more complete headers to all files.
Clarified licensing issues.
Updated FITS library.
Pushed version number to 3.9.0.
------------------------------------------------------------------------
r156 | bertin | 2010-09-10 19:47:46 +0200 (Fri, 10 Sep 2010) | 5 lines
Updated README and website links.
Moved LevMar calls to double precision.
Fixed a resampling normalization bug introduced in r150 (thanks to N. Sevilla).
Pushed version number to 3.8.2.
------------------------------------------------------------------------
r155 | bertin | 2010-08-15 17:24:12 +0200 (Sun, 15 Aug 2010) | 1 line
Added Licensing section
------------------------------------------------------------------------
r154 | bertin | 2010-07-20 13:19:18 +0200 (Tue, 20 Jul 2010) | 2 lines
Fixed TFORM error message in fitshead.c (thanks to S.Guieu).
------------------------------------------------------------------------
r153 | bertin | 2010-07-02 13:39:58 +0200 (Fri, 02 Jul 2010) | 2 lines
Removed redundant update_tab() calls.
------------------------------------------------------------------------
r152 | bertin | 2010-07-02 13:29:37 +0200 (Fri, 02 Jul 2010) | 3 lines
Fixed fitspick() issue with slashes within strings (thanks to F.Schuller).
Clarified licensing issues (added LICENSE file).
------------------------------------------------------------------------
r151 | bertin | 2010-04-24 14:08:01 +0200 (Sat, 24 Apr 2010) | 2 lines
Added support for 4D PSF snapshots when CHECKIMAGE_CUBE is set to xcY.
------------------------------------------------------------------------
r150 | bertin | 2010-04-12 18:48:06 +0200 (Mon, 12 Apr 2010) | 4 lines
Added CHI2 and RESIDUALS check-plots.
Added internal counters for discarded detections.
Normalized interpolating function to have a gain 1 with DC.
------------------------------------------------------------------------
r149 | bertin | 2010-02-06 01:21:02 +0100 (Sat, 06 Feb 2010) | 7 lines
Fixed issue with homogenization kernel.
Added PHOTFLUX_KEY and PHOTFLUXERR_KEY config parameters with support for
measurement vectors.
Removed FLUX_MAX dependency and set PHOTFLUX_KEY/PHOTFLUXERR_KEY to define S/N.
Added CENTER_KEYS config parameter.
Updated XML metadata output.
Pyshed version number to 3.8.0.
------------------------------------------------------------------------
r148 | bertin | 2009-11-19 16:40:17 +0100 (Thu, 19 Nov 2009) | 8 lines
Fixed issue with FFTW configure for custom library paths.
Fixed compilation warnings in the FITS and LevMar libraries.
Fixed compilation warnings in various parts of the code.
Added automatic recentering of images are read time.
Set PSF_RESAMPLE configuration parameter to N by default.
Moved the PSF_RESAMPLE configuration parameter to the "advanced category".
Pushed version number to 3.7.0.
------------------------------------------------------------------------
r147 | bertin | 2009-11-10 18:37:03 +0100 (Tue, 10 Nov 2009) | 3 lines
Fixed display bugs with Moffat/symmetry residuals check-plots and check-images.
Prepared support for other source position estimates.
------------------------------------------------------------------------
r146 | bertin | 2009-11-04 19:01:07 +0100 (Wed, 04 Nov 2009) | 3 lines
Tweaked LevMar convergence parameters.
Pushed version number to 3.6.2.
------------------------------------------------------------------------
r145 | bertin | 2009-11-03 17:48:10 +0100 (Tue, 03 Nov 2009) | 4 lines
Fixed Floating Point Exception and other issues in check plots when
PSFVAR_NSNAP = 1.
Moffat residuals in real-time display, check-images and check-plots are now
pixel-aware (i.e. "pixel-free") estimates.
The default for BASIS_NUMBER is now 20.
------------------------------------------------------------------------
r144 | bertin | 2009-11-03 13:19:48 +0100 (Tue, 03 Nov 2009) | 4 lines
Upgraded to the latest version of the FITS library.
Fixed random NaN issues with exceedingly undersampled point-sources.
Pushed version number to 3.6.1.
------------------------------------------------------------------------
r143 | bertin | 2009-10-30 18:25:55 +0100 (Fri, 30 Oct 2009) | 3 lines
Added PSF basis vector coefficients for non-pixel bases in .psf file.
Pushed version number to 3.6.0.
------------------------------------------------------------------------
r142 | bertin | 2009-10-27 19:41:22 +0100 (Tue, 27 Oct 2009) | 4 lines
Fixed NaNs in XML output and constant FWHMs in FITS headers in fields without
proper point sources (thanks to V. de Lapparent and F.Magnard).
Upgraded LevMar library to version 2.4.
Pushed version number to 3.5.1.
------------------------------------------------------------------------
r141 | bertin | 2009-10-15 18:13:23 +0200 (Thu, 15 Oct 2009) | 2 lines
Moved variables related to Moffat fitting from double to single precision.
------------------------------------------------------------------------
r140 | bertin | 2009-10-15 00:10:43 +0200 (Thu, 15 Oct 2009) | 4 lines
Combined normal and "pixel-free" Moffat fits in XML output: added
FWHM_PixelFree, Ellipticity_PixelFree, MoffatBeta_PixelFree and Residu
als_PixelFree fields.
Updated XSLT filter to accomodate the new fields.
Pushed version number to 3.5.0.
------------------------------------------------------------------------
r139 | bertin | 2009-09-10 19:27:30 +0200 (Thu, 10 Sep 2009) | 2 lines
Went back to using plimage() and plsetopts() straight without trying to fool
around with dynamic libraries (kills compatibility with old
er PLplot versions unfortunately).
------------------------------------------------------------------------
r138 | bertin | 2009-09-10 19:26:19 +0200 (Thu, 10 Sep 2009) | 6 lines
Added --enable-auto-flags.
Added --enable-best-link configure option.
Added rpm-best option in Makefile.am.
Cleaned up configure file.
Pushed version number to 3.4.0.
------------------------------------------------------------------------
r137 | bertin | 2009-09-03 19:27:05 +0200 (Thu, 03 Sep 2009) | 2 lines
Removed debug line.
------------------------------------------------------------------------
r136 | bertin | 2009-09-03 19:24:16 +0200 (Thu, 03 Sep 2009) | 5 lines
Added convolution of the pixel footprint in Moffat diagnostic fit..
Added PSF_PIXELSIZE config keyword.
Added AstrOmatic link in XSL banner.
Pushed version number to 3.4.0.
------------------------------------------------------------------------
r135 | bertin | 2009-08-30 19:17:21 +0200 (Sun, 30 Aug 2009) | 2 lines
Fixed portability issue with the RPM version of PLplot (no gd).
------------------------------------------------------------------------
r134 | bertin | 2009-08-28 22:31:37 +0200 (Fri, 28 Aug 2009) | 4 lines
Fixed issue with libltdl on the binary version.
Fixed pb with plplot library version.
Pushed version number to 3.3.11.
------------------------------------------------------------------------
r133 | bertin | 2009-06-26 17:40:02 +0200 (Fri, 26 Jun 2009) | 2 lines
Fixed incomplete handling of multithreaded FFTW.
------------------------------------------------------------------------
r132 | bertin | 2009-06-26 17:33:02 +0200 (Fri, 26 Jun 2009) | 6 lines
Made parallel version of ATLAS not mandatory for the multithread option.
Replaced configuration error with warning if FFTW is not multithreaded and
multithreading has been activated.
Added autoconfig support for FFTW multithreaded versions combined in libfftw3.
Added runtime warning if ATLAS is not multithreaded and multithreading is on.
Version number pushed to 3.3.10.
------------------------------------------------------------------------
r131 | bertin | 2009-06-19 19:10:11 +0200 (Fri, 19 Jun 2009) | 2 lines
Fixed compatibility problems of older PLPlot versions with plparseopt().
------------------------------------------------------------------------
r130 | bertin | 2009-05-22 14:29:37 +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).
Included Chiara's MissFITS fix in fitspick().
------------------------------------------------------------------------
r129 | bertin | 2009-04-22 16:02:35 +0200 (Wed, 22 Apr 2009) | 3 lines
Fixed 1-pixel shift bug in psf_shift().
Version number pushed to 3.3.9.
------------------------------------------------------------------------
r128 | bertin | 2009-04-17 02:18:38 +0200 (Fri, 17 Apr 2009) | 3 lines
Added config parameters PSF_DIR and HOMOKERNEL_DIR for output directory paths.
Pushed version number to 3.3.8.
------------------------------------------------------------------------
r127 | bertin | 2009-04-16 00:41:51 +0200 (Thu, 16 Apr 2009) | 3 lines
Fixed FFT bug with rectangular pixel maps (thanks to T.Darnell).
Pushed version number to 3.3.7.
------------------------------------------------------------------------
r125 | bertin | 2009-04-09 15:18:16 +0200 (Thu, 09 Apr 2009) | 1 line
Pushed version number to 3.3.6.
------------------------------------------------------------------------
r124 | bertin | 2009-04-01 18:15:04 +0200 (Wed, 01 Apr 2009) | 2 lines
Had forgotten to regenerate configure file.
------------------------------------------------------------------------
r123 | bertin | 2009-04-01 18:13:35 +0200 (Wed, 01 Apr 2009) | 2 lines
Forgot an attribute in <script />.
------------------------------------------------------------------------
r122 | bertin | 2009-04-01 18:07:49 +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.
------------------------------------------------------------------------
r121 | bertin | 2009-04-01 13:34:35 +0200 (Wed, 01 Apr 2009) | 7 lines
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 3.3.5.
------------------------------------------------------------------------
r120 | bertin | 2009-04-01 12:52:57 +0200 (Wed, 01 Apr 2009) | 2 lines
Updated XSLT filter (AstrOmatic theme + new COUNTS and COUNT_FRACTION maps).
------------------------------------------------------------------------
r119 | bertin | 2009-03-30 17:24:29 +0200 (Mon, 30 Mar 2009) | 4 lines
Fixed issue with check-images and ZPN projection (thanks to Ph.Delorme).
Added CHECKPLOT_TYPEs COUNTS and COUNT_FRACTION.
Fixed plot label decentering.
------------------------------------------------------------------------
r118 | bertin | 2009-02-27 18:50:06 +0100 (Fri, 27 Feb 2009) | 1 line
Removed freetype font deactivation to avoid problems when PLPlot is compiled
without Freetype support (can't trace it).
------------------------------------------------------------------------
r117 | bertin | 2009-02-27 13:53:51 +0100 (Fri, 27 Feb 2009) | 1 line
Removed Makefile left by mistake
------------------------------------------------------------------------
r116 | bertin | 2009-02-27 13:50:15 +0100 (Fri, 27 Feb 2009) | 1 line
Deactivated freetype fonts for check-plot consistency
------------------------------------------------------------------------
r115 | bertin | 2009-02-25 21:50:58 +0100 (Wed, 25 Feb 2009) | 1 line
Fixed reading bug with some MEFs.
------------------------------------------------------------------------
r114 | bertin | 2009-02-20 20:34:42 +0100 (Fri, 20 Feb 2009) | 7 lines
Fixed more configuration conflicts.
Fixed catalog read problems for single extensions.
Added more improvements to term output.
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 3.3.3.
------------------------------------------------------------------------
r113 | bertin | 2009-02-19 18:40:20 +0100 (Thu, 19 Feb 2009) | 2 lines
Fixed issue with homogenisation kernel filename.
------------------------------------------------------------------------
r112 | bertin | 2009-02-19 18:35:25 +0100 (Thu, 19 Feb 2009) | 4 lines
Fixed more issues related to combinations of options.
Removed unnecessary log output.
Pushed version number to 3.3.2
------------------------------------------------------------------------
r111 | bertin | 2009-02-18 20:53:16 +0100 (Wed, 18 Feb 2009) | 5 lines
Re-organized internal pipeline.
Improved term output.
Added incompatibility checks for configuration options.
Pushed version number to 3.3.1
------------------------------------------------------------------------
r110 | bertin | 2009-02-15 23:06:43 +0100 (Sun, 15 Feb 2009) | 1 line
Reorganised outer loops to offer more flexibility
------------------------------------------------------------------------
r109 | bertin | 2009-02-12 20:43:54 +0100 (Thu, 12 Feb 2009) | 3 lines
Added MEF_TYPE and HIDDENMEF_TYPE configuration options.
Pushed version number to 3.3.0.
------------------------------------------------------------------------
r108 | bertin | 2009-02-11 21:21:11 +0100 (Wed, 11 Feb 2009) | 1 line
Added support for merging of MEF samples in load_samples()
------------------------------------------------------------------------
r107 | bertin | 2009-02-09 22:16:53 +0100 (Mon, 09 Feb 2009) | 1 line
Added STABILITY_TYPE (functional) and MOSAIC_TYPE (not functional yet) config
options
------------------------------------------------------------------------
r105 | root | 2009-01-09 17:23:34 +0100 (Fri, 09 Jan 2009) | 1 line
Changed trunk directory name
------------------------------------------------------------------------
r104 | bertin | 2008-12-16 18:20:06 +0100 (Tue, 16 Dec 2008) | 2 lines
Fixed problems with highly supersampled PSFs.
------------------------------------------------------------------------
r103 | bertin | 2008-11-07 01:16:31 +0100 (Fri, 07 Nov 2008) | 2 lines
Finalized basis orthonormalization stuff (deactivated as it does not provide
any clear improvement).
------------------------------------------------------------------------
r102 | bertin | 2008-11-04 19:40:05 +0100 (Tue, 04 Nov 2008) | 2 lines
Completed implementation of polynomial orthonormalization (deactivated because
of a tenacious bug).
------------------------------------------------------------------------
r101 | bertin | 2008-11-03 19:37:26 +0100 (Mon, 03 Nov 2008) | 2 lines
Added polynomial orthonormalization procedure based on an optimized QR
decomposition to provide more consistent model regularizations.
------------------------------------------------------------------------
r100 | bertin | 2008-10-29 18:14:17 +0100 (Wed, 29 Oct 2008) | 3 lines
Added support for pixel units in FWHM map plots in the case of missing WCS
parameters.
Fixed a couple of minor memory leaks.
------------------------------------------------------------------------
r99 | bertin | 2008-10-24 16:05:08 +0200 (Fri, 24 Oct 2008) | 2 lines
Added check for underconstrained cases in superresolution.
------------------------------------------------------------------------
r98 | bertin | 2008-10-22 16:45:16 +0200 (Wed, 22 Oct 2008) | 2 lines
Fixed scaling issue in checkplot maps for constant PSFs.
------------------------------------------------------------------------
r97 | bertin | 2008-10-01 18:14:31 +0200 (Wed, 01 Oct 2008) | 2 lines
Fixed superfluous -static-intel LDFLAGS in compiler optimization script.
------------------------------------------------------------------------
r96 | bertin | 2008-10-01 16:52:40 +0200 (Wed, 01 Oct 2008) | 5 lines
Updated compiler autoconfiguration script.
Updated .spec RPM script.
Added rpm-icc target.
Version is now 3.2.1.
------------------------------------------------------------------------
r95 | bertin | 2008-09-01 17:45:29 +0200 (Mon, 01 Sep 2008) | 2 lines
Cleaned up configure script a bit.
------------------------------------------------------------------------
r94 | bertin | 2008-09-01 17:02:05 +0200 (Mon, 01 Sep 2008) | 5 lines
Redesigned completely configure and RPM scripts to support dynamic linking with
ATLAS, FFTW and PLPlot by default (finally gave up on static linking).
Fixed various issues with FFTW and PLPlot autoconfiguration scripts.
Added support for AquaTerm, PDF and SVG plot outputs.
Pushed version number to 3.2.0.
------------------------------------------------------------------------
r93 | bertin | 2008-08-26 16:39:59 +0200 (Tue, 26 Aug 2008) | 2 lines
Fixed issue with detection of the threaded FFTW library.
------------------------------------------------------------------------
r92 | bertin | 2008-08-05 13:58:21 +0200 (Tue, 05 Aug 2008) | 2 lines
Improved handling of empty fields in check-images and check-plots.
------------------------------------------------------------------------
r91 | bertin | 2008-07-23 19:49:47 +0200 (Wed, 23 Jul 2008) | 4 lines
Changed default output channel to stderr.
Fixed estimation of the mean in PCA.
Increased max number of iterations in PCA "power" algorithm to 100 (15 is
insufficient in many cases).
------------------------------------------------------------------------
r90 | bertin | 2008-07-21 21:00:48 +0200 (Mon, 21 Jul 2008) | 3 lines
Replaced coefficient vectors with snapshots for tracking PSF variation
dependencies in PCA.
Replaced byte-swapping routine with a "safer" one.
------------------------------------------------------------------------
r89 | bertin | 2008-07-12 21:47:03 +0200 (Sat, 12 Jul 2008) | 2 lines
Added MOFFAT_RESIDUALS and ASYMMETRY check-plots.
------------------------------------------------------------------------
r88 | bertin | 2008-07-11 22:26:51 +0200 (Fri, 11 Jul 2008) | 2 lines
Fixed issue with check-plots in the case of constant PSFs.
------------------------------------------------------------------------
r87 | bertin | 2008-07-08 22:43:54 +0200 (Tue, 08 Jul 2008) | 2 lines
Made check-plots images depend on each catalogue.
------------------------------------------------------------------------
r86 | bertin | 2008-07-06 20:25:54 +0200 (Sun, 06 Jul 2008) | 3 lines
Added PSF-per-extension table and min-max display to XSLT filter.
Replaced all mentions to elongation with ellipticity.
------------------------------------------------------------------------
r85 | bertin | 2008-07-05 21:44:45 +0200 (Sat, 05 Jul 2008) | 2 lines
Updated XML output and XSLT filter, including FWHM and Ellipticity maps.
PSF_Extensions table and min/max stats remain to be included.
------------------------------------------------------------------------
r84 | bertin | 2008-07-04 21:39:00 +0200 (Fri, 04 Jul 2008) | 5 lines
Added missing cplot.h
Rewrote XML output routine to add support for multiple catalogues (XSLT filter
not updated yet).
Added tracking of FITS OBJECT keyword.
Version number pushed to 3.1.0.
------------------------------------------------------------------------
r83 | bertin | 2008-06-03 19:46:12 +0200 (Tue, 03 Jun 2008) | 2 lines
Fixed issues with RPM builds.
------------------------------------------------------------------------
r82 | bertin | 2008-06-03 19:18:06 +0200 (Tue, 03 Jun 2008) | 5 lines
Fixed typos in FFTW M4 script (thanks to Peter Nugent).
Improved portability of ATLAS configure script.
Upgraded LevMar library to version 2.3.
Fixed several uninitialized variables.
------------------------------------------------------------------------
r81 | bertin | 2008-04-11 20:30:08 +0200 (Fri, 11 Apr 2008) | 5 lines
Merged with LevMar V2.2 library.
Changed RPM compile options to leave libgcc dynamically link (avoid "kernel
too old").
Fixed RPM compile flags.
Version number pushed to 3.0.1.
------------------------------------------------------------------------
r80 | bertin | 2008-03-26 20:26:10 +0100 (Wed, 26 Mar 2008) | 8 lines
Added a 3rd rejection step to PSF modeling.
Added profile accuracy parameters to cleaning and fitting routines.
Replaced minimisation routine in poly_fit() with LAPACK equivalent.
Removed "retina" storage and rewrote functions accessing it.
Removed RAW check-images type.
SAMPLES check-images are now equivalent to previous RAW check-images
Rescoped WEIGHTS check-images.
------------------------------------------------------------------------
r79 | bertin | 2008-03-20 20:10:09 +0100 (Thu, 20 Mar 2008) | 7 lines
Added flexible FWHM clipping for reading groups of catalogs.
Added SAMPLEVAR_TYPE configuration parameter.
Changed checkplot naming policy (number->catalog-filename).
Added new temporary CHI check-images.
Fixed stats on individual catalogs (temporary fix).
Changed sample clipping factor.
------------------------------------------------------------------------
r78 | bertin | 2008-03-18 20:36:31 +0100 (Tue, 18 Mar 2008) | 4 lines
Added ellipticity check-plot.
Changed fit parameter boundaries.
Fixed issue with PCA multiplexing.
------------------------------------------------------------------------
r77 | bertin | 2008-03-16 00:38:54 +0100 (Sun, 16 Mar 2008) | 2 lines
Fixed first round of bugs with the new features.
------------------------------------------------------------------------
r76 | bertin | 2008-03-14 21:29:27 +0100 (Fri, 14 Mar 2008) | 3 lines
Added FWHM map checkplots.
Renamed psfmef.x to field.x.
------------------------------------------------------------------------
r75 | bertin | 2008-03-13 18:38:51 +0100 (Thu, 13 Mar 2008) | 3 lines
Added new specific module for handling PSF MEFs.
Added storage of WCS information for diagnostic plots.
------------------------------------------------------------------------
r74 | bertin | 2008-03-12 19:12:37 +0100 (Wed, 12 Mar 2008) | 3 lines
Fixed various issues in PCA mode.
Added cube output for SNAPSHOTS check-images.
------------------------------------------------------------------------
r73 | bertin | 2008-03-11 19:43:13 +0100 (Tue, 11 Mar 2008) | 5 lines
First operational rewrited version.
Added plotting capabilities.
New PCA features not tested yet.
Version number pushed to 3.0.0.
------------------------------------------------------------------------
r72 | bertin | 2008-02-20 20:23:57 +0100 (Wed, 20 Feb 2008) | 4 lines
Added specific module to take care of contexts and to filter out PC
dependencies "on demand".
Brought back in NEWBASIS_TYPE PCA_MULTI.
------------------------------------------------------------------------
r71 | bertin | 2008-02-18 20:19:01 +0100 (Mon, 18 Feb 2008) | 2 lines
Prepared code for new PCA scheme.
------------------------------------------------------------------------
r70 | bertin | 2008-02-04 19:34:31 +0100 (Mon, 04 Feb 2008) | 2 lines
Variable homogenising kernel implemented and tested on a few examples;
photometric normalisation is still rough.
------------------------------------------------------------------------
r69 | bertin | 2008-02-01 18:35:34 +0100 (Fri, 01 Feb 2008) | 2 lines
Added variable PSF homogenization (but not functional yet).
------------------------------------------------------------------------
r68 | bertin | 2008-01-16 19:49:12 +0100 (Wed, 16 Jan 2008) | 2 lines
Added first steps towards variable kernel implementation.
------------------------------------------------------------------------
r67 | bertin | 2008-01-15 18:09:44 +0100 (Tue, 15 Jan 2008) | 2 lines
Fixed typo in ATLAS m4 script (detection of multithreaded CBLAS).
------------------------------------------------------------------------
r66 | bertin | 2008-01-15 12:47:41 +0100 (Tue, 15 Jan 2008) | 2 lines
Fixed blunder with basis type.
------------------------------------------------------------------------
r65 | bertin | 2008-01-15 11:52:16 +0100 (Tue, 15 Jan 2008) | 4 lines
Added new PIXEL_AUTO mode.
Removed constraints in PSF_SIZE vs vignet size.
Version number pushed to 2.4.2.
------------------------------------------------------------------------
r64 | bertin | 2008-01-10 12:05:59 +0100 (Thu, 10 Jan 2008) | 3 lines
Fixed make dist issue with LevMar library.
Pushed version number to 2.4.1.
------------------------------------------------------------------------
r63 | bertin | 2007-12-26 18:26:06 +0100 (Wed, 26 Dec 2007) | 2 lines
Normalized homogenization kernel.
------------------------------------------------------------------------
r62 | bertin | 2007-12-26 17:31:57 +0100 (Wed, 26 Dec 2007) | 2 lines
Completed homogenization stuff (for constant PSFs).
------------------------------------------------------------------------
r61 | bertin | 2007-12-22 21:18:28 +0100 (Sat, 22 Dec 2007) | 3 lines
Added homogenization stuff (not yet functional).
Pushed version number to 2.4.0.
------------------------------------------------------------------------
r60 | bertin | 2007-11-20 17:21:41 +0100 (Tue, 20 Nov 2007) | 2 lines
Simplified PCA and PSF refinement calls.
------------------------------------------------------------------------
r59 | bertin | 2007-11-15 18:43:03 +0100 (Thu, 15 Nov 2007) | 9 lines
Changed name of config parameters once again: COMBINE_TYPE has become
NEWBASIS_TYPE (can be one of NONE,PCA_SINGLE or PCA_MULTI), and PCA_NUMBER has
become NEWBASIS_NUMBER.
Added and tested the new PCA_SINGLE procedure.
Fixed a small bug (discovered with Valgrind) with PSF variation mapping on
empty CCDs.
Added extra display info during program run.
Completed CHECKIMAGE_CUBE Y implementations in psf_writecheck().
Added proper WCS info for 3rd axis in check-images with CHECKIMAGE_CUBE Y
option.
Fixed a small inconsistency of flag filtering during the two-stage read-out of
input samples.
Pushed version number to 2.3.1.
------------------------------------------------------------------------
r58 | bertin | 2007-11-14 20:04:16 +0100 (Wed, 14 Nov 2007) | 2 lines
Added missing PCA module.
------------------------------------------------------------------------
r57 | bertin | 2007-11-14 19:58:51 +0100 (Wed, 14 Nov 2007) | 2 lines
Implemented and tested PCA construction.
------------------------------------------------------------------------
r56 | bertin | 2007-11-13 19:20:04 +0100 (Tue, 13 Nov 2007) | 5 lines
Fixed and tested loading of external image basis vectors.
Changed several configuration parameter keywords (PSF->SAMPLE, CONTEXT->PSFVAR)
to more appropriate designations.
Updated XML output (but not the XSL yet).
Added COMBINE_TYPE config keyword (not yet in operation).
------------------------------------------------------------------------
r55 | bertin | 2007-11-12 22:51:32 +0100 (Mon, 12 Nov 2007) | 6 lines
Added CHECKIMAGE_CUBE boolean config parameter to save check-images as
datacubes (only BASIS types currently).
Added reading of basis vectors but not yet functional.
Removed remaining references to galaxy PCs in code (but still present on
repository).
Pushed keyword string max supported length to 32.
Added function comments to psf.c.
------------------------------------------------------------------------
r54 | bertin | 2007-11-11 21:19:16 +0100 (Sun, 11 Nov 2007) | 2 lines
Removed temporary tweak on iterative source centering parameters.
------------------------------------------------------------------------
r53 | bertin | 2007-11-11 21:12:23 +0100 (Sun, 11 Nov 2007) | 5 lines
Updated ATLAS autoconfig.
Changed PSF_TYPE to BASIS_TYPE, PSF_NSUPER to BASIS_NUMBER, PSF_BETA to
BASIS_SCALE to add support for external basis vectors (BASIS_TYP
E FILE).
Added BASIS_NAME for external basis vector filename.
Version number pushed to 2.3.0
------------------------------------------------------------------------
r52 | bertin | 2007-11-07 16:21:09 +0100 (Wed, 07 Nov 2007) | 4 lines
Tuned regularisation factor in super-resolution.
Removed .svn files from source archive.
Version number pushed to 2.2.3.
------------------------------------------------------------------------
r51 | bertin | 2007-10-30 20:05:03 +0100 (Tue, 30 Oct 2007) | 3 lines
Fixed issue with super-resolution and variable PSFs.
Added simple, naive regularisation for extreme cases.
------------------------------------------------------------------------
r50 | bertin | 2007-10-18 19:27:03 +0200 (Thu, 18 Oct 2007) | 2 lines
Changed --with-atlas_libpath configure option to --with-atlas.
------------------------------------------------------------------------
r49 | bertin | 2007-10-18 18:53:33 +0200 (Thu, 18 Oct 2007) | 3 lines
Added Beta configuration parameter.
Improved flexibility of ATLAS configuration.
------------------------------------------------------------------------
r48 | marmo | 2007-10-10 01:19:43 +0200 (Wed, 10 Oct 2007) | 1 line
still improving XSLT translation
------------------------------------------------------------------------
r47 | marmo | 2007-10-09 19:08:26 +0200 (Tue, 09 Oct 2007) | 1 line
Wrong format in XML Configuration File writing fixed. Added XSLT filter for
average , min and max model properties on all extensions.
------------------------------------------------------------------------
r46 | marmo | 2007-10-04 23:02:18 +0200 (Thu, 04 Oct 2007) | 1 line
Improving XSLT aesthetics. Missing configuration parameters added in XML output.
------------------------------------------------------------------------
r45 | bertin | 2007-09-29 21:00:42 +0200 (Sat, 29 Sep 2007) | 3 lines
Added computation of MSE (no output yet).
Added renormalisation of the PSF model when computing residuals.
------------------------------------------------------------------------
r44 | bertin | 2007-08-17 21:49:03 +0200 (Fri, 17 Aug 2007) | 6 lines
Reorganized completely psf_refine() to accomodate arbitrary basis vectors.
Fixed overflows and normalization in Gauss-Laguerre polynomials.
Added CHECKIMAGE_TYPE BASIS for visualizing basis vectors.
Reduced by 25% the adaptive sampling step.
Version number pushed to 2.2.1
------------------------------------------------------------------------
r43 | bertin | 2007-08-16 20:18:23 +0200 (Thu, 16 Aug 2007) | 5 lines
Added support for Gauss-Laguerre vector bases(aka polar shapelets).
Added PSF_TYPE configuration keyword.
Changed meaning of PSF_NSUPER.
Pushed version number to 2.2.0.
------------------------------------------------------------------------
r42 | bertin | 2007-08-14 19:49:21 +0200 (Tue, 14 Aug 2007) | 2 lines
Removed forgotten square and weighting in RESIDUALS check-image.
------------------------------------------------------------------------
r41 | bertin | 2007-08-14 19:33:48 +0200 (Tue, 14 Aug 2007) | 2 lines
Added circular PSF soft-clipping feature.
------------------------------------------------------------------------
r40 | bertin | 2007-08-13 21:39:06 +0200 (Mon, 13 Aug 2007) | 6 lines
Complete upgrade of the point-source selection and rejection processes.
PSF refinement now done at each rejection step.
Chi2's are now computed within a disk with diameter the size of PSF image.
Added PSF_FLAGMASK advanced configuration parameter.
Version number pushed to 2.1.0.
------------------------------------------------------------------------
r39 | marmo | 2007-08-05 14:11:22 +0200 (Sun, 05 Aug 2007) | 1 line
compacting Configuration file displaying.
------------------------------------------------------------------------
r38 | bertin | 2007-08-01 20:19:10 +0200 (Wed, 01 Aug 2007) | 3 lines
Added missing .m4 files in Makefile.
Added config examples.
------------------------------------------------------------------------
r37 | bertin | 2007-07-19 17:14:20 +0200 (Thu, 19 Jul 2007) | 3 lines
Fixed wrong FWHM boundaries in parameter remapping.
Pushed version number to 2.0.9.
------------------------------------------------------------------------
r36 | bertin | 2007-07-17 17:48:42 +0200 (Tue, 17 Jul 2007) | 2 lines
Set narrower constraints for PSF axes.
------------------------------------------------------------------------
r35 | bertin | 2007-07-17 17:27:24 +0200 (Tue, 17 Jul 2007) | 4 lines
Removed lmfit library (relies now only on levmar).
Added bounding box limits to fitting parameters.
Pushed version number to 2.0.8.
------------------------------------------------------------------------
r34 | bertin | 2007-07-17 13:45:45 +0200 (Tue, 17 Jul 2007) | 2 lines
Updated the FITS library to the latest version.
------------------------------------------------------------------------
r33 | bertin | 2007-07-13 18:59:25 +0200 (Fri, 13 Jul 2007) | 2 lines
Removed dependency on multithreaded ATLAS library on custom builds.
------------------------------------------------------------------------
r32 | bertin | 2007-07-11 18:20:33 +0200 (Wed, 11 Jul 2007) | 5 lines
Added Akim Demaille's absolute path trick.
Added explicit ATLAS support in RPM builds.
Updated FITS library to the latest version.
Pushed version number to 2.0.7.
------------------------------------------------------------------------
r31 | marmo | 2007-06-19 20:56:26 +0200 (Tue, 19 Jun 2007) | 1 line
rpm building generalised.
------------------------------------------------------------------------
r30 | marmo | 2007-05-30 17:04:07 +0200 (Wed, 30 May 2007) | 1 line
all tables in xml are displayed.
------------------------------------------------------------------------
r29 | marmo | 2007-04-30 15:26:47 +0200 (Mon, 30 Apr 2007) | 1 line
xslt stylesheet updated
------------------------------------------------------------------------
r28 | bertin | 2007-04-27 20:20:13 +0200 (Fri, 27 Apr 2007) | 2 lines
Changed the normalizing factor of asymmetry to improve the contrast between
"good" and "bad" PSFs: it is now computed from the average of profile and its
symmetrical instead of the profile only.
Pushed the version number to 2.0.6.
------------------------------------------------------------------------
r27 | bertin | 2007-04-27 17:59:45 +0200 (Fri, 27 Apr 2007) | 2 lines
Added new asymmetry measurement and -SUBSYM check-images.
------------------------------------------------------------------------
r26 | bertin | 2007-04-25 15:40:51 +0200 (Wed, 25 Apr 2007) | 2 lines
Fixed warnings for patched Levmar during compilation.
------------------------------------------------------------------------
r25 | bertin | 2007-04-25 15:11:57 +0200 (Wed, 25 Apr 2007) | 2 lines
Fixed the wrong stats for catalogs with empty extensions.
------------------------------------------------------------------------
r24 | bertin | 2007-04-13 17:33:24 +0200 (Fri, 13 Apr 2007) | 3 lines
Fixed memory leak in levmar.
Replaced LU decomposition with ATLAS' Cholesky in levmar library,
------------------------------------------------------------------------
r23 | bertin | 2007-04-08 22:14:11 +0200 (Sun, 08 Apr 2007) | 5 lines
Fixed issue with missing Levmar source files in distribution.
Added min, average and max values of all PSF parameters over all extensions in
XML-VOTable output.
Replaced "Best" and "Worse" labels with "Min" and "Max" (the XSLT filter was
updated accordingly).
Added support for static compilation with icc.
------------------------------------------------------------------------
r22 | bertin | 2007-04-06 21:15:44 +0200 (Fri, 06 Apr 2007) | 2 lines
Added autoconfiguration script for the ATLAS library (as required now).
------------------------------------------------------------------------
r21 | bertin | 2007-04-06 21:14:46 +0200 (Fri, 06 Apr 2007) | 3 lines
Fixed singular matrix issue in super-resolution for too small input vignets.
Added linking and usage of the ATLAS library throughout the code.
------------------------------------------------------------------------
r20 | bertin | 2007-04-05 22:03:50 +0200 (Thu, 05 Apr 2007) | 6 lines
Fixed unphysical Moffat fits by reverting to basic parameterisation.
Fixed insufficient pruning of degrees of freedom for oversampled, variable PSFs.
Changed behaviour of SNAPSHOTS, MOFFAT and -MOFFAT check-images.
Added new SNAPSHOTS_IMRES check-images.
Fixed SNAPSHOTS check-images.
------------------------------------------------------------------------
r19 | bertin | 2007-04-04 20:28:11 +0200 (Wed, 04 Apr 2007) | 4 lines
Added levmar library.
Fixed SNAPSHOTS check-images.
Fixed XSL_URL datarootdir pb.
------------------------------------------------------------------------
r18 | bertin | 2007-03-28 17:46:53 +0200 (Wed, 28 Mar 2007) | 2 lines
Added PSF sampling step in XML-VOTable output.
------------------------------------------------------------------------
r17 | bertin | 2007-03-22 18:33:51 +0100 (Thu, 22 Mar 2007) | 2 lines
Changed pixel scale of SNAPSHOTS output to that of the input images.
------------------------------------------------------------------------
r16 | marmo | 2007-03-21 17:09:21 +0100 (Wed, 21 Mar 2007) | 1 line
basic xslt stylesheet for PSFEx
------------------------------------------------------------------------
r15 | bertin | 2007-03-21 14:41:57 +0100 (Wed, 21 Mar 2007) | 2 lines
Added missing psfex.xsl entry in .spec file.
------------------------------------------------------------------------
r14 | bertin | 2007-03-21 14:32:17 +0100 (Wed, 21 Mar 2007) | 4 lines
Fixed the segfault in case of a filename error (reported by Chiara Marmo).
Updated the THANKS and README files.
Version number pushed to 2.0.2
------------------------------------------------------------------------
r13 | bertin | 2007-03-21 13:37:53 +0100 (Wed, 21 Mar 2007) | 3 lines
Added XSLT filter (currently a copy of SCAMP's).
Added proper default URL to XSLT filter in RPM builds (new configure
--with-xsl_url option).
------------------------------------------------------------------------
r12 | bertin | 2007-03-07 13:04:25 +0100 (Wed, 07 Mar 2007) | 2 lines
Added missing src/lmfit/Makefile.in.
------------------------------------------------------------------------
r11 | bertin | 2007-03-06 15:46:08 +0100 (Tue, 06 Mar 2007) | 2 lines
Fixed segfaults with 0 contexts; as a consequence, SNAPSHOTS and MOFFAT
check-images now generate a single snapshot in the absence of contexts.
------------------------------------------------------------------------
r10 | bertin | 2007-03-04 16:48:26 +0100 (Sun, 04 Mar 2007) | 2 lines
Added output of "best" and "worse" values of fitted parameters to XML output.
------------------------------------------------------------------------
r9 | bertin | 2007-03-02 20:55:57 +0100 (Fri, 02 Mar 2007) | 2 lines
Added output of the fitted Moffat beta to XML output.
------------------------------------------------------------------------
r8 | bertin | 2007-03-02 20:32:51 +0100 (Fri, 02 Mar 2007) | 5 lines
Fixed computation of PSF residuals (many bugs removed, checked on real data).
Fixed Moffat processing of multiple extensions.
Finalized XML output.
Added new VERBOSE_TYPE LOG option.
------------------------------------------------------------------------
r7 | bertin | 2007-03-01 20:34:31 +0100 (Thu, 01 Mar 2007) | 3 lines
Added new CONTEXT_NSNAP advanced config parameter to specify the number of PSF
snapshots per context axis.
Added actual code and support for the -dd command line option.
------------------------------------------------------------------------
r6 | bertin | 2007-02-26 20:20:41 +0100 (Mon, 26 Feb 2007) | 5 lines
Reorganized structures for diagnostics.
Activated Moffat function profile fitting (tuning and XML output still have to
be completed).
Added MOFFAT check_image type.
Replace poly routines with the last versions.
------------------------------------------------------------------------
r5 | bertin | 2007-02-25 19:47:38 +0100 (Sun, 25 Feb 2007) | 4 lines
Added LMFit library.
Added diagnostic module with 2D Moffat function-fitting (initialization and
testing not done yet).
Pushed version number to 2.0b.
------------------------------------------------------------------------
r4 | bertin | 2007-02-23 19:40:05 +0100 (Fri, 23 Feb 2007) | 6 lines
Added XML_VOTable output in preparation for new diagnostics.
Updated to the latest version of the FITS-LDAC library.
Updated displayed info to the latest Bertin software standards.
Added support for compilation with the INTEL compiler.
Pushed version number to 1.16.
------------------------------------------------------------------------
r3 | baillard | 2006-07-18 13:53:48 +0200 (Tue, 18 Jul 2006) | 2 lines
Move psfex to public repository
------------------------------------------------------------------------
r2 | bertin | 2005-10-17 17:08:31 +0200 (Mon, 17 Oct 2005) | 1 line
first PSFEx import
-------------------------------- old ChangeLog -------------------------
Who When Where(mostly) What
EB 17/12/2002 - Moved to autoconf'ed distribution.
- FITS library updated.
main() New banner.
- Added Support for MEF files
FM 24/01/2003 - Added new FITS keywords to output.
EB 26/02/2003 makeit()
read_samples() Allow support for single-source inputs.
- Added fast_median() function.
psfex-tpx.spec New optimized .spec file for TERAPIX.
FM 13/03/2003 psf.c Add new PSF_FWHM keyword to output.
EB 10/04/2003 fast_median() Fixed a bug with odd cases.
EB 11/07/2003 psf_writecheck() Add WCS info to check-image headers.
EB 27/07/2003 read_sample() header array overflow bug fixed.
psf_writecheck() Fixed memory leak with naxisn array.
EB 31/10/2003 makeit()
psf.c Now produces a warning instead of an
error exit if saccepted = 0.
FITS library Updated to the latest version.
main() Cleaner "--version" output.
- Fixed all gcc -Wall warnings.
EB 03/11/2003 psf_init() Fixed bug when CONTEXT_DEGREES empty.
EB 11/12/2004 FITS library Updated to the latest version (%e->%E).
sample.c Propagated FITS library changes.
- New RPM build system.
|