-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add files to simulate HFs to dimuons with trigger gap #1820
Merged
+385
−0
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
203 changes: 203 additions & 0 deletions
203
MC/config/PWGDQ/external/generator/GeneratorHFToMu_EvtGenFwdY_gaptriggered_dq.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,203 @@ | ||
#include "FairGenerator.h" | ||
#include "Generators/GeneratorPythia8.h" | ||
#include "Pythia8/Pythia.h" | ||
#include "TRandom.h" | ||
|
||
R__ADD_INCLUDE_PATH($O2DPG_ROOT/MC/config/PWGDQ/EvtGen) | ||
#include "GeneratorEvtGen.C" | ||
|
||
#include <string> | ||
|
||
using namespace o2::eventgen; | ||
|
||
namespace o2 | ||
{ | ||
namespace eventgen | ||
{ | ||
|
||
class GeneratorHFToMu_EvtGenFwdY_gaptriggered : public o2::eventgen::GeneratorPythia8 { | ||
public: | ||
|
||
/// constructor | ||
GeneratorHFToMu_EvtGenFwdY_gaptriggered(int inputTriggerRatio = 4) { | ||
|
||
mGeneratedEvents = 0; | ||
mInverseTriggerRatio = inputTriggerRatio; | ||
// define minimum bias event generator | ||
auto seed = (gRandom->TRandom::GetSeed() % 900000000); | ||
TString pathconfigMB = gSystem->ExpandPathName("$O2DPG_ROOT/MC/config/PWGDQ/pythia8/generator/pythia8_inel_triggerGap.cfg"); | ||
pythiaMBgen.readFile(pathconfigMB.Data()); | ||
pythiaMBgen.readString("Random:setSeed on"); | ||
pythiaMBgen.readString("Random:seed " + std::to_string(seed)); | ||
mConfigMBdecays = ""; | ||
mPDG = 4; | ||
mRapidityMin = -1.; | ||
mRapidityMax = 1.; | ||
mHadronMultiplicity = -1; | ||
mHadronRapidityMin = -1.; | ||
mHadronRapidityMax = 1.; | ||
mVerbose = false; | ||
} | ||
|
||
/// Destructor | ||
~GeneratorHFToMu_EvtGenFwdY_gaptriggered() = default; | ||
|
||
void setPDG(int val) { mPDG = val; }; | ||
void addHadronPDGs(int pdg) { mHadronsPDGs.push_back(pdg); }; | ||
void setHadronMultiplicity(int val) { mHadronMultiplicity = val; }; | ||
void setRapidity(double valMin, double valMax) | ||
{ | ||
mRapidityMin = valMin; | ||
mRapidityMax = valMax; | ||
}; | ||
|
||
void setRapidityHadron(double valMin, double valMax) | ||
{ | ||
mHadronRapidityMin = valMin; | ||
mHadronRapidityMax = valMax; | ||
}; | ||
|
||
void setConfigMBdecays(TString val){mConfigMBdecays = val;} | ||
|
||
void setVerbose(bool val) { mVerbose = val; }; | ||
|
||
protected: | ||
|
||
Bool_t generateEvent() override | ||
{ | ||
// reset event | ||
bool genOk = false; | ||
if (mGeneratedEvents % mInverseTriggerRatio == 0){ | ||
bool ancestor = false; | ||
while (! (genOk && ancestor) ){ | ||
/// reset event | ||
mPythia.event.reset(); | ||
genOk = GeneratorPythia8::generateEvent(); | ||
// find the q-qbar ancestor | ||
ancestor = findHeavyQuarkPair(mPythia.event); | ||
} | ||
} else { | ||
/// reset event | ||
pythiaMBgen.event.reset(); | ||
while (!genOk) { | ||
genOk = pythiaMBgen.next(); | ||
} | ||
mPythia.event = pythiaMBgen.event; | ||
} | ||
mGeneratedEvents++; | ||
if (mVerbose) mOutputEvent.list(); | ||
return true; | ||
} | ||
|
||
Bool_t Init() override | ||
{ | ||
if(mConfigMBdecays.Contains("cfg")) pythiaMBgen.readFile(mConfigMBdecays.Data()); | ||
GeneratorPythia8::Init(); | ||
pythiaMBgen.init(); | ||
return true; | ||
} | ||
|
||
// search for q-qbar mother with at least one q in a selected rapidity window | ||
bool findHeavyQuarkPair(Pythia8::Event& event) | ||
{ | ||
int countH[mHadronsPDGs.size()]; for(int ipdg=0; ipdg < mHadronsPDGs.size(); ipdg++) countH[ipdg]=0; | ||
bool hasq = false, hasqbar = false, atSelectedY = false, isOkAtPartonicLevel = false; | ||
for (int ipa = 0; ipa < event.size(); ++ipa) { | ||
|
||
if(!isOkAtPartonicLevel){ | ||
auto daughterList = event[ipa].daughterList(); | ||
hasq = false; hasqbar = false; atSelectedY = false; | ||
for (auto ida : daughterList) { | ||
if (event[ida].id() == mPDG) | ||
hasq = true; | ||
if (event[ida].id() == -mPDG) | ||
hasqbar = true; | ||
if ((event[ida].y() > mRapidityMin) && (event[ida].y() < mRapidityMax)) | ||
atSelectedY = true; | ||
} | ||
if (hasq && hasqbar && atSelectedY) isOkAtPartonicLevel = true; | ||
} | ||
|
||
if( (mHadronMultiplicity <= 0) && isOkAtPartonicLevel) return true; // no selection at hadron level | ||
|
||
/// check at hadron level if needed | ||
int ipdg=0; | ||
for (auto& pdgVal : mHadronsPDGs){ | ||
if ( (TMath::Abs(event[ipa].id()) == pdgVal) && (event[ipa].y() > mHadronRapidityMin) && (event[ipa].y() < mHadronRapidityMax) ) countH[ipdg]++; | ||
if(isOkAtPartonicLevel && countH[ipdg] >= mHadronMultiplicity) return true; | ||
ipdg++; | ||
} | ||
} | ||
return false; | ||
}; | ||
|
||
|
||
private: | ||
// Interface to override import particles | ||
Pythia8::Event mOutputEvent; | ||
|
||
// Control gap-triggering | ||
unsigned long long mGeneratedEvents; | ||
int mInverseTriggerRatio; | ||
Pythia8::Pythia pythiaMBgen; // minimum bias event | ||
TString mConfigMBdecays; | ||
int mPDG; | ||
std::vector<int> mHadronsPDGs; | ||
int mHadronMultiplicity; | ||
double mRapidityMin; | ||
double mRapidityMax; | ||
double mHadronRapidityMin; | ||
double mHadronRapidityMax; | ||
bool mVerbose; | ||
}; | ||
|
||
} | ||
|
||
} | ||
|
||
FairGenerator* | ||
GeneratorHFToMu_EvtGenFwdY_gaptriggered_dq(double rapidityMin = -4.3, double rapidityMax = -2.3, bool verbose = false, bool isbb = false, bool forceSemimuonicDecay = false) | ||
{ | ||
TString pdgs; | ||
auto gen = new o2::eventgen::GeneratorEvtGen<o2::eventgen::GeneratorHFToMu_EvtGenFwdY_gaptriggered>(); | ||
if (isbb == false) { | ||
gen->setPDG(4); | ||
pdgs = "411;421;431;4122;4232;4332"; | ||
} else { | ||
gen->setPDG(5); | ||
pdgs = "511;521;531;541;5112;5122;5232;5132;5332"; | ||
} | ||
gen->setRapidity(rapidityMin, rapidityMax); | ||
|
||
gen->setRapidityHadron(rapidityMin,rapidityMax); | ||
gen->setHadronMultiplicity(1); | ||
TString pathO2table = gSystem->ExpandPathName("$O2DPG_ROOT/MC/config/PWGDQ/pythia8/decayer/switchOffChadrons.cfg"); | ||
gen->readFile(pathO2table.Data()); | ||
gen->setConfigMBdecays(pathO2table); | ||
gen->setVerbose(verbose); | ||
|
||
std::string spdg; | ||
TObjArray* obj = pdgs.Tokenize(";"); | ||
gen->SetSizePdg(obj->GetEntriesFast()); | ||
for (int i = 0; i < obj->GetEntriesFast(); i++) { | ||
spdg = obj->At(i)->GetName(); | ||
gen->AddPdg(std::stoi(spdg), i); | ||
printf("PDG %d \n", std::stoi(spdg)); | ||
gen->addHadronPDGs(std::stoi(spdg)); | ||
} | ||
if (forceSemimuonicDecay == 1) gen->SetForceDecay(kEvtSemiMuonic); | ||
else gen->SetForceDecay(kEvtAll); | ||
|
||
// set random seed | ||
gen->readString("Random:setSeed on"); | ||
uint random_seed; | ||
unsigned long long int random_value = 0; | ||
ifstream urandom("/dev/urandom", ios::in|ios::binary); | ||
urandom.read(reinterpret_cast<char*>(&random_value), sizeof(random_seed)); | ||
gen->readString(Form("Random:seed = %d", random_value % 900000001)); | ||
|
||
// print debug | ||
//gengen->PrintDebug(); | ||
|
||
return gen; | ||
} |
14 changes: 14 additions & 0 deletions
14
MC/config/PWGDQ/ini/GeneratorHF_bbbarToDDbarToMuons_fwdy_TriggerGap.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,14 @@ | ||
### 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_MC_CONFIG_ROOT}/MC/config/PWGDQ/external/generator/GeneratorHFToMu_EvtGenFwdY_gaptriggered_dq.C | ||
funcName = GeneratorHFToMu_EvtGenFwdY_gaptriggered_dq(-4.3, -2.3, false, true, false) | ||
|
||
### The external generator derives from GeneratorPythia8. | ||
### This part configures the bits of the interface: configuration and user hooks | ||
|
||
[GeneratorPythia8] | ||
config = ${O2DPG_MC_CONFIG_ROOT}/MC/config/common/pythia8/generator/pythia8_hf.cfg | ||
hooksFileName = ${O2DPG_MC_CONFIG_ROOT}/MC/config/PWGHF/pythia8/hooks/pythia8_userhooks_qqbar.C | ||
hooksFuncName = pythia8_userhooks_bbbar(-4.3, -2.3) |
14 changes: 14 additions & 0 deletions
14
MC/config/PWGDQ/ini/GeneratorHF_ccbarToMuonsSemileptonic_fwdy_inel_TriggerGap.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,14 @@ | ||
### 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_MC_CONFIG_ROOT}/MC/config/PWGDQ/external/generator/GeneratorHFToMu_EvtGenFwdY_gaptriggered_dq.C | ||
funcName = GeneratorHFToMu_EvtGenFwdY_gaptriggered_dq(-4.3, -2.3, false, false, true) | ||
|
||
### The external generator derives from GeneratorPythia8. | ||
### This part configures the bits of the interface: configuration and user hooks | ||
|
||
[GeneratorPythia8] | ||
config = ${O2DPG_MC_CONFIG_ROOT}/MC/config/common/pythia8/generator/pythia8_inel.cfg | ||
hooksFileName = ${O2DPG_MC_CONFIG_ROOT}/MC/config/PWGHF/pythia8/hooks/pythia8_userhooks_qqbar.C | ||
hooksFuncName = pythia8_userhooks_ccbar(-4.3, -2.3) |
77 changes: 77 additions & 0 deletions
77
MC/config/PWGDQ/ini/tests/GeneratorHF_bbbarToDDbarToMuons_fwdy_TriggerGap.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,77 @@ | ||
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.2) { | ||
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 (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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
generator configs should no longer refer to
${O2DPG_ROOT}
but to${O2DPG_MC_CONFIG_ROOT}
. Could you please fix this in all your files?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you. I changed all ${O2DPG_ROOT} in this updates to ${O2DPG_MC_CONFIG_ROOT}.