|
Re: Dalitz Decays of higher resonances. [message #12714 is a reply to message #12713] |
Thu, 13 October 2011 07:52 |
Ingo Froehlich
Messages: 167 Registered: March 2004 Location: IKF - Frankfurt
|
first-grade participant |
From: *dip.t-dialin.net
|
|
Adrian Dybczak wrote on Wed, 12 October 2011 18:54 |
After several tests i redeclared N1535 resonance in macro without using names from pluto. This was only way to get "proper" result.
|
What was wrong with the build-in version in "dalitz_mod"? It would be important for me to know this.
Adrian Dybczak wrote on Wed, 12 October 2011 18:54 |
now getting 5.36e-6/0.11 = 4.8e-5
What was assumed in macro as 5.0e-5
|
Remember: What you declare in Pluto is the static branching ratio. What you see in the histogram is the weight directly coming from the model (basically the coupling constant), this we can see here:
my_reaction->Do("_w = _w * {N1520+_dalitz}->GetBR([N1520+]->M());");
what is done here is to fold the weight with the mass-dependent branching ratio. This was (originally) implemented to feed the Pythia rho into Pluto in order to change the shape.
--
Ingo Froehlich
IKF - University of Frankfurt
069-798-47027, FAX: -47024
|
|
|
|
Re: Dalitz Decays of higher resonances. [message #12716 is a reply to message #12715] |
Thu, 13 October 2011 17:36 |
Ingo Froehlich
Messages: 167 Registered: March 2004 Location: IKF - Frankfurt
|
first-grade participant |
From: *x-matter.uni-frankfurt.de
|
|
You are absolutely right, there was no flat electron generator enabled. The reason is that the new decays were not recognized as Dalitz-Decays (hardcoded in PData.h).
I did the following changes in PData.h (IsDalitz):
int d = makeStaticData()->GetParticleBaryon(id) && // Delta0 Dalitz decay?
((makeStaticData()->IsParticle(i1,"dilepton") &&
makeStaticData()->GetParticleBaryon(i2)) ||
(makeStaticData()->GetParticleBaryon(i1) &&
makeStaticData()->IsParticle(i2,"dilepton")));
return (pseudo&&eeg) || (pseudo&&mumug) ||
(vector&&eepi) || (vector&&mumupi)
|| D0 || Dp || pn || NS0 || NSp || d;
now it should print:
Info in <PDalitzModPlugin::ExecCommand>: Model <NS11+_dalitz> uses dGamma/dM for the branching ratio
Info in <PDalitzModPlugin::ExecCommand>: Model <NP110_dalitz> uses dGamma/dM for the branching ratio
Info in <PDalitzModPlugin::ExecCommand>: Model <ND130_dalitz> uses dGamma/dM for the branching ratio
Info in <PDalitzModPlugin::ExecCommand>: Model <NS110_dalitz> uses dGamma/dM for the branching ratio
and:
[ND13+_generator_p_dilepton] Dilepton generator {/generator}
--
Ingo Froehlich
IKF - University of Frankfurt
069-798-47027, FAX: -47024
|
|
|
|
Re: Dalitz Decays of higher resonances. [message #12718 is a reply to message #12717] |
Thu, 13 October 2011 22:50 |
Ingo Froehlich
Messages: 167 Registered: March 2004 Location: IKF - Frankfurt
|
first-grade participant |
From: *dip.t-dialin.net
|
|
Adrian Dybczak wrote on Thu, 13 October 2011 21:24 |
Now BR is 5e-5 in pole. Shouldn`t be 3.7-5 as before?
|
Hard to say. It directly comes from the model (i.e. the coupling constant). Maybe we have to check it against a calculation using the equations from the paper
--
Ingo Froehlich
IKF - University of Frankfurt
069-798-47027, FAX: -47024
|
|
|