[cig-commits] r13417 - in seismo/3D/SPECFEM3D_GLOBE/branches/pluggable/MODELS/harness: . chino

leif at geodynamics.org leif at geodynamics.org
Wed Nov 26 17:41:07 PST 2008


Author: leif
Date: 2008-11-26 17:41:07 -0800 (Wed, 26 Nov 2008)
New Revision: 13417

Modified:
   seismo/3D/SPECFEM3D_GLOBE/branches/pluggable/MODELS/harness/chino/template.py
   seismo/3D/SPECFEM3D_GLOBE/branches/pluggable/MODELS/harness/setup.py
Log:
Install template files.


Modified: seismo/3D/SPECFEM3D_GLOBE/branches/pluggable/MODELS/harness/chino/template.py
===================================================================
--- seismo/3D/SPECFEM3D_GLOBE/branches/pluggable/MODELS/harness/chino/template.py	2008-11-27 01:13:30 UTC (rev 13416)
+++ seismo/3D/SPECFEM3D_GLOBE/branches/pluggable/MODELS/harness/chino/template.py	2008-11-27 01:41:07 UTC (rev 13417)
@@ -1,4 +1,10 @@
 
+templateFiles = [
+    "blank/1D_ref/my_1D_ref_model.f90",
+    "blank/crust/my_crustal_model.f90",
+    "blank/my_mantle_model.f90",
+    ]
+
 def copyTemplate(name):
     from shutil import copytree
     from os.path import dirname, join

Modified: seismo/3D/SPECFEM3D_GLOBE/branches/pluggable/MODELS/harness/setup.py
===================================================================
--- seismo/3D/SPECFEM3D_GLOBE/branches/pluggable/MODELS/harness/setup.py	2008-11-27 01:13:30 UTC (rev 13416)
+++ seismo/3D/SPECFEM3D_GLOBE/branches/pluggable/MODELS/harness/setup.py	2008-11-27 01:41:07 UTC (rev 13417)
@@ -2,9 +2,11 @@
 from distutils.core import setup
 
 from chino.harness import harnessSourceFiles, harnessHeaderFiles
+from chino.template import templateFiles
 data = []
 data.extend(harnessSourceFiles)
 data.extend(harnessHeaderFiles)
+data.extend(templateFiles)
 
 setup(
     name = 'chino', 



More information about the CIG-COMMITS mailing list