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
54a5abf5
Commit
54a5abf5
authored
4 years ago
by
Nikos Karastathis
Browse files
Options
Downloads
Patches
Plain Diff
changed time_ to total_time_ in SignalPath.hpp
parent
85da8f0e
No related branches found
No related tags found
1 merge request
!329
Radio interface
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
corsika/modules/radio/propagators/SignalPath.hpp
+3
-3
3 additions, 3 deletions
corsika/modules/radio/propagators/SignalPath.hpp
tests/modules/testRadio.cpp
+3
-3
3 additions, 3 deletions
tests/modules/testRadio.cpp
with
6 additions
and
6 deletions
corsika/modules/radio/propagators/SignalPath.hpp
+
3
−
3
View file @
54a5abf5
...
...
@@ -22,7 +22,7 @@ namespace corsika {
using
path
=
std
::
deque
<
Point
>
;
TimeType
const
time_
;
///< The total propagation time.
TimeType
const
total_
time_
;
///< The total propagation time.
double
const
average_refractivity_
;
///< The average refractivity.
Vector
<
dimensionless_d
>
const
emit_
;
///< The (unit-length) emission vector.
Vector
<
dimensionless_d
>
const
receive_
;
///< The (unit-length) receive vector.
...
...
@@ -31,11 +31,11 @@ namespace corsika {
/**
* Create a new SignalPath instance.
*/
SignalPath
(
TimeType
const
time
,
double
const
average_refractivity
,
SignalPath
(
TimeType
const
total_
time
,
double
const
average_refractivity
,
Vector
<
dimensionless_d
>
const
emit
,
Vector
<
dimensionless_d
>
const
receive
,
path
const
&
points
)
:
Path
(
points
)
,
t
ime_
(
time
)
,
t
otal_time_
(
total_
time
)
,
average_refractivity_
(
average_refractivity
)
,
emit_
(
emit
)
,
receive_
(
receive
)
{}
...
...
This diff is collapsed.
Click to expand it.
tests/modules/testRadio.cpp
+
3
−
3
View file @
54a5abf5
...
...
@@ -131,7 +131,7 @@ TEST_CASE("Radio", "[processes]") {
// perform checks to paths_ components
for
(
auto
const
&
path
:
paths_
)
{
CHECK
((
path
.
time_
/
1
_s
)
-
((
34
_m
/
(
3
*
constants
::
c
))
/
1
_s
)
==
CHECK
((
path
.
total_
time_
/
1
_s
)
-
((
34
_m
/
(
3
*
constants
::
c
))
/
1
_s
)
==
Approx
(
0
).
margin
(
absMargin
));
CHECK
(
path
.
average_refractivity_
==
Approx
(
1
));
CHECK
(
path
.
emit_
.
getComponents
()
==
v1
.
getComponents
());
...
...
@@ -196,7 +196,7 @@ TEST_CASE("Radio", "[processes]") {
// perform checks to paths1_ components (this is just a sketch for now)
for
(
auto
const
&
path
:
paths1_
)
{
CHECK
(
(
path
.
time_
/
1
_s
)
-
((
34
_m
/
(
3
*
constants
::
c
))
/
1
_s
)
CHECK
(
(
path
.
total_
time_
/
1
_s
)
-
((
34
_m
/
(
3
*
constants
::
c
))
/
1
_s
)
==
Approx
(
0
).
margin
(
absMargin
)
);
CHECK
(
path
.
average_refractivity_
==
Approx
(
1
)
);
CHECK
(
path
.
emit_
.
getComponents
()
==
vv1
.
getComponents
()
);
...
...
@@ -247,7 +247,7 @@ TEST_CASE("Radio", "[processes]") {
// perform checks to paths1_ components (this is just a sketch for now)
for
(
auto
const
&
path
:
paths2_
)
{
CHECK
(
(
path
.
time_
/
1
_s
)
-
((
3.177511688
_m
/
(
3
*
constants
::
c
))
/
1
_s
)
CHECK
(
(
path
.
total_
time_
/
1
_s
)
-
((
3.177511688
_m
/
(
3
*
constants
::
c
))
/
1
_s
)
==
Approx
(
0
).
margin
(
absMargin
)
);
CHECK
(
path
.
average_refractivity_
==
Approx
(
0.210275935
)
);
CHECK
(
path
.
emit_
.
getComponents
()
==
vvv1
.
getComponents
()
);
...
...
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