-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestPET.bin_params
93 lines (80 loc) · 2.47 KB
/
testPET.bin_params
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#########################################################################
# PARAMETER FILE FOR THE PHG BINNING MODULE
#
# RUN NAME: tutor1
# CREATED: 3/10/94
# OWNER: Joe SPECT
#
########################################################################
#
# BINNING OPTIONS
# NOTE that only active parameters are shown here: unused parameters
# are omitted. See the bin_params sample file on the Histogram
# web page for a cmoplete list of available parameters.
#
# Trues/Scatter/Randoms binning options
############################
#
# scatter_random_parameter of 1 histograms scatter events
# separately from unscattered events. As this is the first
# binning variable, this will be the slowest varying
# index, with the result that the output will consist of
# unscattered event sinograms followed by scattered event
# sinograms
#
INT scatter_random_param = 1
INT min_s = 0
INT max_s = 100
#
# Sinogram binning (distance-angle binning)
############################
# Z axis binning
#
# This will create 3 2cm thick slices. Slice number will
# be the second most slowly varying index.
#
INT num_z_bins = 3
REAL min_z = -3
REAL max_z = 3
# Transaxial binning.
#
INT num_td_bins = 128
REAL min_td = -32
REAL max_td = 32
# Azimuthal angle bins
#
# As this is the last index parameter mentioned, it will be
# the fastest varying.
#
INT num_aa_bins = 64
#
# Energy binning in keV
############################
#
# Here we only use the energy binning option to create an energy
# window - only photons in the indicated range will be accepted.
# If we set num_e_bins = 0, even this will be turned off, i.e.,
# no energy windowing would be applied.
#
INT num_e_bins = 1
REAL min_e = 435.0
REAL max_e = 650.0
#
# Output files specification
############################
# Should the output from this simulation be added to output from
# an earlier run? (Only works if the count-, weight-, and
# weight-squared- files have the same file names.)
BOOL add_to_existing_img = false
# Specification of output file data type
#
# Specification of weight and weight-squared image data type
# Weight weight_image_type = 2 for four byte reals
# Weight weight_image_type = 3 for 8 byte reals
INT weight_image_type = 2
# Path to the binned values of photon weights
STR weight_image_path = "FILENAMEWEIGHT"
# Path to the binned values of photon weights squared.
STR weight_squared_image_path = ""
# Path to the binned values of absolute photons count
STR count_image_path = ""