Skip to content
Snippets Groups Projects
Commit ecaaee3c authored by Nicola Vigano's avatar Nicola Vigano
Browse files

fixed error introduced in previous commit

parent 8c8d5421
No related branches found
No related tags found
No related merge requests found
......@@ -113,19 +113,19 @@ classdef GtOrientationSampling < handle
end
end
mode = self.parameters.acq(conf.det_ind).type;
mode = self.parameters.acq(self.detector_index).type;
if (ismember(mode, {'180degree', '360degree'}))
mode = 'dct';
end
self.lattice.types{conf.det_ind} = mode;
self.lattice.types{self.detector_index} = mode;
self.print_sampling_details(conf.det_ind)
self.print_sampling_details(self.detector_index)
self.produce_geometry(conf.det_ind);
self.produce_geometry(self.detector_index);
if (self.verbose && usejava('jvm'))
self.compute_blob_coverage_simple_grid(conf.det_ind);
self.compute_blob_coverage_simple_grid(self.detector_index);
self.plot_blob_coverage();
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment