diff options
| author | shivesh <s.p.mandalia@qmul.ac.uk> | 2018-11-06 17:49:17 -0600 |
|---|---|---|
| committer | shivesh <s.p.mandalia@qmul.ac.uk> | 2018-11-06 17:49:17 -0600 |
| commit | eb98a187b1bc4ee8e8c962d0e5d1a3d0ae77bc35 (patch) | |
| tree | d9f8d4f65c9fedf0733653ea529da407fe227783 /utils/gf.py | |
| parent | 84c05583ad3d582d107fe09be700311ea466b1af (diff) | |
| download | GolemFlavor-eb98a187b1bc4ee8e8c962d0e5d1a3d0ae77bc35.tar.gz GolemFlavor-eb98a187b1bc4ee8e8c962d0e5d1a3d0ae77bc35.zip | |
plotting
Diffstat (limited to 'utils/gf.py')
| -rw-r--r-- | utils/gf.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/gf.py b/utils/gf.py index a288622..ddf3fdd 100644 --- a/utils/gf.py +++ b/utils/gf.py @@ -13,7 +13,11 @@ from functools import partial import numpy as np -import GolemFitPy as gf +try: + import GolemFitPy as gf +except: + print 'Running without GolemFit' + pass from utils.enums import DataType, SteeringCateg from utils.misc import enum_parse, thread_factors |
