From d682b7fbbdc57545ba6e9935e74c7f5b3162fb74 Mon Sep 17 00:00:00 2001 From: Jean Connelly Date: Sun, 10 Jan 2021 17:49:30 -0500 Subject: [PATCH] Remove multiple star filter stuff; OBE with grid model --- starcheck/src/starcheck.pl | 8 -------- starcheck/utils.py | 1 - 2 files changed, 9 deletions(-) diff --git a/starcheck/src/starcheck.pl b/starcheck/src/starcheck.pl index 4af6740c..cd71653e 100755 --- a/starcheck/src/starcheck.pl +++ b/starcheck/src/starcheck.pl @@ -42,7 +42,6 @@ import os import traceback -from chandra_aca.star_probs import set_acq_model_ms_filter from starcheck.pcad_att_check import check_characteristics_date from starcheck.utils import (_make_pcad_attitude_check_report, plot_cat_wrapper, @@ -258,10 +257,6 @@ Ska::Starcheck::Obsid::set_config($config_ref); -# Set the multple star filter disabled in the model if after this date -my $MSF_ENABLED = $bs[0]->{date} lt '2016:102:00:00:00.000'; -set_acq_model_ms_filter($MSF_ENABLED); - # Read Maneuver error file containing more accurate maneuver errors my @manerr; if ($manerr_file) { @@ -610,9 +605,6 @@ sub json_obsids{ $save_hash{run}{badpix} = $ACA_badpix_date; } - $out .= "Using acquisition model for multiple star filter " - . ($MSF_ENABLED ? "enabled\n" : "disabled\n"); - $out .= "\n"; } diff --git a/starcheck/utils.py b/starcheck/utils.py index 04d0b520..19540e03 100644 --- a/starcheck/utils.py +++ b/starcheck/utils.py @@ -3,7 +3,6 @@ from Chandra.Time import DateTime from Chandra.Time import secs2date as time2date, date2secs as pydate2secs -from chandra_aca.star_probs import set_acq_model_ms_filter import starcheck from starcheck.pcad_att_check import make_pcad_attitude_check_report, check_characteristics_date from starcheck.calc_ccd_temps import get_ccd_temps