Scale of axis are now in engineering format.
[hooke.git] / mcs.py
diff --git a/mcs.py b/mcs.py
index 7ddd8929e2dfbef0d813a3cabe1a55dbe4c92599..711e8c359625e646ca8225b8476634695810fc35 100644 (file)
--- a/mcs.py
+++ b/mcs.py
@@ -20,7 +20,7 @@ class mcsDriver(lhc.Driver):
         '''
         #obtain name of blue files
         othername=filename
-        if othername[-8]=='a':
+        if othername[-8]=='a': #fixme: how to make it general? (maybe should not be in driverspace but in environment...)
             oth=list(othername)
             oth[-8]='d'
             othername=''.join(oth)
@@ -41,7 +41,7 @@ class mcsDriver(lhc.Driver):
         self.experiment = 'smfluo'
         
     def is_me(self):
-        if self.filename[-3:]=='mcs':
+        if self.filename[-3:].lower()=='mcs':
             return True
         else:
             return False