Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jesgum authored and sawenzel committed May 6, 2024
1 parent 81d8c70 commit e23d5aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MC/config/ALICE3/pythia8/generator_pythia8_ALICE3.C
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public:
char* alien_proc_id = getenv("ALIEN_PROC_ID");
int seed;

if (job_id != NULL) {
if (alien_proc_id != NULL) {
LOG(info) << "Seed set to ALIEN_PROC_ID: " << seed;
seed = atoi(job_id);
seed = atoi(alien_proc_id);
} else {
LOG(info) << "Unable to retrieve ALIEN_PROC_ID";
LOG(info) << "Setting seed to 0 (random)";
Expand Down

0 comments on commit e23d5aa

Please sign in to comment.