IAP GITLAB
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
corsika
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pranav Sampathkumar
corsika
Commits
fea215ab
Commit
fea215ab
authored
4 years ago
by
ralfulrich
Committed by
Ralf Ulrich
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fix nucleon fragment production in QII
parent
d651023c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Processes/QGSJetII/Interaction.cc
+9
-10
9 additions, 10 deletions
Processes/QGSJetII/Interaction.cc
with
9 additions
and
10 deletions
Processes/QGSJetII/Interaction.cc
+
9
−
10
View file @
fea215ab
...
@@ -201,12 +201,11 @@ namespace corsika::process::qgsjetII {
...
@@ -201,12 +201,11 @@ namespace corsika::process::qgsjetII {
HEPEnergyType
const
projectileEnergyLab
=
vP
.
GetEnergy
();
HEPEnergyType
const
projectileEnergyLab
=
vP
.
GetEnergy
();
auto
const
projectileMomentumLab
=
vP
.
GetMomentum
();
auto
const
projectileMomentumLab
=
vP
.
GetMomentum
();
int
beamA
=
0
;
int
beamA
=
1
;
if
(
particles
::
IsNucleus
(
corsikaBeamId
))
beamA
=
vP
.
GetNuclearA
();
if
(
particles
::
IsNucleus
(
corsikaBeamId
))
beamA
=
vP
.
GetNuclearA
();
const
HEPEnergyType
projectileEnergyLabPerNucleon
=
const
HEPEnergyType
projectileEnergyLabPerNucleon
=
particles
::
IsNucleus
(
corsikaBeamId
)
?
projectileEnergyLab
/
beamA
projectileEnergyLab
/
beamA
;
:
projectileEnergyLab
;
cout
<<
"Interaction: ebeam lab: "
<<
projectileEnergyLab
/
1
_GeV
<<
endl
cout
<<
"Interaction: ebeam lab: "
<<
projectileEnergyLab
/
1
_GeV
<<
endl
<<
"Interaction: pbeam lab: "
<<
projectileMomentumLab
.
GetComponents
()
/
1
_GeV
<<
"Interaction: pbeam lab: "
<<
projectileMomentumLab
.
GetComponents
()
/
1
_GeV
...
@@ -314,16 +313,16 @@ namespace corsika::process::qgsjetII {
...
@@ -314,16 +313,16 @@ namespace corsika::process::qgsjetII {
idFragm
=
particles
::
Code
::
Neutron
;
idFragm
=
particles
::
Code
::
Neutron
;
Z
=
0
;
Z
=
0
;
}
}
const
HEPMassType
projectile
Mass
=
particles
::
GetMass
(
idFragm
);
const
HEPMassType
nucleon
Mass
=
particles
::
GetMass
(
idFragm
);
auto
momentum
=
geometry
::
Vector
(
auto
momentum
=
geometry
::
Vector
(
zAxisFrame
,
corsika
::
geometry
::
QuantityVector
<
hepmomentum_d
>
{
zAxisFrame
,
corsika
::
geometry
::
QuantityVector
<
hepmomentum_d
>
{
0.0
_GeV
,
0.0
_GeV
,
0.0
_GeV
,
0.0
_GeV
,
sqrt
((
projectileEnergyLab
+
projectile
Mass
)
*
sqrt
((
projectileEnergyLab
PerNucleon
+
nucleon
Mass
)
*
(
projectileEnergyLab
-
projectile
Mass
))});
(
projectileEnergyLab
PerNucleon
-
nucleon
Mass
))});
auto
const
energy
=
sqrt
(
momentum
.
squaredNorm
()
+
square
(
projectile
Mass
));
auto
const
energy
=
sqrt
(
momentum
.
squaredNorm
()
+
square
(
nucleon
Mass
));
momentum
.
rebase
(
originalCS
);
// transform back into standard lab frame
momentum
.
rebase
(
originalCS
);
// transform back into standard lab frame
std
::
cout
<<
"secondary fragment> id="
<<
idFragm
std
::
cout
<<
"secondary fragment> id="
<<
idFragm
<<
" p="
<<
momentum
.
GetComponents
()
<<
std
::
endl
;
<<
" p="
<<
momentum
.
GetComponents
()
<<
std
::
endl
;
...
@@ -349,7 +348,7 @@ namespace corsika::process::qgsjetII {
...
@@ -349,7 +348,7 @@ namespace corsika::process::qgsjetII {
}
}
}
}
if
(
idFragm
==
particles
::
Code
::
Nucleus
)
{
if
(
idFragm
==
particles
::
Code
::
Nucleus
)
{
// thus: not p or n
const
HEPMassType
nucleusMass
=
const
HEPMassType
nucleusMass
=
particles
::
Proton
::
GetMass
()
*
Z
+
particles
::
Neutron
::
GetMass
()
*
(
A
-
Z
);
particles
::
Proton
::
GetMass
()
*
Z
+
particles
::
Neutron
::
GetMass
()
*
(
A
-
Z
);
auto
momentum
=
geometry
::
Vector
(
auto
momentum
=
geometry
::
Vector
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment