From 25bdb62fca18364200aebae805e9136111952958 Mon Sep 17 00:00:00 2001 From: yan Date: Sat, 11 May 2024 10:48:06 +0800 Subject: [PATCH] debug --- csst_ifs_sim/csst_ifs_sim.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csst_ifs_sim/csst_ifs_sim.py b/csst_ifs_sim/csst_ifs_sim.py index a60d0d7..9fdbca2 100644 --- a/csst_ifs_sim/csst_ifs_sim.py +++ b/csst_ifs_sim/csst_ifs_sim.py @@ -2541,7 +2541,7 @@ class IFSsimulator(): self.log.debug('Starting to apply radiation damage model...') # at this point we can give fake data... - cti = CTI.CDM03bidir(self.information, [], log=self.log) + cti = CDM03bidir(self.information, [], log=self.log) # here we need the right input data self.image_b = cti.applyRadiationDamage(self.image_b.copy( @@ -2550,7 +2550,7 @@ class IFSsimulator(): self.log.debug('Starting to apply radiation damage model...') # at this point we can give fake data... - cti = CTI.CDM03bidir(self.information, [], log=self.log) + cti = CDM03bidir(self.information, [], log=self.log) # here we need the right input data self.image_r = cti.applyRadiationDamage(self.image_r.copy( ).transpose(), iquadrant=self.information['quadrant']).transpose() -- GitLab