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
4bcd7062
Commit
4bcd7062
authored
2 years ago
by
Maximilian Reininghaus
Browse files
Options
Downloads
Patches
Plain Diff
add hepevt to header
parent
8b729687
No related branches found
No related tags found
1 merge request
!468
Resolve "Add FLUKA"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/fluka/FLUKA.hpp
+44
-0
44 additions, 0 deletions
modules/fluka/FLUKA.hpp
tests/modules/testFluka.cpp
+1
-1
1 addition, 1 deletion
tests/modules/testFluka.cpp
with
45 additions
and
1 deletion
modules/fluka/FLUKA.hpp
+
44
−
0
View file @
4bcd7062
...
...
@@ -9,7 +9,51 @@
#pragma once
namespace
fluka
{
size_t
constexpr
nmxhep
=
10000
;
template
<
typename
T
>
using
hepmc_array
=
std
::
array
<
T
,
nmxhep
>
;
extern
"C"
{
/*
c---------------------------------------------------------------------------
c hep standard event commonblock.
c---------------------------------------------------------------------------
c---------------------------------------------------------------------------
c
c nevhep - event number
c nhep - number of entries in the event record
c
c isthep(i) - status code
c idhep(i) - particle id (particle data group standard)
c
c jmohep(1,i) - position of mother particle in list
c jmohep(2,i) - position of second mother particle in list
c jdahep(1,i) - position of first daughter in list
c jdahep(2,i) - position of first daughter in list
c
c phep(1,i) - p_x momentum in gev/c
c phep(2,i) - p_y momentum in gev/c
c phep(3,i) - p_z momentum in gev/c
c phep(4,i) - energy in gev
c phep(5,i) - mass in gev/c**2
c
c vhep(1,i) - x position of production vertex in mm
c vhep(2,i) - y position of production vertex in mm
c vhep(3,i) - z position of production vertex in mm
c vhep(4,i) - time of production in mm/c
*/
extern
struct
{
int
nevhep
;
// event number
int
nhep
;
// number of entries
hepmc_array
<
int
>
isthep
;
// status code
hepmc_array
<
int
>
idhep
;
// PDG particle id
hepmc_array
<
int
[
2
]
>
jmohep
;
// position of first, second mother
hepmc_array
<
int
[
2
]
>
jdahep
;
// position of first, last daughter
hepmc_array
<
double
[
5
]
>
phep
;
// 4-momemtum, mass (GeV)
hepmc_array
<
double
[
4
]
>
vhep
;
// vertex, production time in mm
}
hepevt_
;
/* Iflxyz must be consistent in all calls, to Stpxyz, Sgmxyz, Evtxyz
* Iflxyz = 1 -> only inelastic
* Iflxyz = 10 -> only elastic
...
...
This diff is collapsed.
Click to expand it.
tests/modules/testFluka.cpp
+
1
−
1
View file @
4bcd7062
...
...
@@ -79,7 +79,7 @@ TEST_CASE("FLUKA") {
};
HEPEnergyType
const
p
=
100
_GeV
;
for
(
auto
const
&
[
projectileCode
,
targetCode
]
:
combinations
)
{
for
(
auto
const
&
[
projectileCode
,
targetCode
]
:
combinations
OK
)
{
auto
const
projectile4mom
=
FourVector
{
calculate_total_energy
(
p
,
get_mass
(
projectileCode
)),
MomentumVector
{
cs
,
0
_eV
,
0
_eV
,
p
}};
...
...
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