Mercurial > hg > orthanc
annotate OrthancFramework/Sources/DicomParsing/DicomModification_Anonymization2021b.impl.h @ 4934:94a7b681b340 more-tags
added configuration for extra main dicom tags + save signature in metadata + show warning if inconsistent main dicom tags
author | Alain Mazy <am@osimis.io> |
---|---|
date | Thu, 10 Mar 2022 09:03:24 +0100 |
parents | 2e850edf03d6 |
children |
rev | line source |
---|---|
4678
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
1 // RelationshipsVisitor handles (0x0008, 0x1140) /* X/Z/U* */ // Referenced Image Sequence |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
2 // RelationshipsVisitor handles (0x0008, 0x2112) /* X/Z/U* */ // Source Image Sequence |
4677
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
3 // Tag (0x0008, 0x0018) is set in Apply() /* U */ // SOP Instance UID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
4 // Tag (0x0010, 0x0010) is set below (*) /* Z */ // Patient's Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
5 // Tag (0x0010, 0x0020) is set below (*) /* Z */ // Patient ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
6 // Tag (0x0020, 0x000d) is set in Apply() /* U */ // Study Instance UID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
7 // Tag (0x0020, 0x000e) is set in Apply() /* U */ // Series Instance UID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
8 clearings_.insert(DicomTag(0x0008, 0x0020)); // Study Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
9 clearings_.insert(DicomTag(0x0008, 0x0023)); /* Z/D */ // Content Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
10 clearings_.insert(DicomTag(0x0008, 0x0030)); // Study Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
11 clearings_.insert(DicomTag(0x0008, 0x0033)); /* Z/D */ // Content Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
12 clearings_.insert(DicomTag(0x0008, 0x0050)); // Accession Number |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
13 clearings_.insert(DicomTag(0x0008, 0x0090)); // Referring Physician's Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
14 clearings_.insert(DicomTag(0x0008, 0x009c)); // Consulting Physician's Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
15 clearings_.insert(DicomTag(0x0010, 0x0030)); // Patient's Birth Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
16 clearings_.insert(DicomTag(0x0010, 0x0040)); // Patient's Sex |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
17 clearings_.insert(DicomTag(0x0012, 0x0010)); /* D */ // Clinical Trial Sponsor Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
18 clearings_.insert(DicomTag(0x0012, 0x0020)); /* D */ // Clinical Trial Protocol ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
19 clearings_.insert(DicomTag(0x0012, 0x0021)); // Clinical Trial Protocol Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
20 clearings_.insert(DicomTag(0x0012, 0x0030)); // Clinical Trial Site ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
21 clearings_.insert(DicomTag(0x0012, 0x0031)); // Clinical Trial Site Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
22 clearings_.insert(DicomTag(0x0012, 0x0040)); /* D */ // Clinical Trial Subject ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
23 clearings_.insert(DicomTag(0x0012, 0x0042)); /* D */ // Clinical Trial Subject Reading ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
24 clearings_.insert(DicomTag(0x0012, 0x0050)); // Clinical Trial Time Point ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
25 clearings_.insert(DicomTag(0x0012, 0x0060)); // Clinical Trial Coordinating Center Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
26 clearings_.insert(DicomTag(0x0012, 0x0081)); /* D */ // Clinical Trial Protocol Ethics Committee Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
27 clearings_.insert(DicomTag(0x0018, 0x0010)); /* Z/D */ // Contrast/Bolus Agent |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
28 clearings_.insert(DicomTag(0x0018, 0x11bb)); /* D */ // Acquisition Field Of View Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
29 clearings_.insert(DicomTag(0x0018, 0x9367)); /* D */ // X-Ray Source ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
30 clearings_.insert(DicomTag(0x0018, 0x9369)); /* D */ // Source Start DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
31 clearings_.insert(DicomTag(0x0018, 0x936a)); /* D */ // Source End DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
32 clearings_.insert(DicomTag(0x0018, 0x9371)); /* D */ // X-Ray Detector ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
33 clearings_.insert(DicomTag(0x0020, 0x0010)); // Study ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
34 clearings_.insert(DicomTag(0x0034, 0x0001)); /* D */ // Flow Identifier Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
35 clearings_.insert(DicomTag(0x0034, 0x0002)); /* D */ // Flow Identifier |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
36 clearings_.insert(DicomTag(0x0034, 0x0005)); /* D */ // Source Identifier |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
37 clearings_.insert(DicomTag(0x0034, 0x0007)); /* D */ // Frame Origin Timestamp |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
38 clearings_.insert(DicomTag(0x003a, 0x0314)); /* D */ // Impedance Measurement DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
39 clearings_.insert(DicomTag(0x0040, 0x0512)); /* D */ // Container Identifier |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
40 clearings_.insert(DicomTag(0x0040, 0x0513)); // Issuer of the Container Identifier Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
41 clearings_.insert(DicomTag(0x0040, 0x0551)); /* D */ // Specimen Identifier |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
42 clearings_.insert(DicomTag(0x0040, 0x0562)); // Issuer of the Specimen Identifier Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
43 clearings_.insert(DicomTag(0x0040, 0x0610)); // Specimen Preparation Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
44 clearings_.insert(DicomTag(0x0040, 0x1101)); /* D */ // Person Identification Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
45 clearings_.insert(DicomTag(0x0040, 0x2016)); // Placer Order Number / Imaging Service Request |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
46 clearings_.insert(DicomTag(0x0040, 0x2017)); // Filler Order Number / Imaging Service Request |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
47 clearings_.insert(DicomTag(0x0040, 0xa027)); /* D */ // Verifying Organization |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
48 clearings_.insert(DicomTag(0x0040, 0xa073)); /* D */ // Verifying Observer Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
49 clearings_.insert(DicomTag(0x0040, 0xa075)); /* D */ // Verifying Observer Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
50 clearings_.insert(DicomTag(0x0040, 0xa088)); // Verifying Observer Identification Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
51 clearings_.insert(DicomTag(0x0040, 0xa123)); /* D */ // Person Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
52 clearings_.insert(DicomTag(0x0040, 0xa730)); /* D */ // Content Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
53 clearings_.insert(DicomTag(0x0070, 0x0001)); /* D */ // Graphic Annotation Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
54 clearings_.insert(DicomTag(0x0070, 0x0084)); /* Z/D */ // Content Creator's Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
55 clearings_.insert(DicomTag(0x3006, 0x0002)); /* D */ // Structure Set Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
56 clearings_.insert(DicomTag(0x3006, 0x0008)); // Structure Set Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
57 clearings_.insert(DicomTag(0x3006, 0x0009)); // Structure Set Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
58 clearings_.insert(DicomTag(0x3006, 0x0026)); // ROI Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
59 clearings_.insert(DicomTag(0x3006, 0x00a6)); // ROI Interpreter |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
60 clearings_.insert(DicomTag(0x300a, 0x0002)); /* D */ // RT Plan Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
61 clearings_.insert(DicomTag(0x300a, 0x0608)); /* D */ // Treatment Position Group Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
62 clearings_.insert(DicomTag(0x300a, 0x0611)); // RT Accessory Holder Slot ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
63 clearings_.insert(DicomTag(0x300a, 0x0615)); // RT Accessory Device Slot ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
64 clearings_.insert(DicomTag(0x300a, 0x0619)); /* D */ // Radiation Dose Identification Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
65 clearings_.insert(DicomTag(0x300a, 0x0623)); /* D */ // Radiation Dose In-Vivo Measurement Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
66 clearings_.insert(DicomTag(0x300a, 0x062a)); /* D */ // RT Tolerance Set Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
67 clearings_.insert(DicomTag(0x300a, 0x067c)); /* D */ // Radiation Generation Mode Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
68 clearings_.insert(DicomTag(0x300a, 0x067d)); // Radiation Generation Mode Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
69 clearings_.insert(DicomTag(0x300a, 0x0734)); /* D */ // Treatment Tolerance Violation Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
70 clearings_.insert(DicomTag(0x300a, 0x0736)); /* D */ // Treatment Tolerance Violation DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
71 clearings_.insert(DicomTag(0x300a, 0x073a)); /* D */ // Recorded RT Control Point DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
72 clearings_.insert(DicomTag(0x300a, 0x0741)); /* D */ // Interlock DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
73 clearings_.insert(DicomTag(0x300a, 0x0742)); /* D */ // Interlock Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
74 clearings_.insert(DicomTag(0x300a, 0x0760)); /* D */ // Override DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
75 clearings_.insert(DicomTag(0x300a, 0x0783)); /* D */ // Interlock Origin Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
76 clearings_.insert(DicomTag(0x3010, 0x000f)); // Conceptual Volume Combination Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
77 clearings_.insert(DicomTag(0x3010, 0x0017)); // Conceptual Volume Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
78 clearings_.insert(DicomTag(0x3010, 0x001b)); // Device Alternate Identifier |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
79 clearings_.insert(DicomTag(0x3010, 0x002d)); /* D */ // Device Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
80 clearings_.insert(DicomTag(0x3010, 0x0033)); /* D */ // User Content Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
81 clearings_.insert(DicomTag(0x3010, 0x0034)); /* D */ // User Content Long Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
82 clearings_.insert(DicomTag(0x3010, 0x0035)); /* D */ // Entity Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
83 clearings_.insert(DicomTag(0x3010, 0x0038)); /* D */ // Entity Long Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
84 clearings_.insert(DicomTag(0x3010, 0x0043)); // Manufacturer's Device Identifier |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
85 clearings_.insert(DicomTag(0x3010, 0x0054)); /* D */ // RT Prescription Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
86 clearings_.insert(DicomTag(0x3010, 0x005a)); // RT Physician Intent Narrative |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
87 clearings_.insert(DicomTag(0x3010, 0x005c)); // Reason for Superseding |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
88 clearings_.insert(DicomTag(0x3010, 0x0077)); /* D */ // Treatment Site |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
89 clearings_.insert(DicomTag(0x3010, 0x007a)); // Treatment Technique Notes |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
90 clearings_.insert(DicomTag(0x3010, 0x007b)); // Prescription Notes |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
91 clearings_.insert(DicomTag(0x3010, 0x007f)); // Fractionation Notes |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
92 clearings_.insert(DicomTag(0x3010, 0x0081)); // Prescription Notes Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
93 removals_.insert(DicomTag(0x0000, 0x1000)); // Affected SOP Instance UID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
94 removals_.insert(DicomTag(0x0008, 0x0015)); // Instance Coercion DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
95 removals_.insert(DicomTag(0x0008, 0x0021)); /* X/D */ // Series Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
96 removals_.insert(DicomTag(0x0008, 0x0022)); /* X/Z */ // Acquisition Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
97 removals_.insert(DicomTag(0x0008, 0x0024)); // Overlay Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
98 removals_.insert(DicomTag(0x0008, 0x0025)); // Curve Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
99 removals_.insert(DicomTag(0x0008, 0x002a)); /* X/Z/D */ // Acquisition DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
100 removals_.insert(DicomTag(0x0008, 0x0031)); /* X/D */ // Series Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
101 removals_.insert(DicomTag(0x0008, 0x0032)); /* X/Z */ // Acquisition Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
102 removals_.insert(DicomTag(0x0008, 0x0034)); // Overlay Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
103 removals_.insert(DicomTag(0x0008, 0x0035)); // Curve Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
104 removals_.insert(DicomTag(0x0008, 0x0080)); /* X/Z/D */ // Institution Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
105 removals_.insert(DicomTag(0x0008, 0x0081)); // Institution Address |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
106 removals_.insert(DicomTag(0x0008, 0x0082)); /* X/Z/D */ // Institution Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
107 removals_.insert(DicomTag(0x0008, 0x0092)); // Referring Physician's Address |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
108 removals_.insert(DicomTag(0x0008, 0x0094)); // Referring Physician's Telephone Numbers |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
109 removals_.insert(DicomTag(0x0008, 0x0096)); // Referring Physician Identification Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
110 removals_.insert(DicomTag(0x0008, 0x009d)); // Consulting Physician Identification Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
111 removals_.insert(DicomTag(0x0008, 0x0201)); // Timezone Offset From UTC |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
112 removals_.insert(DicomTag(0x0008, 0x1010)); /* X/Z/D */ // Station Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
113 removals_.insert(DicomTag(0x0008, 0x1030)); // Study Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
114 removals_.insert(DicomTag(0x0008, 0x103e)); // Series Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
115 removals_.insert(DicomTag(0x0008, 0x1040)); // Institutional Department Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
116 removals_.insert(DicomTag(0x0008, 0x1041)); // Institutional Department Type Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
117 removals_.insert(DicomTag(0x0008, 0x1048)); // Physician(s) of Record |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
118 removals_.insert(DicomTag(0x0008, 0x1049)); // Physician(s) of Record Identification Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
119 removals_.insert(DicomTag(0x0008, 0x1050)); // Performing Physician's Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
120 removals_.insert(DicomTag(0x0008, 0x1052)); // Performing Physician Identification Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
121 removals_.insert(DicomTag(0x0008, 0x1060)); // Name of Physician(s) Reading Study |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
122 removals_.insert(DicomTag(0x0008, 0x1062)); // Physician(s) Reading Study Identification Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
123 removals_.insert(DicomTag(0x0008, 0x1070)); /* X/Z/D */ // Operators' Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
124 removals_.insert(DicomTag(0x0008, 0x1072)); /* X/D */ // Operator Identification Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
125 removals_.insert(DicomTag(0x0008, 0x1080)); // Admitting Diagnoses Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
126 removals_.insert(DicomTag(0x0008, 0x1084)); // Admitting Diagnoses Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
127 removals_.insert(DicomTag(0x0008, 0x1110)); /* X/Z */ // Referenced Study Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
128 removals_.insert(DicomTag(0x0008, 0x1111)); /* X/Z/D */ // Referenced Performed Procedure Step Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
129 removals_.insert(DicomTag(0x0008, 0x1120)); // Referenced Patient Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
130 removals_.insert(DicomTag(0x0008, 0x2111)); // Derivation Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
131 removals_.insert(DicomTag(0x0008, 0x4000)); // Identifying Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
132 removals_.insert(DicomTag(0x0010, 0x0021)); // Issuer of Patient ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
133 removals_.insert(DicomTag(0x0010, 0x0032)); // Patient's Birth Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
134 removals_.insert(DicomTag(0x0010, 0x0050)); // Patient's Insurance Plan Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
135 removals_.insert(DicomTag(0x0010, 0x0101)); // Patient's Primary Language Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
136 removals_.insert(DicomTag(0x0010, 0x0102)); // Patient's Primary Language Modifier Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
137 removals_.insert(DicomTag(0x0010, 0x1000)); // Other Patient IDs |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
138 removals_.insert(DicomTag(0x0010, 0x1001)); // Other Patient Names |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
139 removals_.insert(DicomTag(0x0010, 0x1002)); // Other Patient IDs Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
140 removals_.insert(DicomTag(0x0010, 0x1005)); // Patient's Birth Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
141 removals_.insert(DicomTag(0x0010, 0x1010)); // Patient's Age |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
142 removals_.insert(DicomTag(0x0010, 0x1020)); // Patient's Size |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
143 removals_.insert(DicomTag(0x0010, 0x1030)); // Patient's Weight |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
144 removals_.insert(DicomTag(0x0010, 0x1040)); // Patient's Address |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
145 removals_.insert(DicomTag(0x0010, 0x1050)); // Insurance Plan Identification |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
146 removals_.insert(DicomTag(0x0010, 0x1060)); // Patient's Mother's Birth Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
147 removals_.insert(DicomTag(0x0010, 0x1080)); // Military Rank |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
148 removals_.insert(DicomTag(0x0010, 0x1081)); // Branch of Service |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
149 removals_.insert(DicomTag(0x0010, 0x1090)); // Medical Record Locator |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
150 removals_.insert(DicomTag(0x0010, 0x1100)); // Referenced Patient Photo Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
151 removals_.insert(DicomTag(0x0010, 0x2000)); // Medical Alerts |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
152 removals_.insert(DicomTag(0x0010, 0x2110)); // Allergies |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
153 removals_.insert(DicomTag(0x0010, 0x2150)); // Country of Residence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
154 removals_.insert(DicomTag(0x0010, 0x2152)); // Region of Residence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
155 removals_.insert(DicomTag(0x0010, 0x2154)); // Patient's Telephone Numbers |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
156 removals_.insert(DicomTag(0x0010, 0x2155)); // Patient's Telecom Information |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
157 removals_.insert(DicomTag(0x0010, 0x2160)); // Ethnic Group |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
158 removals_.insert(DicomTag(0x0010, 0x2180)); // Occupation |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
159 removals_.insert(DicomTag(0x0010, 0x21a0)); // Smoking Status |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
160 removals_.insert(DicomTag(0x0010, 0x21b0)); // Additional Patient History |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
161 removals_.insert(DicomTag(0x0010, 0x21c0)); // Pregnancy Status |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
162 removals_.insert(DicomTag(0x0010, 0x21d0)); // Last Menstrual Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
163 removals_.insert(DicomTag(0x0010, 0x21f0)); // Patient's Religious Preference |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
164 removals_.insert(DicomTag(0x0010, 0x2203)); /* X/Z */ // Patient's Sex Neutered |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
165 removals_.insert(DicomTag(0x0010, 0x2297)); // Responsible Person |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
166 removals_.insert(DicomTag(0x0010, 0x2299)); // Responsible Organization |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
167 removals_.insert(DicomTag(0x0010, 0x4000)); // Patient Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
168 removals_.insert(DicomTag(0x0012, 0x0051)); // Clinical Trial Time Point Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
169 removals_.insert(DicomTag(0x0012, 0x0071)); // Clinical Trial Series ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
170 removals_.insert(DicomTag(0x0012, 0x0072)); // Clinical Trial Series Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
171 removals_.insert(DicomTag(0x0012, 0x0082)); // Clinical Trial Protocol Ethics Committee Approval Number |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
172 removals_.insert(DicomTag(0x0016, 0x002b)); // Maker Note |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
173 removals_.insert(DicomTag(0x0016, 0x004b)); // Device Setting Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
174 removals_.insert(DicomTag(0x0016, 0x004d)); // Camera Owner Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
175 removals_.insert(DicomTag(0x0016, 0x004e)); // Lens Specification |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
176 removals_.insert(DicomTag(0x0016, 0x004f)); // Lens Make |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
177 removals_.insert(DicomTag(0x0016, 0x0050)); // Lens Model |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
178 removals_.insert(DicomTag(0x0016, 0x0051)); // Lens Serial Number |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
179 removals_.insert(DicomTag(0x0016, 0x0070)); // GPS Version ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
180 removals_.insert(DicomTag(0x0016, 0x0071)); // GPS Latitude Ref |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
181 removals_.insert(DicomTag(0x0016, 0x0072)); // GPS Latitude |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
182 removals_.insert(DicomTag(0x0016, 0x0073)); // GPS Longitude Ref |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
183 removals_.insert(DicomTag(0x0016, 0x0074)); // GPS Longitude |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
184 removals_.insert(DicomTag(0x0016, 0x0075)); // GPS Altitude Ref |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
185 removals_.insert(DicomTag(0x0016, 0x0076)); // GPS Altitude |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
186 removals_.insert(DicomTag(0x0016, 0x0077)); // GPS Time Stamp |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
187 removals_.insert(DicomTag(0x0016, 0x0078)); // GPS Satellites |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
188 removals_.insert(DicomTag(0x0016, 0x0079)); // GPS Status |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
189 removals_.insert(DicomTag(0x0016, 0x007a)); // GPS Measure Mode |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
190 removals_.insert(DicomTag(0x0016, 0x007b)); // GPS DOP |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
191 removals_.insert(DicomTag(0x0016, 0x007c)); // GPS Speed Ref |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
192 removals_.insert(DicomTag(0x0016, 0x007d)); // GPS Speed |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
193 removals_.insert(DicomTag(0x0016, 0x007e)); // GPS Track Ref |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
194 removals_.insert(DicomTag(0x0016, 0x007f)); // GPS Track |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
195 removals_.insert(DicomTag(0x0016, 0x0080)); // GPS Img Direction Ref |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
196 removals_.insert(DicomTag(0x0016, 0x0081)); // GPS Img Direction |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
197 removals_.insert(DicomTag(0x0016, 0x0082)); // GPS Map Datum |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
198 removals_.insert(DicomTag(0x0016, 0x0083)); // GPS Dest Latitude Ref |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
199 removals_.insert(DicomTag(0x0016, 0x0084)); // GPS Dest Latitude |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
200 removals_.insert(DicomTag(0x0016, 0x0085)); // GPS Dest Longitude Ref |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
201 removals_.insert(DicomTag(0x0016, 0x0086)); // GPS Dest Longitude |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
202 removals_.insert(DicomTag(0x0016, 0x0087)); // GPS Dest Bearing Ref |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
203 removals_.insert(DicomTag(0x0016, 0x0088)); // GPS Dest Bearing |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
204 removals_.insert(DicomTag(0x0016, 0x0089)); // GPS Dest Distance Ref |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
205 removals_.insert(DicomTag(0x0016, 0x008a)); // GPS Dest Distance |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
206 removals_.insert(DicomTag(0x0016, 0x008b)); // GPS Processing Method |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
207 removals_.insert(DicomTag(0x0016, 0x008c)); // GPS Area Information |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
208 removals_.insert(DicomTag(0x0016, 0x008d)); // GPS Date Stamp |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
209 removals_.insert(DicomTag(0x0016, 0x008e)); // GPS Differential |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
210 removals_.insert(DicomTag(0x0018, 0x1000)); /* X/Z/D */ // Device Serial Number |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
211 removals_.insert(DicomTag(0x0018, 0x1004)); // Plate ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
212 removals_.insert(DicomTag(0x0018, 0x1005)); // Generator ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
213 removals_.insert(DicomTag(0x0018, 0x1007)); // Cassette ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
214 removals_.insert(DicomTag(0x0018, 0x1008)); // Gantry ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
215 removals_.insert(DicomTag(0x0018, 0x1009)); // Unique Device Identifier |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
216 removals_.insert(DicomTag(0x0018, 0x100a)); // UDI Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
217 removals_.insert(DicomTag(0x0018, 0x1030)); /* X/D */ // Protocol Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
218 removals_.insert(DicomTag(0x0018, 0x1400)); /* X/D */ // Acquisition Device Processing Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
219 removals_.insert(DicomTag(0x0018, 0x4000)); // Acquisition Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
220 removals_.insert(DicomTag(0x0018, 0x5011)); // Transducer Identification Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
221 removals_.insert(DicomTag(0x0018, 0x700a)); /* X/D */ // Detector ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
222 removals_.insert(DicomTag(0x0018, 0x9185)); // Respiratory Motion Compensation Technique Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
223 removals_.insert(DicomTag(0x0018, 0x9373)); // X-Ray Detector Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
224 removals_.insert(DicomTag(0x0018, 0x937b)); // Multi-energy Acquisition Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
225 removals_.insert(DicomTag(0x0018, 0x937f)); // Decomposition Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
226 removals_.insert(DicomTag(0x0018, 0x9424)); // Acquisition Protocol Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
227 removals_.insert(DicomTag(0x0018, 0x9516)); /* X/D */ // Start Acquisition DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
228 removals_.insert(DicomTag(0x0018, 0x9517)); /* X/D */ // End Acquisition DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
229 removals_.insert(DicomTag(0x0018, 0x9937)); // Requested Series Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
230 removals_.insert(DicomTag(0x0018, 0xa003)); // Contribution Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
231 removals_.insert(DicomTag(0x0020, 0x3401)); // Modifying Device ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
232 removals_.insert(DicomTag(0x0020, 0x3406)); // Modified Image Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
233 removals_.insert(DicomTag(0x0020, 0x4000)); // Image Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
234 removals_.insert(DicomTag(0x0020, 0x9158)); // Frame Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
235 removals_.insert(DicomTag(0x0028, 0x4000)); // Image Presentation Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
236 removals_.insert(DicomTag(0x0032, 0x0012)); // Study ID Issuer |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
237 removals_.insert(DicomTag(0x0032, 0x1020)); // Scheduled Study Location |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
238 removals_.insert(DicomTag(0x0032, 0x1021)); // Scheduled Study Location AE Title |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
239 removals_.insert(DicomTag(0x0032, 0x1030)); // Reason for Study |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
240 removals_.insert(DicomTag(0x0032, 0x1032)); // Requesting Physician |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
241 removals_.insert(DicomTag(0x0032, 0x1033)); // Requesting Service |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
242 removals_.insert(DicomTag(0x0032, 0x1060)); /* X/Z */ // Requested Procedure Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
243 removals_.insert(DicomTag(0x0032, 0x1066)); // Reason for Visit |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
244 removals_.insert(DicomTag(0x0032, 0x1067)); // Reason for Visit Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
245 removals_.insert(DicomTag(0x0032, 0x1070)); // Requested Contrast Agent |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
246 removals_.insert(DicomTag(0x0032, 0x4000)); // Study Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
247 removals_.insert(DicomTag(0x0038, 0x0004)); // Referenced Patient Alias Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
248 removals_.insert(DicomTag(0x0038, 0x0010)); // Admission ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
249 removals_.insert(DicomTag(0x0038, 0x0011)); // Issuer of Admission ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
250 removals_.insert(DicomTag(0x0038, 0x0014)); // Issuer of Admission ID Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
251 removals_.insert(DicomTag(0x0038, 0x001e)); // Scheduled Patient Institution Residence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
252 removals_.insert(DicomTag(0x0038, 0x0020)); // Admitting Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
253 removals_.insert(DicomTag(0x0038, 0x0021)); // Admitting Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
254 removals_.insert(DicomTag(0x0038, 0x0040)); // Discharge Diagnosis Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
255 removals_.insert(DicomTag(0x0038, 0x0050)); // Special Needs |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
256 removals_.insert(DicomTag(0x0038, 0x0060)); // Service Episode ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
257 removals_.insert(DicomTag(0x0038, 0x0061)); // Issuer of Service Episode ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
258 removals_.insert(DicomTag(0x0038, 0x0062)); // Service Episode Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
259 removals_.insert(DicomTag(0x0038, 0x0064)); // Issuer of Service Episode ID Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
260 removals_.insert(DicomTag(0x0038, 0x0300)); // Current Patient Location |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
261 removals_.insert(DicomTag(0x0038, 0x0400)); // Patient's Institution Residence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
262 removals_.insert(DicomTag(0x0038, 0x0500)); // Patient State |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
263 removals_.insert(DicomTag(0x0038, 0x4000)); // Visit Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
264 removals_.insert(DicomTag(0x0040, 0x0001)); // Scheduled Station AE Title |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
265 removals_.insert(DicomTag(0x0040, 0x0002)); // Scheduled Procedure Step Start Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
266 removals_.insert(DicomTag(0x0040, 0x0003)); // Scheduled Procedure Step Start Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
267 removals_.insert(DicomTag(0x0040, 0x0004)); // Scheduled Procedure Step End Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
268 removals_.insert(DicomTag(0x0040, 0x0005)); // Scheduled Procedure Step End Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
269 removals_.insert(DicomTag(0x0040, 0x0006)); // Scheduled Performing Physician's Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
270 removals_.insert(DicomTag(0x0040, 0x0007)); // Scheduled Procedure Step Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
271 removals_.insert(DicomTag(0x0040, 0x0009)); // Scheduled Procedure Step ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
272 removals_.insert(DicomTag(0x0040, 0x000b)); // Scheduled Performing Physician Identification Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
273 removals_.insert(DicomTag(0x0040, 0x0010)); // Scheduled Station Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
274 removals_.insert(DicomTag(0x0040, 0x0011)); // Scheduled Procedure Step Location |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
275 removals_.insert(DicomTag(0x0040, 0x0012)); // Pre-Medication |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
276 removals_.insert(DicomTag(0x0040, 0x0241)); // Performed Station AE Title |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
277 removals_.insert(DicomTag(0x0040, 0x0242)); // Performed Station Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
278 removals_.insert(DicomTag(0x0040, 0x0243)); // Performed Location |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
279 removals_.insert(DicomTag(0x0040, 0x0244)); // Performed Procedure Step Start Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
280 removals_.insert(DicomTag(0x0040, 0x0245)); // Performed Procedure Step Start Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
281 removals_.insert(DicomTag(0x0040, 0x0250)); // Performed Procedure Step End Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
282 removals_.insert(DicomTag(0x0040, 0x0251)); // Performed Procedure Step End Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
283 removals_.insert(DicomTag(0x0040, 0x0253)); // Performed Procedure Step ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
284 removals_.insert(DicomTag(0x0040, 0x0254)); // Performed Procedure Step Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
285 removals_.insert(DicomTag(0x0040, 0x0275)); // Request Attributes Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
286 removals_.insert(DicomTag(0x0040, 0x0280)); // Comments on the Performed Procedure Step |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
287 removals_.insert(DicomTag(0x0040, 0x0310)); // Comments on Radiation Dose |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
288 removals_.insert(DicomTag(0x0040, 0x050a)); // Specimen Accession Number |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
289 removals_.insert(DicomTag(0x0040, 0x051a)); // Container Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
290 removals_.insert(DicomTag(0x0040, 0x0555)); /* X/Z */ // Acquisition Context Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
291 removals_.insert(DicomTag(0x0040, 0x0600)); // Specimen Short Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
292 removals_.insert(DicomTag(0x0040, 0x0602)); // Specimen Detailed Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
293 removals_.insert(DicomTag(0x0040, 0x06fa)); // Slide Identifier |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
294 removals_.insert(DicomTag(0x0040, 0x1001)); // Requested Procedure ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
295 removals_.insert(DicomTag(0x0040, 0x1002)); // Reason for the Requested Procedure |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
296 removals_.insert(DicomTag(0x0040, 0x1004)); // Patient Transport Arrangements |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
297 removals_.insert(DicomTag(0x0040, 0x1005)); // Requested Procedure Location |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
298 removals_.insert(DicomTag(0x0040, 0x100a)); // Reason for Requested Procedure Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
299 removals_.insert(DicomTag(0x0040, 0x1010)); // Names of Intended Recipients of Results |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
300 removals_.insert(DicomTag(0x0040, 0x1011)); // Intended Recipients of Results Identification Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
301 removals_.insert(DicomTag(0x0040, 0x1102)); // Person's Address |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
302 removals_.insert(DicomTag(0x0040, 0x1103)); // Person's Telephone Numbers |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
303 removals_.insert(DicomTag(0x0040, 0x1104)); // Person's Telecom Information |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
304 removals_.insert(DicomTag(0x0040, 0x1400)); // Requested Procedure Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
305 removals_.insert(DicomTag(0x0040, 0x2001)); // Reason for the Imaging Service Request |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
306 removals_.insert(DicomTag(0x0040, 0x2008)); // Order Entered By |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
307 removals_.insert(DicomTag(0x0040, 0x2009)); // Order Enterer's Location |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
308 removals_.insert(DicomTag(0x0040, 0x2010)); // Order Callback Phone Number |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
309 removals_.insert(DicomTag(0x0040, 0x2011)); // Order Callback Telecom Information |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
310 removals_.insert(DicomTag(0x0040, 0x2400)); // Imaging Service Request Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
311 removals_.insert(DicomTag(0x0040, 0x3001)); // Confidentiality Constraint on Patient Data Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
312 removals_.insert(DicomTag(0x0040, 0x4005)); // Scheduled Procedure Step Start DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
313 removals_.insert(DicomTag(0x0040, 0x4008)); // Scheduled Procedure Step Expiration DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
314 removals_.insert(DicomTag(0x0040, 0x4010)); // Scheduled Procedure Step Modification DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
315 removals_.insert(DicomTag(0x0040, 0x4011)); // Expected Completion DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
316 removals_.insert(DicomTag(0x0040, 0x4025)); // Scheduled Station Name Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
317 removals_.insert(DicomTag(0x0040, 0x4027)); // Scheduled Station Geographic Location Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
318 removals_.insert(DicomTag(0x0040, 0x4028)); // Performed Station Name Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
319 removals_.insert(DicomTag(0x0040, 0x4030)); // Performed Station Geographic Location Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
320 removals_.insert(DicomTag(0x0040, 0x4034)); // Scheduled Human Performers Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
321 removals_.insert(DicomTag(0x0040, 0x4035)); // Actual Human Performers Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
322 removals_.insert(DicomTag(0x0040, 0x4036)); // Human Performer's Organization |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
323 removals_.insert(DicomTag(0x0040, 0x4037)); // Human Performer's Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
324 removals_.insert(DicomTag(0x0040, 0x4050)); // Performed Procedure Step Start DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
325 removals_.insert(DicomTag(0x0040, 0x4051)); // Performed Procedure Step End DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
326 removals_.insert(DicomTag(0x0040, 0x4052)); // Procedure Step Cancellation DateTime |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
327 removals_.insert(DicomTag(0x0040, 0xa078)); // Author Observer Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
328 removals_.insert(DicomTag(0x0040, 0xa07a)); // Participant Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
329 removals_.insert(DicomTag(0x0040, 0xa07c)); // Custodial Organization Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
330 removals_.insert(DicomTag(0x0040, 0xa192)); // Observation Date (Trial) |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
331 removals_.insert(DicomTag(0x0040, 0xa193)); // Observation Time (Trial) |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
332 removals_.insert(DicomTag(0x0040, 0xa307)); // Current Observer (Trial) |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
333 removals_.insert(DicomTag(0x0040, 0xa352)); // Verbal Source (Trial) |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
334 removals_.insert(DicomTag(0x0040, 0xa353)); // Address (Trial) |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
335 removals_.insert(DicomTag(0x0040, 0xa354)); // Telephone Number (Trial) |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
336 removals_.insert(DicomTag(0x0040, 0xa358)); // Verbal Source Identifier Code Sequence (Trial) |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
337 removals_.insert(DicomTag(0x0050, 0x001b)); // Container Component ID |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
338 removals_.insert(DicomTag(0x0050, 0x0020)); // Device Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
339 removals_.insert(DicomTag(0x0050, 0x0021)); // Long Device Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
340 removals_.insert(DicomTag(0x0070, 0x0086)); // Content Creator's Identification Code Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
341 removals_.insert(DicomTag(0x0088, 0x0200)); // Icon Image Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
342 removals_.insert(DicomTag(0x0088, 0x0904)); // Topic Title |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
343 removals_.insert(DicomTag(0x0088, 0x0906)); // Topic Subject |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
344 removals_.insert(DicomTag(0x0088, 0x0910)); // Topic Author |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
345 removals_.insert(DicomTag(0x0088, 0x0912)); // Topic Keywords |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
346 removals_.insert(DicomTag(0x0400, 0x0402)); // Referenced Digital Signature Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
347 removals_.insert(DicomTag(0x0400, 0x0403)); // Referenced SOP Instance MAC Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
348 removals_.insert(DicomTag(0x0400, 0x0404)); // MAC |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
349 removals_.insert(DicomTag(0x0400, 0x0550)); // Modified Attributes Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
350 removals_.insert(DicomTag(0x0400, 0x0551)); // Nonconforming Modified Attributes Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
351 removals_.insert(DicomTag(0x0400, 0x0552)); // Nonconforming Data Element Value |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
352 removals_.insert(DicomTag(0x0400, 0x0561)); // Original Attributes Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
353 removals_.insert(DicomTag(0x0400, 0x0600)); // Instance Origin Status |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
354 removals_.insert(DicomTag(0x2030, 0x0020)); // Text String |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
355 removals_.insert(DicomTag(0x2200, 0x0002)); /* X/Z */ // Label Text |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
356 removals_.insert(DicomTag(0x2200, 0x0005)); /* X/Z */ // Barcode Value |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
357 removals_.insert(DicomTag(0x3006, 0x0004)); // Structure Set Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
358 removals_.insert(DicomTag(0x3006, 0x0006)); // Structure Set Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
359 removals_.insert(DicomTag(0x3006, 0x0028)); // ROI Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
360 removals_.insert(DicomTag(0x3006, 0x0038)); // ROI Generation Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
361 removals_.insert(DicomTag(0x3006, 0x0085)); // ROI Observation Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
362 removals_.insert(DicomTag(0x3006, 0x0088)); // ROI Observation Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
363 removals_.insert(DicomTag(0x3008, 0x0054)); /* X/D */ // First Treatment Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
364 removals_.insert(DicomTag(0x3008, 0x0056)); /* X/D */ // Most Recent Treatment Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
365 removals_.insert(DicomTag(0x3008, 0x0105)); /* X/Z */ // Source Serial Number |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
366 removals_.insert(DicomTag(0x3008, 0x0250)); /* X/D */ // Treatment Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
367 removals_.insert(DicomTag(0x3008, 0x0251)); /* X/D */ // Treatment Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
368 removals_.insert(DicomTag(0x300a, 0x0003)); // RT Plan Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
369 removals_.insert(DicomTag(0x300a, 0x0004)); // RT Plan Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
370 removals_.insert(DicomTag(0x300a, 0x0006)); /* X/D */ // RT Plan Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
371 removals_.insert(DicomTag(0x300a, 0x0007)); /* X/D */ // RT Plan Time |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
372 removals_.insert(DicomTag(0x300a, 0x000e)); // Prescription Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
373 removals_.insert(DicomTag(0x300a, 0x0016)); // Dose Reference Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
374 removals_.insert(DicomTag(0x300a, 0x0072)); // Fraction Group Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
375 removals_.insert(DicomTag(0x300a, 0x00b2)); /* X/Z */ // Treatment Machine Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
376 removals_.insert(DicomTag(0x300a, 0x00c3)); // Beam Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
377 removals_.insert(DicomTag(0x300a, 0x00dd)); // Bolus Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
378 removals_.insert(DicomTag(0x300a, 0x0196)); // Fixation Device Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
379 removals_.insert(DicomTag(0x300a, 0x01a6)); // Shielding Device Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
380 removals_.insert(DicomTag(0x300a, 0x01b2)); // Setup Technique Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
381 removals_.insert(DicomTag(0x300a, 0x0216)); // Source Manufacturer |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
382 removals_.insert(DicomTag(0x300a, 0x02eb)); // Compensator Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
383 removals_.insert(DicomTag(0x300a, 0x0676)); // Equipment Frame of Reference Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
384 removals_.insert(DicomTag(0x300c, 0x0113)); // Reason for Omission Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
385 removals_.insert(DicomTag(0x300e, 0x0008)); /* X/Z */ // Reviewer Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
386 removals_.insert(DicomTag(0x3010, 0x0036)); // Entity Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
387 removals_.insert(DicomTag(0x3010, 0x0037)); // Entity Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
388 removals_.insert(DicomTag(0x3010, 0x004c)); /* X/D */ // Intended Phase Start Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
389 removals_.insert(DicomTag(0x3010, 0x004d)); /* X/D */ // Intended Phase End Date |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
390 removals_.insert(DicomTag(0x3010, 0x0056)); /* X/D */ // RT Treatment Approach Label |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
391 removals_.insert(DicomTag(0x3010, 0x0061)); // Prior Treatment Dose Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
392 removals_.insert(DicomTag(0x4000, 0x0010)); // Arbitrary |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
393 removals_.insert(DicomTag(0x4000, 0x4000)); // Text Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
394 removals_.insert(DicomTag(0x4008, 0x0042)); // Results ID Issuer |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
395 removals_.insert(DicomTag(0x4008, 0x0102)); // Interpretation Recorder |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
396 removals_.insert(DicomTag(0x4008, 0x010a)); // Interpretation Transcriber |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
397 removals_.insert(DicomTag(0x4008, 0x010b)); // Interpretation Text |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
398 removals_.insert(DicomTag(0x4008, 0x010c)); // Interpretation Author |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
399 removals_.insert(DicomTag(0x4008, 0x0111)); // Interpretation Approver Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
400 removals_.insert(DicomTag(0x4008, 0x0114)); // Physician Approving Interpretation |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
401 removals_.insert(DicomTag(0x4008, 0x0115)); // Interpretation Diagnosis Description |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
402 removals_.insert(DicomTag(0x4008, 0x0118)); // Results Distribution List Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
403 removals_.insert(DicomTag(0x4008, 0x0119)); // Distribution Name |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
404 removals_.insert(DicomTag(0x4008, 0x011a)); // Distribution Address |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
405 removals_.insert(DicomTag(0x4008, 0x0202)); // Interpretation ID Issuer |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
406 removals_.insert(DicomTag(0x4008, 0x0300)); // Impressions |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
407 removals_.insert(DicomTag(0x4008, 0x4000)); // Results Comments |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
408 removals_.insert(DicomTag(0xfffa, 0xfffa)); // Digital Signatures Sequence |
521e39b3f2c0
Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
409 removals_.insert(DicomTag(0xfffc, 0xfffc)); // Data Set Trailing Padding |
4678
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
410 removedRanges_.push_back(DicomTagRange(0x5000, 0x50ff, 0x0000, 0xffff)); // Curve Data |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
411 removedRanges_.push_back(DicomTagRange(0x6000, 0x60ff, 0x3000, 0x3000)); // Overlay Data |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
412 removedRanges_.push_back(DicomTagRange(0x6000, 0x60ff, 0x4000, 0x4000)); // Overlay Comments |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
413 uids_.insert(DicomTag(0x0000, 0x1001)); // Requested SOP Instance UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
414 uids_.insert(DicomTag(0x0002, 0x0003)); // Media Storage SOP Instance UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
415 uids_.insert(DicomTag(0x0004, 0x1511)); // Referenced SOP Instance UID in File |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
416 uids_.insert(DicomTag(0x0008, 0x0014)); // Instance Creator UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
417 uids_.insert(DicomTag(0x0008, 0x0058)); // Failed SOP Instance UID List |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
418 uids_.insert(DicomTag(0x0008, 0x1155)); // Referenced SOP Instance UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
419 uids_.insert(DicomTag(0x0008, 0x1195)); // Transaction UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
420 uids_.insert(DicomTag(0x0008, 0x3010)); // Irradiation Event UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
421 uids_.insert(DicomTag(0x0018, 0x1002)); // Device UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
422 uids_.insert(DicomTag(0x0018, 0x100b)); // Manufacturer's Device Class UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
423 uids_.insert(DicomTag(0x0018, 0x2042)); // Target UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
424 uids_.insert(DicomTag(0x0020, 0x0052)); // Frame of Reference UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
425 uids_.insert(DicomTag(0x0020, 0x0200)); // Synchronization Frame of Reference UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
426 uids_.insert(DicomTag(0x0020, 0x9161)); // Concatenation UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
427 uids_.insert(DicomTag(0x0020, 0x9164)); // Dimension Organization UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
428 uids_.insert(DicomTag(0x0028, 0x1199)); // Palette Color Lookup Table UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
429 uids_.insert(DicomTag(0x0028, 0x1214)); // Large Palette Color Lookup Table UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
430 uids_.insert(DicomTag(0x003a, 0x0310)); // Multiplex Group UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
431 uids_.insert(DicomTag(0x0040, 0x0554)); // Specimen UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
432 uids_.insert(DicomTag(0x0040, 0x4023)); // Referenced General Purpose Scheduled Procedure Step Transaction UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
433 uids_.insert(DicomTag(0x0040, 0xa124)); // UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
434 uids_.insert(DicomTag(0x0040, 0xa171)); // Observation UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
435 uids_.insert(DicomTag(0x0040, 0xa172)); // Referenced Observation UID (Trial) |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
436 uids_.insert(DicomTag(0x0040, 0xa402)); // Observation Subject UID (Trial) |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
437 uids_.insert(DicomTag(0x0040, 0xdb0c)); // Template Extension Organization UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
438 uids_.insert(DicomTag(0x0040, 0xdb0d)); // Template Extension Creator UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
439 uids_.insert(DicomTag(0x0062, 0x0021)); // Tracking UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
440 uids_.insert(DicomTag(0x0070, 0x031a)); // Fiducial UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
441 uids_.insert(DicomTag(0x0070, 0x1101)); // Presentation Display Collection UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
442 uids_.insert(DicomTag(0x0070, 0x1102)); // Presentation Sequence Collection UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
443 uids_.insert(DicomTag(0x0088, 0x0140)); // Storage Media File-set UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
444 uids_.insert(DicomTag(0x0400, 0x0100)); // Digital Signature UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
445 uids_.insert(DicomTag(0x3006, 0x0024)); // Referenced Frame of Reference UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
446 uids_.insert(DicomTag(0x3006, 0x00c2)); // Related Frame of Reference UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
447 uids_.insert(DicomTag(0x300a, 0x0013)); // Dose Reference UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
448 uids_.insert(DicomTag(0x300a, 0x0083)); // Referenced Dose Reference UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
449 uids_.insert(DicomTag(0x300a, 0x0609)); // Treatment Position Group UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
450 uids_.insert(DicomTag(0x300a, 0x0650)); // Patient Setup UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
451 uids_.insert(DicomTag(0x300a, 0x0700)); // Treatment Session UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
452 uids_.insert(DicomTag(0x3010, 0x0006)); // Conceptual Volume UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
453 uids_.insert(DicomTag(0x3010, 0x000b)); // Referenced Conceptual Volume UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
454 uids_.insert(DicomTag(0x3010, 0x0013)); // Constituent Conceptual Volume UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
455 uids_.insert(DicomTag(0x3010, 0x0015)); // Source Conceptual Volume UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
456 uids_.insert(DicomTag(0x3010, 0x0031)); // Referenced Fiducials UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
457 uids_.insert(DicomTag(0x3010, 0x003b)); // RT Treatment Phase UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
458 uids_.insert(DicomTag(0x3010, 0x006e)); // Dosimetric Objective UID |
2e850edf03d6
Full support for the anonymization of subsequences containing tags whose VR is UI
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4677
diff
changeset
|
459 uids_.insert(DicomTag(0x3010, 0x006f)); // Referenced Dosimetric Objective UID |