Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
csst-pipeline
csst_common
Commits
082956f0
Commit
082956f0
authored
Aug 19, 2023
by
BO ZHANG
🏀
Browse files
use local reference files as fallback
parent
6fb3c1db
Pipeline
#1163
failed with stage
in 0 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
csst_common/data_manager.py
View file @
082956f0
...
@@ -529,13 +529,16 @@ class CsstMsDataManager:
...
@@ -529,13 +529,16 @@ class CsstMsDataManager:
'shutter': '/crdsroot/references/msc/csst_msc_ms_shutter_11_000001.fits'}
'shutter': '/crdsroot/references/msc/csst_msc_ms_shutter_11_000001.fits'}
"""
"""
if
self
.
crds
.
is_available
:
if
self
.
crds
.
is_available
:
try
:
print
(
"CRDS available, use refs from CRDS ..."
)
print
(
"CRDS available, use refs from CRDS ..."
)
return
self
.
crds
.
retry
(
return
self
.
crds
.
retry
(
self
.
crds
.
get_refs
,
3
,
self
.
crds
.
get_refs
,
3
,
file_path
=
self
.
l0_detector
(
detector
)
file_path
=
self
.
l0_detector
(
detector
)
)
)
else
:
except
BaseException
as
e
:
print
(
"CRDS unavailable, use refs from local files ..."
)
print
(
"CRDS reference access failed! "
,
e
)
print
(
"Use refs from local files ..."
)
refs
=
dict
()
refs
=
dict
()
if
self
.
datatype
==
"mbi"
:
if
self
.
datatype
==
"mbi"
:
ref_types
=
[
"bias"
,
"dark"
,
"ledflat"
,
"shutter"
]
ref_types
=
[
"bias"
,
"dark"
,
"ledflat"
,
"shutter"
]
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment