Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Ievgen Vovk
ctapipe_io_magic
Commits
b5ab38e0
Commit
b5ab38e0
authored
Feb 11, 2020
by
Yusuke Suda
Browse files
Modifications in storing both true_alt and true_az
parent
c1c2bc03
Pipeline
#68993
passed with stage
in 8 minutes and 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
ctapipe_io_magic/__init__.py
View file @
b5ab38e0
...
...
@@ -300,8 +300,8 @@ class MAGICEventSource(EventSource):
data
.
trig
.
gps_time
=
Time
(
time_tmp
,
format
=
'unix'
,
scale
=
'utc'
,
precision
=
9
)
else
:
data
.
mc
.
energy
=
event_data
[
'true_energy'
]
*
u
.
GeV
data
.
mc
.
alt
=
(
90
-
event_data
[
'true_zd'
])
*
u
.
deg
data
.
mc
.
az
=
event_data
[
'true_az'
]
*
u
.
deg
data
.
mc
.
alt
=
(
np
.
pi
/
2
-
event_data
[
'true_zd'
])
*
u
.
rad
data
.
mc
.
az
=
-
1
*
(
event_data
[
'true_az'
]
-
np
.
deg2rad
(
180
-
7
))
*
u
.
rad
data
.
mc
.
shower_primary_id
=
1
-
event_data
[
'true_shower_primary_id'
]
data
.
mc
.
h_first_int
=
event_data
[
'true_h_first_int'
]
*
u
.
cm
data
.
mc
.
core_x
=
event_data
[
'true_core_x'
]
*
u
.
cm
...
...
@@ -418,8 +418,8 @@ class MAGICEventSource(EventSource):
data
.
trig
.
gps_time
=
Time
(
time_tmp
,
format
=
'unix'
,
scale
=
'utc'
,
precision
=
9
)
else
:
data
.
mc
.
energy
=
event_data
[
'true_energy'
]
*
u
.
GeV
data
.
mc
.
alt
=
(
90
-
event_data
[
'true_zd'
])
*
u
.
deg
data
.
mc
.
az
=
event_data
[
'true_az'
]
*
u
.
deg
data
.
mc
.
alt
=
(
np
.
pi
/
2
-
event_data
[
'true_zd'
])
*
u
.
rad
data
.
mc
.
az
=
-
1
*
(
event_data
[
'true_az'
]
-
np
.
deg2rad
(
180
-
7
))
*
u
.
rad
data
.
mc
.
shower_primary_id
=
1
-
event_data
[
'true_shower_primary_id'
]
data
.
mc
.
h_first_int
=
event_data
[
'true_h_first_int'
]
*
u
.
cm
data
.
mc
.
core_x
=
event_data
[
'true_core_x'
]
*
u
.
cm
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment