Skip to content

Commit

Permalink
fix: Workaround Pythia8 race condition in ttbar physmon
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Dec 7, 2024
1 parent 5e8efd6 commit a6c7559
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CI/physmon/workflows/physmon_trackfinding_ttbar_pu200.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@


with tempfile.TemporaryDirectory() as temp:
# Running with a single thread to avoid rance conditions with Pythia8, see https://github.com/acts-project/acts/issues/3963
s = acts.examples.Sequencer(
events=3,
numThreads=-1,
numThreads=1, # run with single thread
logLevel=acts.logging.INFO,
)

Expand Down

0 comments on commit a6c7559

Please sign in to comment.