-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from mpuccio/master
EPOS generator with injected (anti-)(hyper-)nuclei
- Loading branch information
1 parent
a6c43ec
commit b4f9b62
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |