r348: fix linefeed problem
[ctsim.git] / include / procsignal.h
index 7a3cb62fde6725b8221e01895e0a0da01d182129..a3b74402c9c6a62fcd3ffad605d2eacb991c6f78 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: procsignal.h,v 1.8 2000/12/16 06:12:47 kevin Exp $
+**  $Id: procsignal.h,v 1.12 2001/01/02 16:02:12 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
@@ -42,6 +42,9 @@
 class SignalFilter;
 class SGP;
 
+typedef std::complex<double> CTSimComplex;
+
+
 class ProcessSignal {
  public:
     static const int FILTER_METHOD_INVALID;
@@ -58,6 +61,11 @@ class ProcessSignal {
     static const int FILTER_GENERATION_DIRECT;
     static const int FILTER_GENERATION_INVERSE_FOURIER;
 
+    enum {
+      FORWARD = -1,
+      BACKWARD = 1,
+    };
+
     ProcessSignal (const char* szFilterName, const char* szFilterMethodName,double bw, double signalIncrement, int n, double param, const char* szDomainName, const char* szFilterGenerationName, const int zeropad = 0, const int preinterpolationFactor = 1, const int iTraceLevel = Trace::TRACE_NONE, int iGeometry = Scanner::GEOMETRY_PARALLEL, double dFocalLength = 1., SGP* pSGP = NULL);
 
     ~ProcessSignal();
@@ -99,10 +107,6 @@ class ProcessSignal {
     static void finiteFourierTransform (const std::complex<double> input[], double output[], const int n, const int direction);
 
 
-    static void shuffleNaturalToFourierOrder (double* pdVector, const int n);
-
-    static void shuffleFourierToNaturalOrder (double* pdVector, const int n);
-
  private:
         std::string m_nameFilterMethod;
         std::string m_nameFilterGeneration;