From cb2c109300d54bc142005fc321c73e0ec7dd975d Mon Sep 17 00:00:00 2001 From: Jessica Pilling Date: Thu, 17 Aug 2023 11:10:45 +0100 Subject: [PATCH] setting stack=false, execute=false --- xga/generate/esass/phot.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xga/generate/esass/phot.py b/xga/generate/esass/phot.py index 75746d9b..c8cbc379 100644 --- a/xga/generate/esass/phot.py +++ b/xga/generate/esass/phot.py @@ -27,6 +27,9 @@ def evtool_image(sources: Union[BaseSource, NullSource, BaseSample], lo_en: Quan :param int num_cores: The number of cores to use, default is set to 90% of available. :param bool disable_progress: Setting this to true will turn off the SAS generation progress bar. """ + stack = False + execute = True + # Checking user's choice of energy limit parameters if not isinstance(lo_en, Quantity) or not isinstance(hi_en, Quantity): raise TypeError("The lo_en and hi_en arguments must be astropy quantities in units "