From 7f64589f9f172b7965a086bcceed8c47a51daca7 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Mon, 15 Jul 2019 09:14:08 +0000 Subject: [PATCH] Add missing file --- trisurf/trisurf.py | 14 ++++++-------- 1 files changed, 6 insertions(+), 8 deletions(-) diff --git a/trisurf/trisurf.py b/trisurf/trisurf.py index 9245fb3..b80ba9d 100644 --- a/trisurf/trisurf.py +++ b/trisurf/trisurf.py @@ -20,6 +20,9 @@ TS_RUNNING=2 # process is running TS_COMPLETED=3 #simulation is completed +#namespace variable. Seems the best place to put the variable in :) +_analysis_list={} + class FileContent: ''' Class is helpful for reading and writting the specific files. @@ -462,12 +465,7 @@ def setMaindir(self,prefix,variables): maindir="" for p,v in zip(prefix,variables): - if(v=="xk0"): - tv=str(round(float(self.Tape.config[v]))) - if sys.version_info<(3,0): - tv=str(int(float(self.Tape.config[v]))) - else: - tv=self.Tape.config[v] + tv=str(self.Tape.config[v]) maindir=maindir+p+tv self.maindir=maindir return @@ -530,8 +528,8 @@ flist.append(file) flist.sort() if(len(flist)==0): - return -1 - else: + return(-1) + else: return(flist[-1]) def __str__(self): -- Gitblit v1.9.3