Skip to content

Commit 19bbc5f

Browse files
committed
Fixed problem with global siemens_cas value being too small for some Siemens scanners
1 parent 55d87d5 commit 19bbc5f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

gradunwarp/core/globals.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
77
import logging
88

9-
VERSION = 'HCP-1.0.2'
9+
VERSION = 'HCP-1.0.3'
1010

1111
usage = '''
1212
gradient_unwarp infile outfile manufacturer -g <coefficient file> [optional arguments]
1313
'''
1414

1515

1616
# SIEMENS stuff
17-
siemens_cas = 14 # coefficient array size
17+
siemens_cas = 100 # coefficient array size
1818
siemens_fovmin = -.30 # fov min in meters
1919
siemens_fovmax = .30 # fov max in meters
2020
siemens_numpoints = 60 # number of grid points in each direction

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def configuration(parent_package='', top_path=None):
4141
return config
4242

4343
setup(name='gradunwarp',
44-
version = 'HCP-1.0.2',
44+
version = 'HCP-1.0.3',
4545
description = 'HCP version of Gradient Unwarping Package for Python/Numpy',
4646
author = 'Human Connectome Project',
4747
py_modules = mods,

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.0.2
1+
v1.0.3

0 commit comments

Comments
 (0)