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
731522fc
Commit
731522fc
authored
4 years ago
by
ralfulrich
Committed by
Ralf Ulrich
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
format
parent
5d07a85c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!271
Resolve "Assumption of no continuous between two stochastic losses"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
corsika/detail/framework/geometry/Helix.inl
+1
-1
1 addition, 1 deletion
corsika/detail/framework/geometry/Helix.inl
corsika/framework/utility/CubicSolver.hpp
+4
-4
4 additions, 4 deletions
corsika/framework/utility/CubicSolver.hpp
with
5 additions
and
5 deletions
corsika/detail/framework/geometry/Helix.inl
+
1
−
1
View file @
731522fc
...
...
@@ -19,7 +19,7 @@ namespace corsika {
inline
Point
Helix
::
getPosition
(
TimeType
const
t
)
const
{
return
r0_
+
vPar_
*
t
+
(
vPerp_
*
(
std
::
cos
(
omegaC_
*
t
)
-
1
)
+
uPerp_
*
std
::
sin
(
omegaC_
*
t
))
/
(
vPerp_
*
(
std
::
cos
(
omegaC_
*
t
)
-
1
)
+
uPerp_
*
std
::
sin
(
omegaC_
*
t
))
/
omegaC_
;
}
...
...
This diff is collapsed.
Click to expand it.
corsika/framework/utility/CubicSolver.hpp
+
4
−
4
View file @
731522fc
...
...
@@ -29,7 +29,7 @@ namespace corsika {
@ingroup Utility
@{
*/
namespace
andre
{
/**
Solve a x^3 + b x^2 + c x + d = 0
...
...
@@ -63,13 +63,13 @@ namespace corsika {
long
double
d
);
/**
@return 3 a x^2 + 2 b x + c
*/
@return 3 a x^2 + 2 b x + c
*/
long
double
cubic_function_dfdx
(
long
double
x
,
long
double
a
,
long
double
b
,
long
double
c
);
/**
@return 6 a x + 2 b
@return 6 a x + 2 b
*/
long
double
cubic_function_d2fd2x
(
long
double
x
,
long
double
a
,
long
double
b
);
...
...
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