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
a5fd0040
Commit
a5fd0040
authored
6 years ago
by
Maximilian Reininghaus
Browse files
Options
Downloads
Patches
Plain Diff
removed TrackingLine::Init()
parent
f396eaff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!91
Resolve "define further classes of processes (MaintenanceProcess?)"
,
!76
Resolve "Handling of boundary crossings in geometry tree"
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Framework/Cascade/Cascade.h
+5
-8
5 additions, 8 deletions
Framework/Cascade/Cascade.h
Processes/TrackingLine/TrackingLine.cc
+0
-3
0 additions, 3 deletions
Processes/TrackingLine/TrackingLine.cc
Processes/TrackingLine/TrackingLine.h
+0
-2
0 additions, 2 deletions
Processes/TrackingLine/TrackingLine.h
with
5 additions
and
13 deletions
Framework/Cascade/Cascade.h
+
5
−
8
View file @
a5fd0040
...
@@ -36,14 +36,12 @@ namespace corsika::cascade {
...
@@ -36,14 +36,12 @@ namespace corsika::cascade {
* plugged into the cascade simulation.
* plugged into the cascade simulation.
*
*
* <b>Tracking</b> must be a class according to the
* <b>Tracking</b> must be a class according to the
* TrackingInterface providing the functions: <code>void
* TrackingInterface providing the functions:
* Init();</code> and <code>auto GetTrack(Particle const& p)</auto>,
* <code>auto GetTrack(Particle const& p)</auto>,
* where the latter has a return type of <code>
* with the return type <code>geometry::Trajectory<corsika::geometry::Line>
* geometry::Trajectory<corsika::geometry::Line or Helix> </code>
* </code>
*
* <b>ProcessList</b> must be a ProcessSequence.
* TimeOfIntersection(corsika::geometry::Line const& line,
*
*
* <b>ProcessList</b> must be a ProcessSequence. *
* <b>Stack</b> is the storage object for particle data, i.e. with
* <b>Stack</b> is the storage object for particle data, i.e. with
* Particle class type <code>Stack::ParticleType</code>
* Particle class type <code>Stack::ParticleType</code>
*
*
...
@@ -75,7 +73,6 @@ namespace corsika::cascade {
...
@@ -75,7 +73,6 @@ namespace corsika::cascade {
* All components of the Cascade simulation must be configured here.
* All components of the Cascade simulation must be configured here.
*/
*/
void
Init
()
{
void
Init
()
{
fTracking
.
Init
();
fProcessSequence
.
Init
();
fProcessSequence
.
Init
();
fStack
.
Init
();
fStack
.
Init
();
}
}
...
...
This diff is collapsed.
Click to expand it.
Processes/TrackingLine/TrackingLine.cc
+
0
−
3
View file @
a5fd0040
...
@@ -62,9 +62,6 @@ namespace corsika::process::tracking_line {
...
@@ -62,9 +62,6 @@ namespace corsika::process::tracking_line {
corsika
::
environment
::
Environment
const
&
pEnv
)
corsika
::
environment
::
Environment
const
&
pEnv
)
:
fEnvironment
(
pEnv
)
{}
:
fEnvironment
(
pEnv
)
{}
template
<
class
Stack
,
class
Trajectory
>
void
TrackingLine
<
Stack
,
Trajectory
>::
Init
()
{}
template
<
class
Stack
,
class
Trajectory
>
template
<
class
Stack
,
class
Trajectory
>
Trajectory
TrackingLine
<
Stack
,
Trajectory
>::
GetTrack
(
Particle
const
&
p
)
{
Trajectory
TrackingLine
<
Stack
,
Trajectory
>::
GetTrack
(
Particle
const
&
p
)
{
using
std
::
cout
;
using
std
::
cout
;
...
...
This diff is collapsed.
Click to expand it.
Processes/TrackingLine/TrackingLine.h
+
0
−
2
View file @
a5fd0040
...
@@ -42,8 +42,6 @@ namespace corsika::process {
...
@@ -42,8 +42,6 @@ namespace corsika::process {
TrackingLine
(
corsika
::
environment
::
Environment
const
&
pEnv
);
TrackingLine
(
corsika
::
environment
::
Environment
const
&
pEnv
);
void
Init
();
Trajectory
GetTrack
(
Particle
const
&
p
);
Trajectory
GetTrack
(
Particle
const
&
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