Commit f54a23db authored by BO ZHANG's avatar BO ZHANG :basketball:
Browse files

add dm.get_shutter

No related merge requests found
Showing with 13 additions and 0 deletions
+13 -0
......@@ -578,6 +578,19 @@ class CsstMsDataManager:
else:
return self.custom_flat.format("flat", detector)
def get_shutter(self, detector=6):
""" get flat data """
if self.custom_flat is None:
return os.path.join(
self.path_aux,
"C6.2_ref_mbi",
"CSST_MSC_MS_SHUTTER_{:02d}_{:04d}.fits".format(
detector, 1 if self.ref_version is None else self.ref_version
)
)
else:
return self.custom_flat.format("flat", detector)
def get_axeconf(self):
return os.path.join(self.path_aux, "axeconf") # "/home/csstpipeline/L1Pipeline/aux/axeconf"
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment