Skip to content

Commit

Permalink
GE Vas collapse flag (0043,1030) (#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
neurolabusc committed Mar 16, 2023
1 parent c2a4b28 commit e1c6845
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions console/nii_dicom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4497,6 +4497,7 @@ const uint32_t kEffectiveTE = 0x0018 + uint32_t(0x9082 << 16);
#define kShimGradientX 0x0043 + (0x1002 << 16) //SS
#define kShimGradientY 0x0043 + (0x1003 << 16) //SS
#define kShimGradientZ 0x0043 + (0x1004 << 16) //SS
#define kVasCollapseFlagGE 0x0043 + (0x1030 << 16) //SS issue690
#define kPrescanReuseString 0x0043 + (0x1095 << 16) //LO
#define kUserDefineDataGE 0x0043 + (0x102A << 16) //OB
#define kEffectiveEchoSpacingGE 0x0043 + (0x102C << 16) //SS
Expand Down Expand Up @@ -6923,6 +6924,11 @@ const uint32_t kEffectiveTE = 0x0018 + uint32_t(0x9082 << 16);
break;
d.shimGradientZ = dcmIntSS(lLength, &buffer[lPos], d.isLittleEndian);
break;
case kVasCollapseFlagGE: //SS issue 690 16=DiffusionDtiDicomValue
if (d.manufacturer != kMANUFACTURER_GE)
break;
diffusionDirectionTypeGE = dcmIntSS(lLength, &buffer[lPos], d.isLittleEndian);
break;
case kPrescanReuseString: //LO
if (d.manufacturer != kMANUFACTURER_GE)
break;
Expand Down

0 comments on commit e1c6845

Please sign in to comment.