34 return Succeeded::yes;
37InputStreamFromROOTFile::SavedPosition
54 return Succeeded::yes;
57std::vector<unsigned long int>
82InputStreamFromROOTFile::get_ROOT_filename()
const
84 return this->filename;
94InputStreamFromROOTFile::set_input_filename(
const std::string& val)
100InputStreamFromROOTFile::set_chain_name(
const std::string& val)
106InputStreamFromROOTFile::set_exclude_true_events(
bool val)
108 exclude_nonrandom = val;
112InputStreamFromROOTFile::set_exclude_scattered_events(
bool val)
114 exclude_scattered = val;
118InputStreamFromROOTFile::set_exclude_unscattered_events(
bool val)
120 exclude_unscattered = val;
124InputStreamFromROOTFile::set_exclude_random_events(
bool val)
126 exclude_randoms = val;
129#ifdef STIR_ROOT_ROTATION_AS_V4
131InputStreamFromROOTFile::set_detectors_offset(
int val)
138InputStreamFromROOTFile::set_low_energy_window(
float val)
140 low_energy_window = val;
144InputStreamFromROOTFile::set_upper_energy_window(
float val)
146 up_energy_window = val;
158 return this->crystal_repeater_z + this->num_virtual_axial_crystals_per_block;
164 return this->crystal_repeater_y + this->num_virtual_transaxial_crystals_per_block;
170 return this->num_virtual_axial_crystals_per_block;
173InputStreamFromROOTFile::get_num_virtual_transaxial_crystals_per_block()
const
175 return this->num_virtual_transaxial_crystals_per_block;
a class containing an enumeration type that can be used by functions to signal successful operation o...
Definition Succeeded.h:44