From 40fafa200628a37ff38563e48f4d80dc5310369b Mon Sep 17 00:00:00 2001 From: Bruce M Simpson Date: Wed, 5 Sep 2007 07:19:37 +0000 Subject: Nuke old patches Nudged by: linimon --- .../gpstk/files/patch-apps-ionosphere-VTECMap.hpp | 18 ---------------- astro/gpstk/files/patch-src-EpochClockModel.hpp | 20 ------------------ .../gpstk/files/patch-src-MatrixImplementation.hpp | 24 ---------------------- 3 files changed, 62 deletions(-) delete mode 100644 astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp delete mode 100644 astro/gpstk/files/patch-src-EpochClockModel.hpp delete mode 100644 astro/gpstk/files/patch-src-MatrixImplementation.hpp (limited to 'astro/gpstk') diff --git a/astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp b/astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp deleted file mode 100644 index 625622c89655..000000000000 --- a/astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp +++ /dev/null @@ -1,18 +0,0 @@ ---- apps/ionosphere/VTECMap.hpp.orig Thu Jan 11 21:38:35 2007 -+++ apps/ionosphere/VTECMap.hpp Thu Jan 11 21:38:51 2007 -@@ -193,13 +193,13 @@ - /// Compute the obliquity at a given elevation - /// @param el elevation in degrees - /// @return obliquity factor -- double VTECMap::Obliquity(double el); -+ double Obliquity(double el); - - protected: - /// Allocate the grid array and fill it. - /// @param refStation reference station - /// @param factor : 1 for VTEC maps, 2 for MUF maps -- void VTECMap::reallyMakeGrid(Station& refStation, int factor) -+ void reallyMakeGrid(Station& refStation, int factor) - throw(Exception); - - /// Compute one grid value, using all the data. Called by ComputeMap. diff --git a/astro/gpstk/files/patch-src-EpochClockModel.hpp b/astro/gpstk/files/patch-src-EpochClockModel.hpp deleted file mode 100644 index 714308057750..000000000000 --- a/astro/gpstk/files/patch-src-EpochClockModel.hpp +++ /dev/null @@ -1,20 +0,0 @@ ---- src/EpochClockModel.hpp.orig Thu Jan 11 21:39:06 2007 -+++ src/EpochClockModel.hpp Thu Jan 11 21:39:26 2007 -@@ -67,7 +67,7 @@ - PRNMode mode = ALWAYS) - :ObsClockModel(sigma, elmask, mode){} - -- virtual double EpochClockModel::getOffset(const gpstk::DayTime& t) const -+ virtual double getOffset(const gpstk::DayTime& t) const - throw(gpstk::InvalidArgumentException) - { - if (t!=time) -@@ -92,7 +92,7 @@ - - // An unchecked accessor for programs that don't need the generic - // interface -- double EpochClockModel::getOffset() const -+ double getOffset() const - throw() {return clkc;}; - - bool isOffsetValid() const diff --git a/astro/gpstk/files/patch-src-MatrixImplementation.hpp b/astro/gpstk/files/patch-src-MatrixImplementation.hpp deleted file mode 100644 index 27cda0b1d923..000000000000 --- a/astro/gpstk/files/patch-src-MatrixImplementation.hpp +++ /dev/null @@ -1,24 +0,0 @@ ---- src/MatrixImplementation.hpp.orig Thu Jan 11 21:31:51 2007 -+++ src/MatrixImplementation.hpp Thu Jan 11 21:33:18 2007 -@@ -37,18 +37,18 @@ - //@{ - - template -- Matrix::Matrix() -+ Matrix::Matrix() - : v((size_t)0), r(0), c(0), s(0) - {} - - - template -- Matrix::Matrix(size_t rows, size_t cols) -+ Matrix::Matrix(size_t rows, size_t cols) - : v(rows * cols), r(rows), c(cols), s(rows * cols) - {} - - template -- Matrix::Matrix(size_t rows, size_t cols, -+ Matrix::Matrix(size_t rows, size_t cols, - T initialValue) - : v(rows * cols, initialValue), r(rows), c(cols), s(rows * cols) - {} -- cgit v1.2.3