Skip to content

Commit 8c0b64a

Browse files
committed
test: use AnalysisEpicPodio in CI with production epic.unstable
1 parent 9feb02a commit 8c0b64a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,10 @@ jobs:
139139
matrix:
140140
include:
141141
# ePIC
142-
- { id: epic_arches, options: --version epic.22.11.3 --limit 20 --detector arches } # max limit=150
143-
- { id: epic_brycecanyon, options: --version epic.22.11.3 --limit 4 --detector brycecanyon } # max limit=35
144-
- { id: epic_arches_radcor, options: --version epic.22.11.3 --limit 20 --detector arches --radcor } # max limit=150
145-
- { id: epic_brycecanyon_radcor, options: --version epic.22.11.3 --limit 4 --detector brycecanyon --radcor } # max limit=35
142+
- { id: epic_arches, options: --version epic.unstable --limit 20 --detector arches } # max limit=150
143+
- { id: epic_brycecanyon, options: --version epic.unstable --limit 4 --detector brycecanyon } # max limit=35
144+
- { id: epic_arches_radcor, options: --version epic.unstable --limit 20 --detector arches --radcor } # max limit=150
145+
- { id: epic_brycecanyon_radcor, options: --version epic.unstable --limit 4 --detector brycecanyon --radcor } # max limit=35
146146
# ECCE / ATHENA
147147
- { id: ecce, options: --version ecce.22.1 --limit 40 } # max limit=375
148148
- { id: athena, options: --version athena.deathvalley-v1.0 --limit 20 } # max limit=500

macro/ci/analysis_p_eta.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ void analysis_p_eta(
1313

1414
// setup analysis ========================================
1515
Analysis *A;
16-
if (outfilePrefix.Contains("epic")) A = new AnalysisEpic( configFile, outfilePrefix );
16+
if (outfilePrefix.Contains("epic")) A = new AnalysisEpicPodio( configFile, outfilePrefix );
1717
else if(outfilePrefix.Contains("athena")) A = new AnalysisAthena( configFile, outfilePrefix );
1818
else if(outfilePrefix.Contains("ecce")) A = new AnalysisEcce( configFile, outfilePrefix );
1919
#ifndef EXCLUDE_DELPHES

macro/ci/analysis_single_bin.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ void analysis_single_bin(
1313

1414
// setup analysis ========================================
1515
Analysis *A;
16-
if (outfilePrefix.Contains("epic")) A = new AnalysisEpic( configFile, outfilePrefix );
16+
if (outfilePrefix.Contains("epic")) A = new AnalysisEpicPodio( configFile, outfilePrefix );
1717
else if(outfilePrefix.Contains("athena")) A = new AnalysisAthena( configFile, outfilePrefix );
1818
else if(outfilePrefix.Contains("ecce")) A = new AnalysisEcce( configFile, outfilePrefix );
1919
#ifndef EXCLUDE_DELPHES

macro/ci/analysis_x_q2.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ void analysis_x_q2(
1313

1414
// setup analysis ========================================
1515
Analysis *A;
16-
if (outfilePrefix.Contains("epic")) A = new AnalysisEpic( configFile, outfilePrefix );
16+
if (outfilePrefix.Contains("epic")) A = new AnalysisEpicPodio( configFile, outfilePrefix );
1717
else if(outfilePrefix.Contains("athena")) A = new AnalysisAthena( configFile, outfilePrefix );
1818
else if(outfilePrefix.Contains("ecce")) A = new AnalysisEcce( configFile, outfilePrefix );
1919
#ifndef EXCLUDE_DELPHES

macro/ci/analysis_yRatio.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ void analysis_yRatio(
1313

1414
// setup analysis ========================================
1515
Analysis *A;
16-
if (outfilePrefix.Contains("epic")) A = new AnalysisEpic( configFile, outfilePrefix );
16+
if (outfilePrefix.Contains("epic")) A = new AnalysisEpicPodio( configFile, outfilePrefix );
1717
else if(outfilePrefix.Contains("athena")) A = new AnalysisAthena( configFile, outfilePrefix );
1818
else if(outfilePrefix.Contains("ecce")) A = new AnalysisEcce( configFile, outfilePrefix );
1919
#ifndef EXCLUDE_DELPHES

0 commit comments

Comments
 (0)