IAP GITLAB
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
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
Model registry
Operate
Environments
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
Air Shower Physics
corsika
Commits
4935690a
Commit
4935690a
authored
8 months ago
by
Felix Riehn
Browse files
Options
Downloads
Patches
Plain Diff
check that threshold is high enough for pythia in EAS simulation
parent
a75bc0e7
No related branches found
No related tags found
1 merge request
!549
Draft: "Use Pythia for interactions"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/c8_air_shower.cpp
+12
-5
12 additions, 5 deletions
applications/c8_air_shower.cpp
with
12 additions
and
5 deletions
applications/c8_air_shower.cpp
+
12
−
5
View file @
4935690a
...
@@ -416,6 +416,13 @@ int main(int argc, char** argv) {
...
@@ -416,6 +416,13 @@ int main(int argc, char** argv) {
// have SIBYLL always for PROPOSAL photo-hadronic interactions
// have SIBYLL always for PROPOSAL photo-hadronic interactions
auto
sibyll
=
std
::
make_shared
<
corsika
::
sibyll
::
Interaction
>
(
all_elements
);
auto
sibyll
=
std
::
make_shared
<
corsika
::
sibyll
::
Interaction
>
(
all_elements
);
// energy threshold for high energy hadronic model. Affects LE/HE switch for
// hadron interactions and the hadronic photon model in proposal
// valid range varies a bit between models. pythia only has cross sections tabulated
// down to 100GeV.
HEPEnergyType
const
heHadronModelThreshold
=
1
_GeV
*
app
[
"--hadronModelTransitionEnergy"
]
->
as
<
double
>
();
if
(
auto
const
modelStr
=
app
[
"--hadronModel"
]
->
as
<
std
::
string
>
();
if
(
auto
const
modelStr
=
app
[
"--hadronModel"
]
->
as
<
std
::
string
>
();
modelStr
==
"SIBYLL-2.3d"
)
{
modelStr
==
"SIBYLL-2.3d"
)
{
heModel
=
DynamicInteractionProcess
<
StackType
>
{
sibyll
};
heModel
=
DynamicInteractionProcess
<
StackType
>
{
sibyll
};
...
@@ -428,6 +435,11 @@ int main(int argc, char** argv) {
...
@@ -428,6 +435,11 @@ int main(int argc, char** argv) {
}
else
if
(
modelStr
==
"Pythia8"
)
{
}
else
if
(
modelStr
==
"Pythia8"
)
{
heModel
=
DynamicInteractionProcess
<
StackType
>
{
heModel
=
DynamicInteractionProcess
<
StackType
>
{
std
::
make_shared
<
corsika
::
pythia8
::
Interaction
>
()};
std
::
make_shared
<
corsika
::
pythia8
::
Interaction
>
()};
if
(
heHadronModelThreshold
<
100
_GeV
)
{
CORSIKA_LOG_CRITICAL
(
"threshold too low for Pythia! use --hadronModelTransitionEnergy>=100_GeV!"
);
return
EXIT_FAILURE
;
}
}
else
{
}
else
{
CORSIKA_LOG_CRITICAL
(
"invalid choice
\"
{}
\"
; also check argument parser"
,
modelStr
);
CORSIKA_LOG_CRITICAL
(
"invalid choice
\"
{}
\"
; also check argument parser"
,
modelStr
);
return
EXIT_FAILURE
;
return
EXIT_FAILURE
;
...
@@ -471,11 +483,6 @@ int main(int argc, char** argv) {
...
@@ -471,11 +483,6 @@ int main(int argc, char** argv) {
set_energy_production_threshold
(
Code
::
TauMinus
,
std
::
min
({
emcut
,
hadcut
,
mucut
}));
set_energy_production_threshold
(
Code
::
TauMinus
,
std
::
min
({
emcut
,
hadcut
,
mucut
}));
set_energy_production_threshold
(
Code
::
TauPlus
,
std
::
min
({
emcut
,
hadcut
,
mucut
}));
set_energy_production_threshold
(
Code
::
TauPlus
,
std
::
min
({
emcut
,
hadcut
,
mucut
}));
// energy threshold for high energy hadronic model. Affects LE/HE switch for
// hadron interactions and the hadronic photon model in proposal
HEPEnergyType
const
heHadronModelThreshold
=
1
_GeV
*
app
[
"--hadronModelTransitionEnergy"
]
->
as
<
double
>
();
corsika
::
proposal
::
Interaction
emCascade
(
corsika
::
proposal
::
Interaction
emCascade
(
env
,
sophia
,
sibyll
->
getHadronInteractionModel
(),
heHadronModelThreshold
);
env
,
sophia
,
sibyll
->
getHadronInteractionModel
(),
heHadronModelThreshold
);
...
...
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