-
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.
Adapting Rubens custom macros for Run3 geometry simulations
- probably not the nicest solution but closest to what Ruben proposed in custom macros - additionally adding a first generator macro with HIJING + QED electrons
- Loading branch information
1 parent
be6382a
commit 9eb943f
Showing
8 changed files
with
601 additions
and
5 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
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,21 @@ | ||
AliGenerator * | ||
GeneratorCustom(TString opt = "") | ||
{ | ||
|
||
//----------------------------------------------- | ||
// Cocktail | ||
AliGenCocktail *ctl = GeneratorCocktail("Run3_Generators_HIJING_with_QED"); | ||
|
||
//----------------------------------------------- | ||
// HIJING | ||
AliGenerator *hij = GeneratorHijing(); | ||
ctl->AddGenerator(hij,"Hijing",1); | ||
|
||
//----------------------------------------------- | ||
// QED electrons (numbers to be fixed) | ||
AliGenerator *qed = GeneratorQED(); | ||
ctl->AddGenerator(qed,"QED",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
Oops, something went wrong.