Skip to content

Commit

Permalink
GE step description (#790)
Browse files Browse the repository at this point in the history
  • Loading branch information
neurolabusc committed Feb 14, 2024
1 parent 6a78470 commit 4c48bce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion console/nii_dicom.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ extern "C" {
#define kCPUsuf " " //unknown CPU
#endif

#define kDCMdate "v1.0.20240123"
#define kDCMdate "v1.0.20240202"
#define kDCMvers kDCMdate " " kJP2suf kLSsuf kCCsuf kCPUsuf

static const int kMaxEPI3D = 1024; //maximum number of EPI images in Siemens Mosaic
Expand Down
5 changes: 3 additions & 2 deletions console/nii_dicom_batch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6421,8 +6421,9 @@ void reportProtocolBlockGE(struct TDICOMdata *d, const char *filename, int isVer
char ioptGE[3000] = "";
char seqName[kDICOMStr] = "";
geProtocolBlock(filename, d->protocolBlockStartGE, d->protocolBlockLengthGE, isVerbose, &sliceOrderGE, &viewOrderGE, &mbAccel, &nSlices, &groupDelay, ioptGE, seqName);
if (strlen(d->procedureStepDescription) < 2)
strcpy(d->procedureStepDescription, seqName);
//if (strlen(d->procedureStepDescription) < 2)
// strcpy(d->procedureStepDescription, seqName);
strcat(d->procedureStepDescription, seqName); //issue790
#endif
} //bidsGE

Expand Down

0 comments on commit 4c48bce

Please sign in to comment.