Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef TARGET_H_
00009 #define TARGET_H_
00010
00011 #include "utilities.h"
00012 #include "MapDepthMatrix.h"
00013 #include "BaseDirectory.h"
00014
00015 void newTarget(MATRIX f, int N, int Ny, int Nz, BaseDirectory *baseDir, BOOLEAN debug,
00016 BOOLEAN useFourierTransform);
00017
00018
00019 void resetTarget(double sigmah, int sigmaStep);
00020
00021 MAP_DEPTH_MATRIX *getTarget();
00022
00023 void readTarget(char *inputFilename, int N, int Ny, int Nz, double sigmaCurrentValue,
00024 double sigmaCurrentStep, BaseDirectory *baseDir, BOOLEAN debug,
00025 BOOLEAN useFourierTransform);
00026
00027 void freeTarget();
00028
00029 #endif