fixed: plot does not display on Windows at program launch (troubleshooting issue 1)
[hooke.git] / hemingclamp.py
index 881a789d244d62065b0e7c54ffb0d58f0bf124f3..e2f2e1c2ebaee147cf0500b020c3750be382a920 100755 (executable)
@@ -18,17 +18,6 @@ __changelog__='''
 import string
 import libhookecurve as lhc 
 
-def hemingclamp_magic(filepath):
-    '''
-    we define our magic heuristic for HemingClamp files
-    '''
-    myfile=file(filepath)
-    headerlines=myfile.readlines()[0:3]
-    if headerlines[0][0:10]=='#Hemingway' and headerlines[1][0:19]=='#Experiment: FClamp':
-        return True
-    else:
-        return False
-
 class DataChunk(list):
     '''Dummy class to provide ext and ret methods to the data list.
     In this case ext and self can be equal.