From 6cb20985c3e2e1d25fdb5685846abacf87f6be18 Mon Sep 17 00:00:00 2001 From: yan Date: Mon, 15 Apr 2024 09:10:26 +0800 Subject: [PATCH] debug --- csst_mci_sim/csst_mci_sim.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/csst_mci_sim/csst_mci_sim.py b/csst_mci_sim/csst_mci_sim.py index 43f9966..442086b 100644 --- a/csst_mci_sim/csst_mci_sim.py +++ b/csst_mci_sim/csst_mci_sim.py @@ -3396,8 +3396,6 @@ class MCIsimulator(): #save image without CTI self.noCTI_g = self.image_g.copy() - self.log.info('Save NoCti Nonoise image fits file to %s ' % ('noctinonoise' + 'mci_g.fits')) - 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) @@ -3409,8 +3407,7 @@ class MCIsimulator(): self.noCTI_r = self.image_r.copy() - self.log.info('Save NoCti Nonoise image fits file to %s ' % ('noctinonoise' + 'mci_r.fits')) - + 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) @@ -3421,9 +3418,7 @@ class MCIsimulator(): ################################################## self.noCTI_i = self.image_i.copy() - - self.log.info('Save NoCti Nonoise image fits file to %s ' % ('noctinonoise' + 'mci_i.fits')) - + 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) -- GitLab