Skip to content

Commit

Permalink
Handle more MFSPLIT case from SIEMENS
Browse files Browse the repository at this point in the history
  • Loading branch information
malaterre committed Mar 21, 2024
1 parent 9fe1cee commit 6f13bbf
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,11 @@ EquipmentManufacturer::Type EquipmentManufacturer::Compute(DataSet const& ds) {
manu.SetFromDataSet(ds);
manufacturer = manu.GetValue().Trim();
// TODO: contributing equipement ?
} else {
}
if( manufacturer.empty() )
{
// MFSPLIT export seems to remove the attribute completely:
// or in some case make it empty
manufacturer = GetPrivateTagValueOrEmpty<VR::SH, VM::VM1>(
ds, PrivateTag(0x0021, 0x0022, "SIEMENS MR SDS 01"));
}
Expand Down

0 comments on commit 6f13bbf

Please sign in to comment.