From ae4495450e652382bc2c7c7d30a2b6c493751520 Mon Sep 17 00:00:00 2001 From: Pramod Gupta Date: Mon, 1 Jul 2024 14:37:40 -0600 Subject: [PATCH] edit mwm_hypervelocity.py --- python/target_selection/cartons/mwm_hypervelocity.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/target_selection/cartons/mwm_hypervelocity.py b/python/target_selection/cartons/mwm_hypervelocity.py index 96a6344b..53357f8f 100644 --- a/python/target_selection/cartons/mwm_hypervelocity.py +++ b/python/target_selection/cartons/mwm_hypervelocity.py @@ -104,7 +104,7 @@ def post_process(self, model): cursor = self.database.execute_sql( "select catalogid, gaia_dr3_phot_g_mean_mag from " + - " sandbox.temp_mwm_openfibertargets_mwm_hypervelocity_stars_boss ;") + " sandbox.temp_openfibertargets_mwm_hypervelocity_stars_boss ;") output = cursor.fetchall() @@ -119,6 +119,6 @@ def post_process(self, model): if current_cadence is not None: self.database.execute_sql( - " update sandbox.temp_mwm_openfibertargets_mwm_hypervelocity_stars_boss " + + " update sandbox.temp_openfibertargets_mwm_hypervelocity_stars_boss " + " set cadence = '" + current_cadence + "'" " where catalogid = " + str(current_catalogid) + ";")