Skip to content

Commit

Permalink
Verbose scan options (issue 606)
Browse files Browse the repository at this point in the history
  • Loading branch information
neurolabusc committed May 24, 2022
1 parent f8f421e commit b71678a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions console/nii_dicom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4520,7 +4520,7 @@ const uint32_t kEffectiveTE = 0x0018 + (0x9082 << 16);
}
char vr[2];
//float intenScalePhilips = 0.0;
char scanOptionsSiemens[kDICOMStr] = "";
char scanOptionsSiemens[kDICOMStrLarge] = "";
char seriesTimeTxt[kDICOMStr] = "";
char acquisitionDateTimeTxt[kDICOMStr] = "";
char scanningSequenceSiemens[kDICOMStr] = "";
Expand Down Expand Up @@ -6282,7 +6282,7 @@ const uint32_t kEffectiveTE = 0x0018 + (0x9082 << 16);
break;
}
case kScanOptions:
dcmStr(lLength, &buffer[lPos], d.scanOptions);
dcmStr(lLength, &buffer[lPos], d.scanOptions, true);
if ((lLength > 1) && (strstr(d.scanOptions, "PFF") != NULL))
d.isPartialFourier = true; //e.g. GE does not populate (0018,9081)
break;
Expand Down

0 comments on commit b71678a

Please sign in to comment.