You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
efficiency_group.add_argument("--uniform_crystal_eff", action="store_true", help="use uniform crystal efficiencies, otherwise use a random distribution")
103
-
efficiency_group.add_argument("--uniform_sg_eff", action="store_true", help="use uniform symmetry group (module pair) efficiencies, otherwise pseudo random pattern is used")
help="number of time blocks to split the data into",
158
+
)
159
+
time_group.add_argument(
160
+
"--event_block_duration",
161
+
type=int,
162
+
default=100,
163
+
help="duration of each time block in ms",
164
+
)
109
165
110
166
# Reconstruction and analysis group
111
-
recon_group=parser.add_argument_group('Reconstruction and Analysis')
112
-
recon_group.add_argument("--num_epochs_mlem", type=int, default=0, help="number of epochs for MLEM reconstruction of histogrammed data, 0 means no MLEM reconstruction")
113
-
recon_group.add_argument("--check_backprojection", default=False, action="store_true", help="check the backprojection of the TOF histogram and LM data")
167
+
recon_group=parser.add_argument_group("Reconstruction and Analysis")
168
+
recon_group.add_argument(
169
+
"--num_epochs_mlem",
170
+
type=int,
171
+
default=0,
172
+
help="number of epochs for MLEM reconstruction of histogrammed data, 0 means no MLEM reconstruction",
173
+
)
174
+
recon_group.add_argument(
175
+
"--check_backprojection",
176
+
default=False,
177
+
action="store_true",
178
+
help="check the backprojection of the TOF histogram and LM data",
179
+
)
114
180
115
181
# Visualization and debugging group
116
-
visual_group=parser.add_argument_group('Visualization and Debugging')
117
-
visual_group.add_argument("--skip_plots", action="store_true", help="skip plotting the scanner geometry and TOF profile")
182
+
visual_group=parser.add_argument_group("Visualization and Debugging")
183
+
visual_group.add_argument(
184
+
"--skip_plots",
185
+
action="store_true",
186
+
help="skip plotting the scanner geometry and TOF profile",
0 commit comments