Skip to content

Commit 28f0599

Browse files
jackal1-66sawenzel
authored andcommitted
Fix Pythia8 CI testing
The Pythia8() function exists already in the Pythia namespace loaded with ROOT, so when executing the macro a function redefinition error was thrown. By replacing the name to pythia8() the problem is solved.
1 parent 2e31d1b commit 28f0599

17 files changed

+20
-20
lines changed

MC/config/ALICE3/ini/tests/pythia8_ArAr.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ int External() {
22
return 0;
33
}
44

5-
int Pythia8()
5+
int pythia8()
66
{
77
return External();
88
}

MC/config/ALICE3/ini/tests/pythia8_KrKr.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ int External() {
22
return 0;
33
}
44

5-
int Pythia8()
5+
int pythia8()
66
{
77
return External();
88
}

MC/config/ALICE3/ini/tests/pythia8_OO.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ int External() {
22
return 0;
33
}
44

5-
int Pythia8()
5+
int pythia8()
66
{
77
return External();
88
}

MC/config/ALICE3/ini/tests/pythia8_PbPb.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ int External() {
22
return 0;
33
}
44

5-
int Pythia8()
5+
int pythia8()
66
{
77
return External();
88
}

MC/config/ALICE3/ini/tests/pythia8_PbPb_536tev.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ int External() {
22
return 0;
33
}
44

5-
int Pythia8()
5+
int pythia8()
66
{
77
return External();
88
}

MC/config/ALICE3/ini/tests/pythia8_XeXe.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ int External() {
22
return 0;
33
}
44

5-
int Pythia8()
5+
int pythia8()
66
{
77
return External();
88
}

MC/config/ALICE3/ini/tests/pythia8_pp.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ int External() {
22
return 0;
33
}
44

5-
int Pythia8()
5+
int pythia8()
66
{
77
return External();
88
}

MC/config/ALICE3/ini/tests/pythia8_pp_136tev.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ int External() {
22
return 0;
33
}
44

5-
int Pythia8()
5+
int pythia8()
66
{
77
return External();
88
}

MC/config/ALICE3/ini/tests/pythia8_pp_hardQCD_136tev.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ int External() {
22
return 0;
33
}
44

5-
int Pythia8()
5+
int pythia8()
66
{
77
return External();
88
}

MC/config/ALICE3/ini/tests/pythia8_pp_hf_hardQCD_136tev.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ int External() {
22
return 0;
33
}
44

5-
int Pythia8()
5+
int pythia8()
66
{
77
return External();
88
}

0 commit comments

Comments
 (0)