Skip to content

Commit

Permalink
ENH: replace temporary codes with standard ones
Browse files Browse the repository at this point in the history
CP-1665 became standard in 2017a
  • Loading branch information
fedorov committed Jun 30, 2017
1 parent 91ee3d9 commit f8486ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libsrc/ParametricMapConverter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ namespace dcmqi {

if(metaInfo.metaInfoRoot.isMember("ModelFittingMethodCode")){
ContentItemMacro* fittingMethod = new ContentItemMacro;
CodeSequenceMacro* qCodeName = new CodeSequenceMacro("DWMPxxxxx2", "99QIICR", "Model fitting method");
CodeSequenceMacro* qCodeName = new CodeSequenceMacro("113241", "DCM", "Model fitting method");
CodeSequenceMacro* qSpec = new CodeSequenceMacro(
metaInfo.metaInfoRoot["ModelFittingMethodCode"]["CodeValue"].asCString(),
metaInfo.metaInfoRoot["ModelFittingMethodCode"]["CodingSchemeDesignator"].asCString(),
Expand All @@ -244,7 +244,7 @@ namespace dcmqi {
for(int bvalId=0;bvalId<metaInfo.metaInfoRoot["SourceImageDiffusionBValues"].size();bvalId++){
ContentItemMacro* bval = new ContentItemMacro;
CodeSequenceMacro* bvalUnits = new CodeSequenceMacro("s/mm2", "UCUM", "seconds per square millimeter");
CodeSequenceMacro* qCodeName = new CodeSequenceMacro("DWMPxxxxx1", "99QIICR", "Source image diffusion b-value");
CodeSequenceMacro* qCodeName = new CodeSequenceMacro("113240", "DCM", "Source image diffusion b-value");

if (!bval || !bvalUnits || !qCodeName)
{
Expand Down

0 comments on commit f8486ba

Please sign in to comment.