diff --git a/README.md b/README.md
index 13c38734102c7b2ac6e09028578afdb22a0b546b..b11889c11d5ad88e240692ead2472996a8cf0ae2 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ guidelines](https://gitlab.iap.kit.edu/AirShowerPhysics/corsika/blob/master/MCNE
 
 
 ## Get in contact
-  * Connect to https://gitlab.iap.kit.edu register yourself and join the "Air Shower Physics" group. Write to me (ralf.ulrich@kit.edu) only in case there are problems with that. 
+  * Connect to https://gitlab.iap.kit.edu register yourself and join the "Air Shower Physics" group. Write to one of the steering comittee members (https://gitlab.iap.kit.edu/AirShowerPhysics/corsika/-/wikis/Steering-Committee) in case there are problems with that. 
   * Connect to corsika-devel@lists.kit.edu (self-register at
     https://www.lists.kit.edu/sympa/subscribe/corsika-devel) to get in
     touch with the project.
@@ -52,7 +52,7 @@ guidelines](https://gitlab.iap.kit.edu/AirShowerPhysics/corsika/blob/master/MCNE
 
 ## Installation
 
-CORSIKA 8 is tested regularly at least on gcc7.3.0 and clang-8.0.0. 
+CORSIKA 8 is tested regularly at least on gcc11.0.0 and clang-14.0.0. 
 
 ### Prerequisites
 
@@ -135,6 +135,9 @@ must first compile it wrt. to the CORSIKA 8 header-only framework.  This
 can be done best by copying
 e.g. `corsika-install/share/corsika/examples/` to your working place
 (e.g. `corsika-work`). 
+```shell
+cd corsika-work
+```
 
 Next, you need to define the environment variable `corsika_DIR` to point to, either, 
 your build, or your install area. Thus, e.g. 
@@ -142,26 +145,17 @@ your build, or your install area. Thus, e.g.
 export corsika_DIR=<dir where you installed CORSIKA 8 to, or where you build it>
 ```
 
+You also need to define the environment variable `CORSIKA_DATA` to point to your modules/data folder where you cloned the corsika repository. Thus, e.g.
+```shell
+export CORSIKA_DATA=<modules/data dir where you cloned CORSIKA 8 to>
+```
 Then compile your example/application with
 ```shell
-cd corsika-work
 cmake .
 make
 bin/cascade_example 
 ```
 
-Visualize output (needs gnuplot installed): 
-```shell
-bash $corsika_DIR/share/corsika/tools/plot_tracks.sh tracks.dat 
-firefox tracks.dat.gif 
-```
-(note, if you use the corsika_DIR to point to the build area: the script `plot_tracks.sh` is 
-not copied to the build area, it is only part of the source tree at `tools/plot_tracks.sh`)
-
-Or also consider the `vertical_EAS` example in the same directory,
-which can be configured with command line options. 
-Run `bin/vertical_EAS` to get basic help.
-
 
 ### Generating doxygen documentation
 
diff --git a/README.rst b/README.rst
index daedb80268931df43fae7a79d11753af5980cdff..81c98d9ec47d3f76797da11d03278d23601b64a6 100644
--- a/README.rst
+++ b/README.rst
@@ -46,7 +46,7 @@ which are very useful also for us.
 
 Get in contact
 --------------
-  * Connect to https://gitlab.iap.kit.edu register yourself and join the "Air Shower Physics" group. Write to me (ralf.ulrich@kit.edu) only in case there are problems with that. 
+  * Connect to https://gitlab.iap.kit.edu register yourself and join the "Air Shower Physics" group. Write to one of the steering comittee members (https://gitlab.iap.kit.edu/AirShowerPhysics/corsika/-/wikis/Steering-Committee) in case there are problems with that.
   * Connect to corsika-devel@lists.kit.edu (self-register at
     https://www.lists.kit.edu/sympa/subscribe/corsika-devel) to get in
     touch with the project.
@@ -56,7 +56,7 @@ Get in contact
 
 Installation
 ------------
-CORSIKA 8 is tested regularly at least on gcc7.3.0 and clang-8.0.0. 
+CORSIKA 8 is tested regularly at least on gcc11.0.0 and clang-14.0.0.
 
 Prerequisites
 ~~~~~~~~~~~~~
@@ -144,7 +144,10 @@ To run the cascade_example, or any other CORSIKA 8 application, you
 must first compile it wrt. to the CORSIKA 8 header-only framework.  This
 can be done best by copying
 e.g. :code:`corsika-install/share/corsika/examples/` to your working place
-(e.g. :code:`corsika-work`). 
+(e.g. :code:`corsika-work`).
+::
+
+  cd corsika-work
 
 Next, you need to define the environment variable :code:`corsika_DIR` to point to, either, 
 your build, or your install area. Thus, e.g. 
@@ -152,26 +155,18 @@ your build, or your install area. Thus, e.g.
    
   export corsika_DIR=<dir where you installed CORSIKA 8 to, or where you build it>
 
-Then compile your example/application with
+You also need to define the environment variable :code:`CORSIKA_DATA` to point to your modules/data folder where you cloned the corsika repository. Thus, e.g.
 ::
-   
-  cd corsika-work
-  cmake .
-  make
-  bin/cascade_example 
 
-Visualize output (needs gnuplot installed): 
+  export CORSIKA_DATA=<modules/data dir where you cloned CORSIKA 8 to>
+
+
+Then compile your example/application with
 ::
-   
-  bash $corsika_DIR/share/corsika/tools/plot_tracks.sh tracks.dat 
-  firefox tracks.dat.gif
-  
-(note, if you use the corsika_DIR to point to the build area: the script :code:`plot_tracks.sh` is 
-not copied to the build area, it is only part of the source tree at :code:`tools/plot_tracks.sh`)
 
-Or also consider the :code:`vertical_EAS` example in the same directory,
-which can be configured with command line options. 
-Run :code:`bin/vertical_EAS` to get basic help.
+  cmake .
+  make
+  bin/cascade_example
 
 
 Generating doxygen documentation