-
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.
Add files to simulate bbtomuons without forcing semileptonic decay (#…
- Loading branch information
Showing
4 changed files
with
138 additions
and
2 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
23 changes: 23 additions & 0 deletions
23
MC/config/PWGDQ/ini/GeneratorHF_bbbarToDDbarToMuons_fwdy.ini
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,23 @@ | ||
|
||
### 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/PWGDQ/external/generator/GeneratorBeautyToMu_EvtGen.C | ||
funcName = GeneratorBeautyToMu_EvtGenFwdY(-4.3,-2.3,true,false) | ||
|
||
### 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_hf.cfg | ||
hooksFileName = ${O2DPG_ROOT}/MC/config/PWGHF/pythia8/hooks/pythia8_userhooks_qqbar.C | ||
hooksFuncName = pythia8_userhooks_bbbar(-4.3,-2.3) | ||
|
||
### The setup uses an external even generator trigger which is | ||
### defined in the following file and it is retrieved and configured | ||
### according to the specified function call | ||
|
||
[TriggerExternal] | ||
fileName = ${O2DPG_ROOT}/MC/config/PWGDQ/trigger/selectDaughterFromHFwithinAcc.C | ||
funcName = selectDaughterFromHFwithinAcc(13,kTRUE,-4.3,-2.3) |
85 changes: 85 additions & 0 deletions
85
MC/config/PWGDQ/ini/tests/GeneratorHF_bbbarToDDbarToMuons_fwdy.C
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,85 @@ | ||
int External() | ||
{ | ||
int checkPdgDecay = 13; | ||
std::string path{"o2sim_Kine.root"}; | ||
TFile file(path.c_str(), "READ"); | ||
if (file.IsZombie()) { | ||
std::cerr << "Cannot open ROOT file " << path << "\n"; | ||
return 1; | ||
} | ||
auto tree = (TTree*)file.Get("o2sim"); | ||
std::vector<o2::MCTrack>* tracks{}; | ||
tree->SetBranchAddress("MCTrack", &tracks); | ||
|
||
int nLeptons{}; | ||
int nLeptonsInAcceptance{}; | ||
int nLeptonsToBeDone{}; | ||
int nSignalPairs{}; | ||
int nLeptonPairs{}; | ||
int nLeptonPairsInAcceptance{}; | ||
int nLeptonPairsToBeDone{}; | ||
auto nEvents = tree->GetEntries(); | ||
|
||
for (int i = 0; i < nEvents; i++) { | ||
tree->GetEntry(i); | ||
int nleptonseinacc = 0; | ||
int nleptonse = 0; | ||
int nleptonseToBeDone = 0; | ||
int nopenHeavy = 0; | ||
for (auto& track : *tracks) { | ||
auto pdg = track.GetPdgCode(); | ||
auto y = track.GetRapidity(); | ||
if (std::abs(pdg) == checkPdgDecay) { | ||
int igmother = track.getMotherTrackId(); | ||
if (igmother > 0) { | ||
auto gmTrack = (*tracks)[igmother]; | ||
int gmpdg = gmTrack.GetPdgCode(); | ||
if ( int(std::abs(gmpdg)/100.) == 4 || int(std::abs(gmpdg)/1000.) == 4 || int(std::abs(gmpdg)/100.) == 5 || int(std::abs(gmpdg)/1000.) == 5 ) { | ||
nLeptons++; | ||
nleptonse++; | ||
if (-4.3 < y && y < -2.3) { | ||
nleptonseinacc++; | ||
nLeptonsInAcceptance++; | ||
} | ||
if (track.getToBeDone()) { | ||
nLeptonsToBeDone++; | ||
nleptonseToBeDone++; | ||
} | ||
} | ||
} | ||
} else if (std::abs(pdg) == 411 || std::abs(pdg) == 421 || std::abs(pdg) == 431 || std::abs(pdg) == 4122 || std::abs(pdg) == 4132 || std::abs(pdg) == 4232 || std::abs(pdg) == 4332 || std::abs(pdg) == 511 || std::abs(pdg) == 521 || std::abs(pdg) == 531 || std::abs(pdg) == 541 || std::abs(pdg) == 5112 || std::abs(pdg) == 5122 || std::abs(pdg) == 5232 || std::abs(pdg) == 5132 || std::abs(pdg) == 5332) { | ||
nopenHeavy++; | ||
} | ||
} | ||
if (nopenHeavy > 1) nSignalPairs++; | ||
if (nleptonse > 1) nLeptonPairs++; | ||
if (nleptonseToBeDone > 1) nLeptonPairsToBeDone++; | ||
if (nleptonseinacc > 1) nLeptonPairsInAcceptance++; | ||
} | ||
std::cout << "#events: " << nEvents << "\n" | ||
<< "#muons in acceptance: " << nLeptonsInAcceptance << "\n" | ||
<< "#muon pairs in acceptance: " << nLeptonPairsInAcceptance << "\n" | ||
<< "#muons: " << nLeptons << "\n" | ||
<< "#muons to be done: " << nLeptonsToBeDone << "\n" | ||
<< "#signal pairs: " << nSignalPairs << "\n" | ||
<< "#muon pairs: " << nLeptonPairs << "\n" | ||
<< "#muon pairs to be done: " << nLeptonPairsToBeDone << "\n"; | ||
if (nSignalPairs <= nLeptonPairs) { | ||
std::cerr << "Number of muon pairs should be less than HF hadron pairs\n"; | ||
return 1; | ||
} | ||
if (nSignalPairs < nEvents) { | ||
std::cerr << "Number of signal pairs should be at least equaled to the number of events\n"; | ||
return 1; | ||
} | ||
if (nLeptonPairs != nLeptonPairsToBeDone) { | ||
std::cerr << "The number of muon pairs should be the same as the number of muon pairs which should be transported.\n"; | ||
return 1; | ||
} | ||
if (nLeptons != nLeptonsToBeDone) { | ||
std::cerr << "The number of muons should be the same as the number of muons which should be transported.\n"; | ||
return 1; | ||
} | ||
|
||
return 0; | ||
} |
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,27 @@ | ||
#!/usr/bin/env bash | ||
|
||
# make sure O2DPG + O2 is loaded | ||
[ ! "${O2DPG_ROOT}" ] && echo "Error: This needs O2DPG loaded" && exit 1 | ||
[ ! "${O2_ROOT}" ] && echo "Error: This needs O2 loaded" && exit 1 | ||
|
||
# ----------- SETUP LOCAL CCDB CACHE -------------------------- | ||
export ALICEO2_CCDB_LOCALCACHE=$PWD/.ccdb | ||
|
||
|
||
# ----------- LOAD UTILITY FUNCTIONS -------------------------- | ||
. ${O2_ROOT}/share/scripts/jobutils.sh | ||
|
||
RNDSEED=${RNDSEED:-0} | ||
NSIGEVENTS=${NSIGEVENTS:-1} | ||
NBKGEVENTS=${NBKGEVENTS:-1} | ||
NWORKERS=${NWORKERS:-8} | ||
NTIMEFRAMES=${NTIMEFRAMES:-1} | ||
|
||
|
||
${O2DPG_ROOT}/MC/bin/o2dpg_sim_workflow.py -eCM 13600 -gen external -j ${NWORKERS} -ns ${NSIGEVENTS} -tf ${NTIMEFRAMES} -e TGeant4 -mod "MCH MFT MID ITS" \ | ||
-trigger "external" -ini $O2DPG_ROOT/MC/config/PWGDQ/ini/GeneratorHF_bbbarToDDbarToMuons_fwdy.ini \ | ||
-genBkg pythia8 -procBkg cdiff -colBkg pp --embedding -nb ${NBKGEVENTS} \ | ||
-confKeyBkg "Diamond.width[2]=6" -interactionRate 2000 --mft-assessment-full --fwdmatching-assessment-full | ||
|
||
# run workflow | ||
${O2DPG_ROOT}/MC/bin/o2_dpg_workflow_runner.py -f workflow.json -f workflow.json -tt aod -jmax 1 |