[Kst] kdeextragear-2/kst
Andrew Walker
arwalker at sumusltd.com
Sat Jun 12 00:59:49 CEST 2004
CVS commit by arwalker:
Added cross/auto-correlation based on GSL.
A plugins/correlation/.cvsignore 1.1
A plugins/correlation/Makefile.am 1.1
A plugins/correlation/autocorrelation/.cvsignore 1.1
A plugins/correlation/autocorrelation/Makefile.am 1.1
A plugins/correlation/autocorrelation/autocorrelate.cpp 1.1 [UNKNOWN]
A plugins/correlation/autocorrelation/autocorrelate.desktop 1.1
A plugins/correlation/autocorrelation/autocorrelate.xml 1.1
A plugins/correlation/crosscorrelation/.cvsignore 1.1
A plugins/correlation/crosscorrelation/Makefile.am 1.1
A plugins/correlation/crosscorrelation/crosscorrelate.cpp 1.1 [UNKNOWN]
A plugins/correlation/crosscorrelation/crosscorrelate.desktop 1.1
A plugins/correlation/crosscorrelation/crosscorrelate.xml 1.1
M +4 -0 configure.in.in 1.23
M +4 -1 plugins/Makefile.am 1.16
--- kdeextragear-2/kst/configure.in.in #1.22:1.23
@@ -27,4 +27,5 @@
GSL_PASS_FILTERS_SUBDIR="gsl"
GSL_CONVOLUTION_SUBDIR="gsl"
+GSL_CORRELATION_SUBDIR="gsl"
KDE_CHECK_HEADER(gsl/gsl_rng.h, ,[GSL_NOISE_SUBDIR=""] )
KDE_CHECK_LIB(gsl, gsl_rng_alloc, ,[GSL_NOISE_SUBDIR=""], -lgslcblas -lm )
@@ -39,4 +40,6 @@
KDE_CHECK_HEADER(gsl/gsl_fft_real.h, ,[GSL_CONVOLUTION_SUBDIR=""] )
KDE_CHECK_LIB(gsl, gsl_fft_real_wavetable_alloc, ,[GSL_CONVOLUTION_SUBDIR=""], -lgslcblas -lm )
+KDE_CHECK_HEADER(gsl/gsl_fft_real.h, ,[GSL_CORRELATION_SUBDIR=""] )
+KDE_CHECK_LIB(gsl, gsl_fft_real_wavetable_alloc, ,[GSL_CORRELATION_SUBDIR=""], -lgslcblas -lm )
AM_CONDITIONAL(include_noise_plugins, test -n "$GSL_NOISE_SUBDIR")
AM_CONDITIONAL(include_fits_plugins, test -n "$GSL_FITS_SUBDIR")
@@ -45,4 +48,5 @@
AM_CONDITIONAL(include_pass_filters_plugins, test -n "$GSL_PASS_FILTERS_SUBDIR")
AM_CONDITIONAL(include_convolution_plugins, test -n "$GSL_CONVOLUTION_SUBDIR")
+AM_CONDITIONAL(include_correlation_plugins, test -n "$GSL_CORRELATION_SUBDIR")
FITSIO_LIBS="-lcfitsio -lm"
--- kdeextragear-2/kst/plugins/Makefile.am #1.15:1.16
@@ -17,4 +17,7 @@
CONVOLUTION_SUBDIR=convolution
endif
+if include_correlation_plugins
+CORRELATION_SUBDIR=correlation
+endif
-SUBDIRS=bin linefit autocorrelation crosscorrelation periodogram phase statistics chop $(NOISE_SUBDIR) $(FITS_SUBDIR) $(FITSNONLINEAR_SUBDIR) $(INTERPOLATIONS_SUBDIR) $(PASS_FILTERS_SUBDIR) $(CONVOLUTION_SUBDIR) editor
+SUBDIRS=bin linefit periodogram phase statistics chop $(NOISE_SUBDIR) $(FITS_SUBDIR) $(FITSNONLINEAR_SUBDIR) $(INTERPOLATIONS_SUBDIR) $(PASS_FILTERS_SUBDIR) $(CORRELATION_SUBDIR) $(CONVOLUTION_SUBDIR) editor
More information about the Kst
mailing list