Skip to content

Commit ae390df

Browse files
committed
Rename runtest.sh to run_analysis.sh
1 parent 24e7da6 commit ae390df

13 files changed

Lines changed: 14 additions & 14 deletions

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The validation framework is a general configurable platform that gives user the
3838
Its flexibility is enabled by strict separation of its specialised components into a system of Bash scripts.
3939
Configuration is separate from execution code, input configuration is separate from task configuration, execution steps are separate from the main steering code.
4040

41-
* The steering script [`runtest.sh`](exec/runtest.sh) provides control parameters and interface to the machinery for task execution.
41+
* The steering script [`run_analysis.sh`](exec/run_analysis.sh) provides control parameters and interface to the machinery for task execution.
4242
* User provides configuration Bash scripts which:
4343
* modify control parameters,
4444
* produce modified configuration files,
@@ -50,7 +50,7 @@ Execution code can be found in the [`exec`](exec) directory.
5050

5151
**The user should not touch anything in this directory!**
5252

53-
The steering script [`runtest.sh`](exec/runtest.sh) performs the following execution steps:
53+
The steering script [`run_analysis.sh`](exec/run_analysis.sh) performs the following execution steps:
5454

5555
* Load input specification.
5656
* Load tasks configuration.
@@ -85,10 +85,10 @@ All steps are activated by default and some can be disabled individually by sett
8585

8686
## Configuration
8787

88-
The steering script [`runtest.sh`](exec/runtest.sh) can be executed with the following optional arguments:
88+
The steering script [`run_analysis.sh`](exec/run_analysis.sh) can be executed with the following optional arguments:
8989

9090
```bash
91-
bash [<path>/]runtest.sh [-h] [-i <input-configuration>] [-t <task-configuration>] [-d]
91+
bash [<path>/]run_analysis.sh [-h] [-i <input-configuration>] [-t <task-configuration>] [-d]
9292
```
9393

9494
`<input-configuration>` Input specification script. See [Input specification](#input-specification).
@@ -227,7 +227,7 @@ Now you are ready to run the validation code.
227227
**Make sure that your Bash environment is clean!
228228
Do not load ROOT, AliPhysics, O<sup>2</sup>, O<sup>2</sup>Physics or any other aliBuild package environment before running the framework!**
229229

230-
Enter any directory and execute the steering script `runtest.sh`.
230+
Enter any directory and execute the steering script `run_analysis.sh`.
231231
(You can create a symlink for convenience.)
232232
All the processing will take place in the current directory.
233233

codeHF/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ You can use the [`download_from_grid.sh`](../exec/download_from_grid.sh) script
4545
Enter the `codeHF` directory and execute the steering script:
4646

4747
```bash
48-
bash runtest.sh
48+
bash run_analysis.sh
4949
```
5050

5151
The postprocessing step produces several plots `comparison_histos_(...).pdf`, `MC_(...).pdf`.

codeHF/config_input.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# shellcheck disable=SC2034 # Ignore unused parameters.
33

4-
# Input specification for runtest.sh
4+
# Input specification for run_analysis.sh
55
# (Modifies input parameters.)
66

77
INPUT_CASE=2 # Input case

codeHF/config_tasks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# shellcheck disable=SC2034 # Ignore unused parameters.
33

4-
# Configuration of tasks for runtest.sh
4+
# Configuration of tasks for run_analysis.sh
55
# (Cleans directory, modifies step activation, modifies JSON, generates step scripts.)
66

77
# Mandatory functions:

codeHF/run_analysis.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../exec/run_analysis.sh

codeHF/runtest.sh

Lines changed: 0 additions & 1 deletion
This file was deleted.

codeJE/config_input.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# shellcheck disable=SC2034 # Ignore unused parameters.
33

4-
# Input specification for runtest.sh
4+
# Input specification for run_analysis.sh
55
# (Modifies input parameters.)
66

77
INPUT_CASE=2 # Input case

codeJE/config_tasks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# shellcheck disable=SC2034 # Ignore unused parameters.
33

4-
# Configuration of tasks for runtest.sh
4+
# Configuration of tasks for run_analysis.sh
55
# (Cleans directory, modifies step activation, modifies JSON, generates step scripts.)
66

77
# Mandatory functions:

codeJE/run_analysis.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../exec/run_analysis.sh

codeJE/runtest.sh

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)