Skip to content
Snippets Groups Projects
Commit fd258455 authored by Andre Offringa's avatar Andre Offringa
Browse files

Some documentation changeS

parent 16d4253e
No related branches found
No related tags found
No related merge requests found
...@@ -36,5 +36,5 @@ v1.2 ...@@ -36,5 +36,5 @@ v1.2
* Fixed various rare segmentation faults * Fixed various rare segmentation faults
* A lot of bug fixes and feature enhancements related to filtering * A lot of bug fixes and feature enhancements related to filtering
* A lot of doc fixes * A lot of doc fixes
* Fixed some bugs that caused NDPPP not to work * Fixed some bugs that caused DP3 not to work
* Some Mac fixes by Ger van Diepen * Some Mac fixes by Ger van Diepen
...@@ -22,4 +22,4 @@ Changes: ...@@ -22,4 +22,4 @@ Changes:
* Bug fix: Times along x-axis in rfigui were not correct when splitting the data (reported by Raymond Oonk). * Bug fix: Times along x-axis in rfigui were not correct when splitting the data (reported by Raymond Oonk).
* Performance of dilation algorithm improved (is not used in default strategy). * Performance of dilation algorithm improved (is not used in default strategy).
* Slight performance improvement of SSE SumThreshold method. * Slight performance improvement of SSE SumThreshold method.
* New library interface: the statistics collector is used by NDPPP to accumulate statistics during averaging (NDPPP and AOFlagger remain independ though). * New library interface: the statistics collector is used by DP3 to accumulate statistics during averaging (DP3 and AOFlagger remain independent though).
...@@ -21,7 +21,7 @@ v2.01 ...@@ -21,7 +21,7 @@ v2.01
* Bug fix: Open button now has key accelerator. * Bug fix: Open button now has key accelerator.
* Bug fix: AOFlagger did not compile on gcc 4.7 (reported by J. Swinbank). * Bug fix: AOFlagger did not compile on gcc 4.7 (reported by J. Swinbank).
* Bug fix: Toolbar in the Rfigui will now always show both text and icons * Bug fix: Toolbar in the Rfigui will now always show both text and icons
* Bug fix: Interface changed to allow NDPPP to read the raw data, NDPPP's problems fixed that concerned quality collecting. * Bug fix: Interface changed to allow DP3 to read the raw data, DP3's problems fixed that concerned quality collecting.
* Performance enhancement: Improved speed of horizontal sumthreshold algorithm with SSE instructions, leading to about 10% improved speed on overal strategy. * Performance enhancement: Improved speed of horizontal sumthreshold algorithm with SSE instructions, leading to about 10% improved speed on overal strategy.
* Bug fix: fixed bug in previously mentioned new SumThreshold algorithm causing crashes (reported by J. Swinbank), also adding test case to validate result. * Bug fix: fixed bug in previously mentioned new SumThreshold algorithm causing crashes (reported by J. Swinbank), also adding test case to validate result.
* Performance enhancement: Improved performance of reading meta data of measurement sets. * Performance enhancement: Improved performance of reading meta data of measurement sets.
......
...@@ -16,7 +16,7 @@ List of changes ...@@ -16,7 +16,7 @@ List of changes
* The software is no longer depending on the log4cpp library (this used to be required for the LOFAR infrastructure). * The software is no longer depending on the log4cpp library (this used to be required for the LOFAR infrastructure).
* Faster high-pass filtering algorithm using SSE instructions, which has replaced the sliding window algorithm in the default algorithm (3 x faster filtering, 10% benefit in full strategy). * Faster high-pass filtering algorithm using SSE instructions, which has replaced the sliding window algorithm in the default algorithm (3 x faster filtering, 10% benefit in full strategy).
* New reading mode that reads a full set in memory. It is 25% faster compared to indirect when every thing fits in memory (on a 1gb set: Direct: 2m53, Indirect: 1m55, Memory: 1m27). This is now the default reading mode when enough memory is available. * New reading mode that reads a full set in memory. It is 25% faster compared to indirect when every thing fits in memory (on a 1gb set: Direct: 2m53, Indirect: 1m55, Memory: 1m27). This is now the default reading mode when enough memory is available.
* New public API. This API exposes a few simple & documented interface classes in a single header, that can be used to integrate the flagger and/or quality collector in an observatory's pipeline. It is used by the Cotter MWA preprocessing pipeline and will hopefully be used by LOFAR's preprocessing pipeline (NDPPP) some time in the future. Latest API docs can be found here: :doc:`../cpp_interface` * New public API. This API exposes a few simple & documented interface classes in a single header, that can be used to integrate the flagger and/or quality collector in an observatory's pipeline. It is used by the Cotter MWA preprocessing pipeline and will hopefully be used by LOFAR's preprocessing pipeline (DP3) some time in the future. Latest API docs can be found here: :doc:`../cpp_interface`
* New feature: action that can preliminary calibrate the passband (used in default MWA strategy) * New feature: action that can preliminary calibrate the passband (used in default MWA strategy)
* Bug fix: conversion from XX,YY to Stokes U did not work when no XY,YX polarization were available, as well as some other uncommon conversions. * Bug fix: conversion from XX,YY to Stokes U did not work when no XY,YX polarization were available, as well as some other uncommon conversions.
* Bug fix: allow inverted vertical axes in plots, as well as some other plotting fixes. * Bug fix: allow inverted vertical axes in plots, as well as some other plotting fixes.
......
...@@ -36,7 +36,7 @@ Changes from 2.6 to 2.7 ...@@ -36,7 +36,7 @@ Changes from 2.6 to 2.7
* Feature: Collect time-frequency information in aoquality collect. * Feature: Collect time-frequency information in aoquality collect.
* Feature: New colour map, 'fire', going via black to red to yellow to white. * Feature: New colour map, 'fire', going via black to red to yellow to white.
* Feature: Specify data column during collecting. * Feature: Specify data column during collecting.
* Bugfix: Solving compilation issue when building with shared libraries (-DBUILD_SHARED_LIBS=ON) instead of a static library, to make it possible to link AOFlagger with new NDPPP. * Bugfix: Solving compilation issue when building with shared libraries (-DBUILD_SHARED_LIBS=ON) instead of a static library, to make it possible to link AOFlagger with new DP3.
* Bugfix: Adding newer FindCasacore.cmake from LOFAR repository, which supports casacore 2. * Bugfix: Adding newer FindCasacore.cmake from LOFAR repository, which supports casacore 2.
* Bugfix: Crash when pressing background or difference button when no image is loaded. * Bugfix: Crash when pressing background or difference button when no image is loaded.
* Bugfix: Fixed all deprecated usage of GTKMM. Everything can now be compiled with '-DGTKMM_DISABLE_DEPRECATED' set (#52). * Bugfix: Fixed all deprecated usage of GTKMM. Everything can now be compiled with '-DGTKMM_DISABLE_DEPRECATED' set (#52).
......
...@@ -10,7 +10,7 @@ This version has no major new features, but some small enhancements and quite a ...@@ -10,7 +10,7 @@ This version has no major new features, but some small enhancements and quite a
New features New features
^^^^^^^^^^^^ ^^^^^^^^^^^^
* Functionality in the interface to set a custom error handler and progress reporter (this also fixes exceptions ocurring whilst running within NDPPP). * Functionality in the interface to set a custom error handler and progress reporter (this also fixes exceptions ocurring whilst running within DP3).
* New aoqplot interface * New aoqplot interface
* Adding a 'keep window open' checkbutton to the Goto window, requested by F. de Gasperin. * Adding a 'keep window open' checkbutton to the Goto window, requested by F. de Gasperin.
* Make the default size of the goto window somewhat larger. * Make the default size of the goto window somewhat larger.
......
...@@ -14,6 +14,11 @@ class H5File; ...@@ -14,6 +14,11 @@ class H5File;
namespace imagesets { namespace imagesets {
/**
* Implements the single-dish hdf5 format.
* The description of the format is here:
* https://bitbucket.csiro.au/projects/CPDA/repos/sdhdf_tools/browse/docs
*/
class SdhdfImageSet final : public ImageSet { class SdhdfImageSet final : public ImageSet {
public: public:
SdhdfImageSet(const std::string& path); SdhdfImageSet(const std::string& path);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment