-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extend HF ccbar embedding becnhmark to bbbar as well
- Loading branch information
1 parent
dcabe31
commit bcd2f4c
Showing
5 changed files
with
117 additions
and
11 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
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,34 @@ | ||
### The setup uses an external event generator | ||
### This part sets the path of the file and the function call to retrieve it | ||
|
||
[GeneratorExternal] | ||
fileName = ${O2DPG_ROOT}/MC/config/PWGHF/external/generator/GeneratorHF.C | ||
funcName = GeneratorHF_bbar() | ||
|
||
### The external generator derives from GeneratorPythia8. | ||
### This part configures the bits of the interface: configuration and user hooks | ||
|
||
[GeneratorPythia8] | ||
config = ${O2DPG_ROOT}/MC/config/common/pythia8/generator/pythia8.cfg | ||
hooksFileName = ${O2DPG_ROOT}/MC/config/PWGHF/pythia8/hooks/pythia8_userhooks_qqbar.C | ||
hooksFuncName = pythia8_userhooks_bbbar(1.5) | ||
|
||
### The setup uses the base configuration of the decayer which is loaded from the file specified by config[0]. | ||
### On top of the base configuration, two more sets of settings are loaded sequentially from config[1] and [2]. | ||
|
||
[DecayerPythia8] | ||
config[0] = ${O2DPG_ROOT}/MC/config/common/pythia8/decayer/base.cfg | ||
config[1] = ${O2DPG_ROOT}/MC/config/PWGHF/pythia8/decayer/force_hadronic_D.cfg | ||
config[2] = ${O2DPG_ROOT}/MC/config/PWGHF/pythia8/decayer/force_hadronic_D_use4bodies.cfg | ||
|
||
### The setup forces some particles to be decayed by the external decayer instead of Geant. | ||
### The PDG list of the particles is specified below. | ||
|
||
[SimUserDecay] | ||
pdglist = 411 421 431 4112 4122 4232 4132 | ||
|
||
### The setup inhibits transport of primary particles which are produce at forward rapidity. | ||
### The settings below only transports particles in the barrel, which is currently defined as |eta| < 2 | ||
|
||
[Stack] | ||
transportPrimary = barrel |
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,34 @@ | ||
### The setup uses an external event generator | ||
### This part sets the path of the file and the function call to retrieve it | ||
|
||
[GeneratorExternal] | ||
fileName = ${O2DPG_ROOT}/MC/config/PWGHF/external/generator/GeneratorHF.C | ||
funcName = GeneratorHF_ccbar() | ||
|
||
### The external generator derives from GeneratorPythia8. | ||
### This part configures the bits of the interface: configuration and user hooks | ||
|
||
[GeneratorPythia8] | ||
config = ${O2DPG_ROOT}/MC/config/common/pythia8/generator/pythia8.cfg | ||
hooksFileName = ${O2DPG_ROOT}/MC/config/PWGHF/pythia8/hooks/pythia8_userhooks_qqbar.C | ||
hooksFuncName = pythia8_userhooks_ccbar(1.5) | ||
|
||
### The setup uses the base configuration of the decayer which is loaded from the file specified by config[0]. | ||
### On top of the base configuration, two more sets of settings are loaded sequentially from config[1] and [2]. | ||
|
||
[DecayerPythia8] | ||
config[0] = ${O2DPG_ROOT}/MC/config/common/pythia8/decayer/base.cfg | ||
config[1] = ${O2DPG_ROOT}/MC/config/PWGHF/pythia8/decayer/force_hadronic_D.cfg | ||
config[2] = ${O2DPG_ROOT}/MC/config/PWGHF/pythia8/decayer/force_hadronic_D_use4bodies.cfg | ||
|
||
### The setup forces some particles to be decayed by the external decayer instead of Geant. | ||
### The PDG list of the particles is specified below. | ||
|
||
[SimUserDecay] | ||
pdglist = 411 421 431 4112 4122 4232 4132 | ||
|
||
### The setup inhibits transport of primary particles which are produce at forward rapidity. | ||
### The settings below only transports particles in the barrel, which is currently defined as |eta| < 2 | ||
|
||
[Stack] | ||
transportPrimary = barrel |
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