From 48b964d879cb0353ab421226e7a282389a1db479 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Fri, 30 Mar 2001 21:01:15 +0000 Subject: [PATCH] r651: *** empty log message *** --- cgi-bin/ctsim.cgi.in | 2 +- cgi-bin/ctsim.conf.in | 1 + html/simulate.html.in | 4 +--- src/views.cpp | 6 +++--- src/views.h | 4 ++-- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/cgi-bin/ctsim.cgi.in b/cgi-bin/ctsim.cgi.in index 0f67bed..2b7aa78 100755 --- a/cgi-bin/ctsim.cgi.in +++ b/cgi-bin/ctsim.cgi.in @@ -99,7 +99,7 @@ my $sub_png_url = "$::url_datadir/sub-$tmpid.png"; my $pjrec_ver = "$::bindir/pjrec"; my $phm2pj_ver = "$::bindir/phm2pj"; my $phm2if_ver = "$::bindir/phm2if"; -my $diff_ver = "$::bindir/if-2"; +my $diff_ver = "$::bindir/if2"; $pjrec_ver = "/opt/lam/bin/mpirun N N $::lamrundir/pjrec-lam" if $MPI; $phm2pj_ver = "/opt/lam/bin/mpirun N N $::lamrundir/phm2pj-lam" if $MPI; diff --git a/cgi-bin/ctsim.conf.in b/cgi-bin/ctsim.conf.in index 2b09f38..42b88f5 100755 --- a/cgi-bin/ctsim.conf.in +++ b/cgi-bin/ctsim.conf.in @@ -6,5 +6,6 @@ $::jobdir = "@webdatadir@"; $::datadir = "@webdatadir@"; $::url_datadir = "@webdataurl@"; $::mpi_enable = "@mpienable@"; +$::single_process_only = 1; 1; diff --git a/html/simulate.html.in b/html/simulate.html.in index bd0745a..032260a 100644 --- a/html/simulate.html.in +++ b/html/simulate.html.in @@ -69,9 +69,7 @@ Backprojection Method:
Trig
Trig Table
Difference
-Difference Optimized
-Difference Optimized (integer math)
-Difference Highly-optimized (integer math)
+Difference Highly-optimized (integer math)

diff --git a/src/views.cpp b/src/views.cpp index 2624d6a..afceae4 100644 --- a/src/views.cpp +++ b/src/views.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: views.cpp,v 1.144 2001/03/30 19:25:00 kevin Exp $ +** $Id: views.cpp,v 1.145 2001/03/30 21:01:15 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -228,7 +228,7 @@ EVT_MENU(IFMENU_IMAGE_SUBTRACT, ImageFileView::OnSubtract) EVT_MENU(IFMENU_IMAGE_MULTIPLY, ImageFileView::OnMultiply) EVT_MENU(IFMENU_IMAGE_DIVIDE, ImageFileView::OnDivide) EVT_MENU(IFMENU_IMAGE_SCALESIZE, ImageFileView::OnScaleSize) -#ifdef wxUSE_GLCANVAS +#if wxUSE_GLCANVAS EVT_MENU(IFMENU_IMAGE_CONVERT3D, ImageFileView::OnConvert3d) #endif #ifdef HAVE_FFT @@ -1007,7 +1007,7 @@ ImageFileView::CreateChildFrame(wxDocument *doc, wxView *view) accelEntries[iEntry++].Set (wxACCEL_CTRL, static_cast('2'), IFMENU_FILTER_FFT); accelEntries[iEntry++].Set (wxACCEL_ALT, static_cast('2'), IFMENU_FILTER_IFFT); #endif -#ifdef wxUSE_GLCANVAS +#if wxUSE_GLCANVAS accelEntries[iEntry++].Set (wxACCEL_CTRL, static_cast('3'), IFMENU_IMAGE_CONVERT3D); #endif wxAcceleratorTable accelTable (iEntry, accelEntries); diff --git a/src/views.h b/src/views.h index 058cb8b..01f8945 100644 --- a/src/views.h +++ b/src/views.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: views.h,v 1.54 2001/03/30 19:31:17 kevin Exp $ +** $Id: views.h,v 1.55 2001/03/30 21:01:15 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -115,7 +115,7 @@ public: void OnInverseFourier (wxCommandEvent& event); void OnShuffleNaturalToFourierOrder (wxCommandEvent& event); void OnShuffleFourierToNaturalOrder (wxCommandEvent& event); -#ifdef wxUSE_GLCANVAS +#if wxUSE_GLCANVAS void OnConvert3d (wxCommandEvent& event); #endif -- 2.34.1