Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_ArAr.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_KrKr.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_OO.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_PbPb.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_PbPb_536tev.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_XeXe.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_pp.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_pp_136tev.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_pp_hardQCD_136tev.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_pp_ropes.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_pp_ropes_136tev.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_pp_shoving.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion MC/config/ALICE3/ini/tests/pythia8_pp_shoving_136tev.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ int External() {
return 0;
}

int Pythia8()
int pythia8()
{
return External();
}
8 changes: 4 additions & 4 deletions MC/config/PWGEM/ini/tests/pythia8_OO_536_VM2ll.C
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ int External() {
return 0;
}

//int Pythia8()
//{
// return External();
//}
int pythia8()
{
return External();
}
2 changes: 1 addition & 1 deletion test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Whenever an `ini` file is detedcted to be tested, a test macro is required to be
```
Note, that `run_tests.sh` will automatically detect all generators used in an `ini`. For at least one generator defined in the `ini` file there must be a test. Each test is defined as a function in the `<name-of-ini-file>.C` macro. Assuming you want to test `External` and `Pythia8` generator, the macro should look like
```cpp
int Pythia8()
int pythia8()
{
// do your test
return ret;
Expand Down
2 changes: 1 addition & 1 deletion test/run_generator_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export ROOT_INCLUDE_PATH LD_LIBRARY_PATH
# Entrypoint for O2DPG related tests #
######################################

CHECK_GENERATORS="Pythia8 External"
CHECK_GENERATORS="pythia8 External"

# The test parent dir to be cretaed in current directory
TEST_PARENT_DIR="o2dpg_tests/generators"
Expand Down