aboutsummaryrefslogtreecommitdiff
path: root/src/survive_cal_lhfind.c
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2017-02-21 02:54:42 -0500
committercnlohr <lohr85@gmail.com>2017-02-21 02:54:42 -0500
commit93873b616394b24fefb0ce17ae0e302ff2697d14 (patch)
treec46b611823918023655502474294cc2325aa1c38 /src/survive_cal_lhfind.c
parent5a11716edeb85bc01c38bfc4ce174d101cac0a06 (diff)
downloadlibsurvive-93873b616394b24fefb0ce17ae0e302ff2697d14.tar.gz
libsurvive-93873b616394b24fefb0ce17ae0e302ff2697d14.tar.bz2
making progress
Diffstat (limited to 'src/survive_cal_lhfind.c')
-rw-r--r--src/survive_cal_lhfind.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/survive_cal_lhfind.c b/src/survive_cal_lhfind.c
new file mode 100644
index 0000000..d879f30
--- /dev/null
+++ b/src/survive_cal_lhfind.c
@@ -0,0 +1,22 @@
+#include "survive_cal.h"
+
+//Stub file for doing lhfind (this doesn't work)
+
+//Return
+int survive_cal_lhfind( struct SurviveCalData * cd )
+{
+ struct SurviveContext * ctx = cd->ctx;
+
+ //Use the following:
+ // FLT avgsweeps[MAX_CAL_PT_DAT];
+ // FLT avglens[MAX_CAL_PT_DAT];
+ // FLT stdsweeps[MAX_CAL_PT_DAT];
+ // FLT stdlens[MAX_CAL_PT_DAT];
+ // int ctsweeps[MAX_CAL_PT_DAT];
+ //
+ // Check your solution against point: senid_of_checkpt's data.
+
+ return -1; //Return 0 if success.
+}
+
+