comparison OrthancServer/Search/HierarchicalMatcher.cpp @ 2007:655489d9165d

DicomMap::ParseDicomMetaInformation()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 09 Jun 2016 15:46:33 +0200
parents 6301bbcbcaed
children af60b784d2b8
comparison
equal deleted inserted replaced
2006:6301bbcbcaed 2007:655489d9165d
145 else 145 else
146 { 146 {
147 // DICOM specifies that searches must be case sensitive, except 147 // DICOM specifies that searches must be case sensitive, except
148 // for tags with a PN value representation 148 // for tags with a PN value representation
149 bool sensitive = true; 149 bool sensitive = true;
150 if (vr == ValueRepresentation_PatientName) 150 if (vr == ValueRepresentation_PersonName)
151 { 151 {
152 sensitive = caseSensitivePN; 152 sensitive = caseSensitivePN;
153 } 153 }
154 154
155 constraints_[tag] = IFindConstraint::ParseDicomConstraint(tag, value->GetContent(), sensitive); 155 constraints_[tag] = IFindConstraint::ParseDicomConstraint(tag, value->GetContent(), sensitive);