Skip to content

Commit

Permalink
Update dcm_qa submodule.
Browse files Browse the repository at this point in the history
  • Loading branch information
neurolabusc committed Oct 7, 2021
1 parent b974ddc commit 48f369d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions console/nii_dicom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7262,8 +7262,6 @@ const uint32_t kEffectiveTE = 0x0018 + (0x9082 << 16);
bool isScaleVaries = false;
//setting j = 1 in next few lines is a hack, just in case TE/scale/intercept listed AFTER dimensionIndexValues
int j = 0;
//if (d.xyzDim[3] > 1) //not sure why this was included, disrupts Philips multiPLD ASL where each slice has different triggertime
// j = 1;
for (int i = 0; i < d.xyzDim[4]; i++) {
int slice = j + (i * d.xyzDim[3]);
//dti4D->gradDynVol[i] = 0; //only PAR/REC
Expand Down
6 changes: 3 additions & 3 deletions console/nii_dicom_batch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1743,10 +1743,10 @@ tse3d: T2*/
if (d.durationLabelPulseGE > 0) {
json_Float(fp, "\t\"LabelingDuration\": %g,\n", d.durationLabelPulseGE / 1000.0);
json_Float(fp, "\t\"PostLabelingDelay\": %g,\n", d.TI / 1000.0); //For GE ASL: InversionTime -> Post-label delay
json_Float(fp, "\t\"NumberOfPointsPerArm\": %g,\n", d.numberOfPointsPerArm);
json_Float(fp, "\t\"NumberOfArms\": %g,\n", d.numberOfArms);
}
json_Float(fp, "\t\"NumberOfPointsPerArm\": %g,\n", d.numberOfPointsPerArm);
json_Float(fp, "\t\"NumberOfArms\": %g,\n", d.numberOfArms);
json_Float(fp, "\t\"NumberOfExcitations\": %g,\n", d.numberOfExcitations);
if (d.numberOfExcitations > 1) json_Float(fp, "\t\"NumberOfExcitations\": %g,\n", d.numberOfExcitations);
if ((d.CSA.multiBandFactor > 1) && (d.modality == kMODALITY_MR)) //AccelFactorSlice
fprintf(fp, "\t\"MultibandAccelerationFactor\": %d,\n", d.CSA.multiBandFactor);
json_Float(fp, "\t\"PercentPhaseFOV\": %g,\n", d.phaseFieldofView);
Expand Down

0 comments on commit 48f369d

Please sign in to comment.