From cd6993db2a1906750a1cd88c8c939c35069aead4 Mon Sep 17 00:00:00 2001 From: daniel peter Date: Thu, 18 Jun 2015 08:38:56 +0200 Subject: [PATCH] moves files to doc/ and utils/ to clean up root directory --- ...is_comments_on_the_adjoint_tomography_workflow_dec2014.txt | 0 ...nts_on_the_current_adjoint_tomography_workflow_dec2014.txt | 0 .../list_for_Zhinan_for_SPECFEM3D_PMLs.txt | 0 run_default_example_external_mesh.sh | 1 + run_default_example_internal_mesher.sh | 1 + .../replace_use_mpi_with_include_mpif_dot_h.pl | 4 ++-- 6 files changed, 4 insertions(+), 2 deletions(-) rename Carl_Tape_his_comments_on_the_adjoint_tomography_workflow_dec2014.txt => doc/Carl_Tape_his_comments_on_the_adjoint_tomography_workflow_dec2014.txt (100%) rename Daniel_Peter_his_comments_on_the_current_adjoint_tomography_workflow_dec2014.txt => doc/Daniel_Peter_his_comments_on_the_current_adjoint_tomography_workflow_dec2014.txt (100%) rename list_for_Zhinan_for_SPECFEM3D_PMLs.txt => doc/list_for_Zhinan_for_SPECFEM3D_PMLs.txt (100%) rename replace_use_mpi_with_include_mpif_dot_h.pl => utils/replace_use_mpi_with_include_mpif_dot_h.pl (95%) diff --git a/Carl_Tape_his_comments_on_the_adjoint_tomography_workflow_dec2014.txt b/doc/Carl_Tape_his_comments_on_the_adjoint_tomography_workflow_dec2014.txt similarity index 100% rename from Carl_Tape_his_comments_on_the_adjoint_tomography_workflow_dec2014.txt rename to doc/Carl_Tape_his_comments_on_the_adjoint_tomography_workflow_dec2014.txt diff --git a/Daniel_Peter_his_comments_on_the_current_adjoint_tomography_workflow_dec2014.txt b/doc/Daniel_Peter_his_comments_on_the_current_adjoint_tomography_workflow_dec2014.txt similarity index 100% rename from Daniel_Peter_his_comments_on_the_current_adjoint_tomography_workflow_dec2014.txt rename to doc/Daniel_Peter_his_comments_on_the_current_adjoint_tomography_workflow_dec2014.txt diff --git a/list_for_Zhinan_for_SPECFEM3D_PMLs.txt b/doc/list_for_Zhinan_for_SPECFEM3D_PMLs.txt similarity index 100% rename from list_for_Zhinan_for_SPECFEM3D_PMLs.txt rename to doc/list_for_Zhinan_for_SPECFEM3D_PMLs.txt diff --git a/run_default_example_external_mesh.sh b/run_default_example_external_mesh.sh index ddef4ba63..067bd0d9a 100755 --- a/run_default_example_external_mesh.sh +++ b/run_default_example_external_mesh.sh @@ -11,6 +11,7 @@ NPROC=4 ################################################## +# setup default example rm -rf DATA ln -s examples/homogeneous_halfspace/DATA DATA diff --git a/run_default_example_internal_mesher.sh b/run_default_example_internal_mesher.sh index 63737d481..89a0015fb 100755 --- a/run_default_example_internal_mesher.sh +++ b/run_default_example_internal_mesher.sh @@ -11,6 +11,7 @@ NPROC=4 ################################################## +# setup default example rm -rf DATA ln -s examples/meshfem3D_examples/simple_model/DATA DATA diff --git a/replace_use_mpi_with_include_mpif_dot_h.pl b/utils/replace_use_mpi_with_include_mpif_dot_h.pl similarity index 95% rename from replace_use_mpi_with_include_mpif_dot_h.pl rename to utils/replace_use_mpi_with_include_mpif_dot_h.pl index 97f1dcc31..d88f807c7 100755 --- a/replace_use_mpi_with_include_mpif_dot_h.pl +++ b/utils/replace_use_mpi_with_include_mpif_dot_h.pl @@ -12,7 +12,7 @@ # first clean trailing white spaces in all f90 files in the src/ sub-directories # - @objects = `ls src/*/*.f90 src/*/*.F90`; + @objects = `ls ../src/*/*.f90 ../src/*/*.F90`; foreach $name (@objects) { chop $name; @@ -43,7 +43,7 @@ # then perform the replacement in all f90 and F90 files in the src/ sub-directories # - @objects = `ls src/*/*.f90 src/*/*.F90`; + @objects = `ls ../src/*/*.f90 ../src/*/*.F90`; foreach $name (@objects) { chop $name;