Update of /cvsroot/csp/APPLICATIONS/SimData/Source
In directory sc8-pr-cvs1:/tmp/cvs-serv12409/Source
Modified Files:
Interpolate.cpp LUT.cpp Version.cpp
Log Message:
Index: Interpolate.cpp
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Source/Interpolate.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Interpolate.cpp 14 Aug 2003 12:19:13 -0000 1.14
--- Interpolate.cpp 15 Aug 2003 01:17:06 -0000 1.15
***************
*** 33,43 ****
const Enumeration InterpolatedData<T>::Method("LINEAR SPLINE");
- class load_check {
- public:
- load_check() {
- printf("SimData %s loaded @ %p\n", getVersion(), this);
- }
- } check_interpolate;
-
//static load_check check_interpolate;
--- 33,36 ----
Index: LUT.cpp
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Source/LUT.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** LUT.cpp 6 Aug 2003 06:36:25 -0000 1.3
--- LUT.cpp 15 Aug 2003 01:17:06 -0000 1.4
***************
*** 77,80 ****
--- 77,82 ----
/**
+ * @brief A helper class for storing second-derivatives.
+ *
* A helper class for storing second-derivatives used
* in spline interpolation. The structure mirrors that
***************
*** 136,140 ****
/**
! * Partial specialization of Curvature for one-dimension.
*
* This is essentially just a std::vector<X>. See Curvature
--- 138,142 ----
/**
! * @brief Partial specialization of Curvature for one-dimension.
*
* This is essentially just a std::vector<X>. See Curvature
***************
*** 165,169 ****
/**
! * Zero-dimensional Curvatures are not allowed.
*/
template <class X>
--- 167,171 ----
/**
! * @brief Stub to prevent zero-dimensional Curvatures.
*/
template <class X>
Index: Version.cpp
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Source/Version.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Version.cpp 14 Aug 2003 12:19:13 -0000 1.4
--- Version.cpp 15 Aug 2003 01:17:06 -0000 1.5
***************
*** 32,35 ****
--- 32,47 ----
}
+
+ /**
+ * @brief Print a startup message to verify proper loading of SimData
+ */
+ class load_check {
+ public:
+ load_check() {
+ printf("SimData %s loaded @ %p\n", getVersion(), this);
+ }
+ } check_interpolate;
+
+
NAMESPACE_SIMDATA_END
|