| 229 | |
| 230 | |
| 231 | IFileIO::Options CESTDICOMManualReaderService::GetOptions() const |
| 232 | { |
| 233 | auto options = AbstractFileReader::GetOptions(); |
| 234 | if (!this->GetInputLocation().empty()) |
| 235 | { |
| 236 | auto fileOptions = ExtractOptionsFromFile(this->GetCESTMetaFilePath()); |
| 237 | |
| 238 | TransferOption(fileOptions, CEST_PROPERTY_NAME_B1Amplitude(), options, OPTION_NAME_B1()); |
| 239 | TransferOption(fileOptions, CEST_PROPERTY_NAME_PULSEDURATION(), options, OPTION_NAME_PULSE()); |
| 240 | TransferOption(fileOptions, CEST_PROPERTY_NAME_DutyCycle(), options, OPTION_NAME_DC()); |
| 241 | TransferMergeOption(fileOptions, META_FILE_OPTION_NAME_MERGE(), options, OPTION_NAME_MERGE()); |
| 242 | } |
| 243 | return options; |
| 244 | } |
| 245 | |
| 246 | us::Any CESTDICOMManualReaderService::GetOption(const std::string& name) const |
| 247 | { |
no test coverage detected