Skip to content

Commit

Permalink
Fixed issue in uid use for xi PDG code sign
Browse files Browse the repository at this point in the history
  • Loading branch information
bianchil authored and gconesab committed Aug 9, 2022
1 parent b671005 commit 959cd75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MC/CustomGenerators/PWGLF/StrPDF_pythia8_pp5.C
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
AliGenerator *GeneratorCustom(){

Int_t inj_config = uidConfig % 7;
Int_t inj_sign = uidConfig % 2;
Int_t inj_sign = (uidConfig%2)? 1 : -1 ;

const int dim = 7; //nijection required
Int_t k0s_array[dim] = {4,5,6,7,8,9,10}; //index: npart injected
Expand Down

0 comments on commit 959cd75

Please sign in to comment.