aboutsummaryrefslogtreecommitdiffstats
path: root/fr.py
diff options
context:
space:
mode:
authorshivesh <s.p.mandalia@qmul.ac.uk>2018-04-28 17:01:52 -0500
committershivesh <s.p.mandalia@qmul.ac.uk>2018-04-28 17:01:52 -0500
commitc37932036698600c7b44d2ff15aac6784d201098 (patch)
tree5b0425d812a9f39cce0f59a3a617b6e472c79f90 /fr.py
parent45e8e4fa58e0c04c16b3000152dd08f2f6f8926e (diff)
downloadGolemFlavor-c37932036698600c7b44d2ff15aac6784d201098.tar.gz
GolemFlavor-c37932036698600c7b44d2ff15aac6784d201098.zip
Sat Apr 28 17:01:52 CDT 2018
Diffstat (limited to 'fr.py')
-rwxr-xr-xfr.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/fr.py b/fr.py
index 7558c8e..971ee6e 100755
--- a/fr.py
+++ b/fr.py
@@ -81,6 +81,10 @@ def process_args(args):
args.binning = np.logspace(
np.log10(args.binning[0]), np.log10(args.binning[1]), args.binning[2]+1
)
+ if args.likelihood is Likelihood.GOLEMFIT:
+ print 'GolemFit selected with spectral index energy dependance, ' \
+ 'will attempt to use the astroDeltaGamma systematic to fold ' \
+ 'in the spectral index.'
if not args.fix_scale:
args.scale = fr_utils.estimate_scale(args)
@@ -174,4 +178,3 @@ main.__doc__ = __doc__
if __name__ == '__main__':
main()
-