Skip to content

Commit

Permalink
Merge pull request #8 from dbobulsk/master
Browse files Browse the repository at this point in the history
New PWGLF generator Epos_Nuclex005
  • Loading branch information
preghenella committed Apr 6, 2017
1 parent 2cd1f04 commit 066d9e8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions MC/CustomGenerators/PWGLF/Epos_Nuclex005.C
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Requires AliRoot from v5-09-02
AliGenerator *
GeneratorCustom()
{
AliGenCocktail *ctl = GeneratorCocktail("Epos_Nuclex005");
AliGenerator *epos = GeneratorEPOSLHC();
ctl->AddGenerator(epos, "EPOSLHC", 1.);
AliGenerator *nu1a = Generator_Nuclex(0x70000, kFALSE, 10);
AliGenerator *nu1b = Generator_Nuclex(0x70000, kTRUE, 10);
ctl->AddGenerator(nu1a, "Nuclex1a", 1.);
ctl->AddGenerator(nu1b, "Nuclex1b", 1.);
return ctl;
}
2 changes: 1 addition & 1 deletion MC/GeneratorConfig.C
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ Generator_Nuclex(UInt_t injbit, Bool_t antiparticle, Int_t ninj)
"Hyper-Helium-4", // 0x8000
"Ps(2100)", // 0x10000
"Ps(2500)", // 0x20000
"d*(2380)" //0x4000
"d*(2380)" //0x40000
};

for (Int_t ipart = 0; ipart < 19; ipart++) {
Expand Down

0 comments on commit 066d9e8

Please sign in to comment.