Salome HOME
Porting ParaVis presentations to ParaView-5.0.0
[modules/paravis.git] / test / demo0.py
index 23d2578e40275c97561686ad8ee328b61a613af8..c02c5c8a48d6f40d7dc4381555e4b60e3484e8d4 100755 (executable)
@@ -1,4 +1,4 @@
-# Copyright (C) 2010-2014  CEA/DEN, EDF R&D
+# Copyright (C) 2010-2015  CEA/DEN, EDF R&D
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -24,7 +24,7 @@ rate achieved in triangles/sec. """
 if not ('servermanager' in dir()):
   from pvsimple import *
 
-import time, sys, os
+import time, sys, os, inspect
 
 def render(ss, v, title, nframes):
   print '============================================================'
@@ -151,8 +151,10 @@ def run(filesour, impth, nframes):
     print >>f, '"%s", %g, %g' % (i[0], i[1][1], i[2][1])  
 
 
-testdir = os.getenv("TESTDIR")
-pvdata = os.getenv("PVDATA")
+
+scriptdir = inspect.getframeinfo(inspect.currentframe())[0]
+testdir = os.path.dirname( os.path.abspath(scriptdir) )
+
 
 if __name__ == "__main__":
   run(filesour=testdir + "/Pic/Information.txt", impth=testdir + "/Pic/", nframes=10)