Commit 6b740d8f authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

compatible with C5.2 naming convention

parent a7083ac0
......@@ -485,8 +485,12 @@ class CsstMsDataManager:
def l0_crs(self, detector=6):
""" L0 cosmic ray file path """
assert detector in self.available_detectors
fn = f"{self.telescope}_{self.instrument}_{self.project}_CRS_{self.exp_start}_" \
f"{self.exp_stop}_{self.obs_id}_{detector:02d}_L{self.level}_V{self.version}.{self.ext}"
if self.ver_sim == "C5.2":
fn = f"{self.telescope}_{self.instrument}_{self.project}_CRS_{self.exp_start}_" \
f"{self.exp_stop}_{self.obs_id}_{detector:02d}_L{self.level}_{self.version}.{self.ext}"
else:
fn = f"{self.telescope}_{self.instrument}_{self.project}_CRS_{self.exp_start}_" \
f"{self.exp_stop}_{self.obs_id}_{detector:02d}_L{self.level}_V{self.version}.{self.ext}"
fp = os.path.join(self.dir_l0, fn)
assert os.path.exists(fp)
return os.path.join(self.dir_l0, fn)
......
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