-
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 #8 from dbobulsk/master
New PWGLF generator Epos_Nuclex005
- Loading branch information
1 parent
2cd1f04
commit 066d9e8
Showing
2 changed files
with
14 additions
and
1 deletion.
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,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; | ||
} |
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