From 86eb4fbde242d5ae1d2946149b1133cbd2cb3889 Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Sun, 17 Mar 2013 22:24:06 +0000
Subject: [PATCH] Cleaned up the different example files to keep only the
 relevant ones, i.e. the ones that can be read by the current code. All the
 ASCII inputs have disappeared.

Former-commit-id: 2032a2c03d0cb992c590e3a2ccc3f37fb37a8c90
---
 examples/{scaling => cosmoVolume}/extract.m          | 0
 examples/data2/Coordinates.txt.gz.REMOVED.git-id     | 1 -
 examples/data2/Density.txt.gz.REMOVED.git-id         | 1 -
 examples/data2/SmoothingLength.txt.gz.REMOVED.git-id | 1 -
 examples/test.c                                      | 4 ++--
 5 files changed, 2 insertions(+), 5 deletions(-)
 rename examples/{scaling => cosmoVolume}/extract.m (100%)
 delete mode 100644 examples/data2/Coordinates.txt.gz.REMOVED.git-id
 delete mode 100644 examples/data2/Density.txt.gz.REMOVED.git-id
 delete mode 100644 examples/data2/SmoothingLength.txt.gz.REMOVED.git-id

diff --git a/examples/scaling/extract.m b/examples/cosmoVolume/extract.m
similarity index 100%
rename from examples/scaling/extract.m
rename to examples/cosmoVolume/extract.m
diff --git a/examples/data2/Coordinates.txt.gz.REMOVED.git-id b/examples/data2/Coordinates.txt.gz.REMOVED.git-id
deleted file mode 100644
index 542d7e127c..0000000000
--- a/examples/data2/Coordinates.txt.gz.REMOVED.git-id
+++ /dev/null
@@ -1 +0,0 @@
-7b32ecb33e483c97306ab18e7320bd19c7b53bd9
\ No newline at end of file
diff --git a/examples/data2/Density.txt.gz.REMOVED.git-id b/examples/data2/Density.txt.gz.REMOVED.git-id
deleted file mode 100644
index 2451b071eb..0000000000
--- a/examples/data2/Density.txt.gz.REMOVED.git-id
+++ /dev/null
@@ -1 +0,0 @@
-b1c0bf39f7524d710aadd9d091ca97482fbf4622
\ No newline at end of file
diff --git a/examples/data2/SmoothingLength.txt.gz.REMOVED.git-id b/examples/data2/SmoothingLength.txt.gz.REMOVED.git-id
deleted file mode 100644
index 299f5acb2f..0000000000
--- a/examples/data2/SmoothingLength.txt.gz.REMOVED.git-id
+++ /dev/null
@@ -1 +0,0 @@
-89e90798b0da8cf00c35bc76c16c65b229ed249e
\ No newline at end of file
diff --git a/examples/test.c b/examples/test.c
index 9adf85d901..d928bb55b3 100644
--- a/examples/test.c
+++ b/examples/test.c
@@ -976,13 +976,13 @@ int main ( int argc , char *argv[] ) {
         p = &s.parts[0];
         space_map_parts( &s , &map_h_min , &p );
         printf( "main: particle %lli/%i at [ %e %e %e ] has minimum h=%.3e (h_dt=%.3e).\n" ,
-	        p->id , (int)(p - s.parts) , p->x[0] , p->x[1] , p->x[2] , p->h , p->h_dt );
+	        p->id , (int)(p - s.parts) , p->x[0] , p->x[1] , p->x[2] , p->h , p->force.h_dt );
 
         /* Get the particle with the highest h. */
         p = &s.parts[0];
         space_map_parts( &s , &map_h_max , &p );
         printf( "main: particle %lli/%i at [ %e %e %e ] has maximum h=%.3e (h_dt=%.3e).\n" ,
-	        p->id , (int)(p - s.parts) , p->x[0] , p->x[1] , p->x[2] , p->h , p->h_dt );
+	        p->id , (int)(p - s.parts) , p->x[0] , p->x[1] , p->x[2] , p->h , p->force.h_dt );
     
         /* Output. */
         #ifdef TIMER
-- 
GitLab