| 615 | |
| 616 | |
| 617 | std::string DICOMTagPathToDCMTKSearchPath(const DICOMTagPath& tagPath) |
| 618 | { |
| 619 | if (!tagPath.IsExplicit() && !tagPath.HasItemSelectionWildcardsOnly()) |
| 620 | { |
| 621 | mitkThrow() << "Cannot convert DICOMTagPath into DCMTK search path. Path has element wild cards. Path: " << tagPath.ToStr(); |
| 622 | } |
| 623 | |
| 624 | return tagPath.ToStr(); |
| 625 | }; |
| 626 | |
| 627 | |
| 628 | DICOMTagPath |