Skip to content

Commit

Permalink
Merge pull request #10 from mpuccio/master
Browse files Browse the repository at this point in the history
EPOS generator with injected (anti-)(hyper-)nuclei
  • Loading branch information
preghenella committed Apr 6, 2017
1 parent a6c43ec commit b4f9b62
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions MC/CustomGenerators/PWGLF/Epos_Nuclex001.C
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
AliGenerator *
GeneratorCustom()
{
AliGenCocktail *ctl = GeneratorCocktail("Epos_Nuclex001");
AliGenerator *epos = GeneratorEPOSLHC();
ctl->AddGenerator(epos, "EPOSLHC", 1.);
AliGenerator *nu1a = Generator_Nuclex(0xF, kFALSE, 10);
AliGenerator *nu1b = Generator_Nuclex(0xF, kTRUE, 10);
AliGenerator *nu2a = Generator_Nuclex(0x10, kFALSE, 20);
AliGenerator *nu2b = Generator_Nuclex(0x10, kTRUE, 20);
ctl->AddGenerator(nu1a, "Nuclex1a", 1.);
ctl->AddGenerator(nu1b, "Nuclex1b", 1.);
ctl->AddGenerator(nu2a, "Nuclex2a", 1.);
ctl->AddGenerator(nu2b, "Nuclex2b", 1.);
return ctl;
}

0 comments on commit b4f9b62

Please sign in to comment.