From 7fe1551bab1a3b45546dfb3999799c4debefb9e6 Mon Sep 17 00:00:00 2001 From: Chris S W Davis Date: Tue, 12 Mar 2024 14:12:53 +0000 Subject: [PATCH] made generating neutron monitor count rate estimates non-default --- AniMAIRE/AniMAIRE.py | 2 +- AniMAIRE/anisotropic_MAIRE_engine/maireSengine.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AniMAIRE/AniMAIRE.py b/AniMAIRE/AniMAIRE.py index 853f145..e35d265 100644 --- a/AniMAIRE/AniMAIRE.py +++ b/AniMAIRE/AniMAIRE.py @@ -25,7 +25,7 @@ def run_from_spectra( date_and_time=dt.datetime.now(), array_of_lats_and_longs=default_array_of_lats_and_longs, cache_magnetocosmics_run=True, - generate_NM_count_rates=True, + generate_NM_count_rates=False, **mag_cos_kwargs, ): diff --git a/AniMAIRE/anisotropic_MAIRE_engine/maireSengine.py b/AniMAIRE/anisotropic_MAIRE_engine/maireSengine.py index 767693b..2dd97c2 100755 --- a/AniMAIRE/anisotropic_MAIRE_engine/maireSengine.py +++ b/AniMAIRE/anisotropic_MAIRE_engine/maireSengine.py @@ -30,7 +30,7 @@ def __init__(self, reference_longitude=45.0, #None, array_of_lats_and_longs=default_array_of_lats_and_longs, cache_magnetocosmics_runs=True, - generate_NM_count_rates=True): + generate_NM_count_rates=False): self.rigiditySpectrumParamDict = {} self.pitchAngleDistributionParamDict = {} diff --git a/setup.py b/setup.py index aba1495..57786b9 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ package_data={"AniMAIRE":[ "anisotropic_MAIRE_engine/data/*.csv" ]}, - version='1.0.12', + version='1.0.13', description='Python library for running the anisotropic version of MAIRE+', long_description=long_description, long_description_content_type='text/markdown',