Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove multiple star filter stuff #363

Merged
merged 1 commit into from
Jan 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions starcheck/src/starcheck.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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";
}

Expand Down
1 change: 0 additions & 1 deletion starcheck/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down