-
Notifications
You must be signed in to change notification settings - Fork 0
/
DicomDict.h
1208 lines (1192 loc) · 53.9 KB
/
DicomDict.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef DICOMDICT_H
#define DICOMDICT_H
// Dicom Dictionary.
// Written by Amarnath S, Mahesh Reddy S, Bangalore, India, April 2009.
// This Dicom Dictionary does not contain all tags specified in Part 6 of the Standard,
// but contains most of the tags.
// Updated by Harsha T, Apr 2010
// Inspired heavily by ImageJ
typedef struct
{
int _id;
char * _name;
} DicomTag;
const DicomTag DICOM_DICT [] = {
{0x00020002, "UIMedia Storage SOP Class UID"},
{0x00020003, "UIMedia Storage SOP Inst UID"},
{0x00020010, "UITransfer Syntax UID"},
{0x00020012, "UIImplementation Class UID"},
{0x00020013, "SHImplementation Version Name"},
{0x00020016, "AESource Application Entity Title"},
{0x00080001, "Length to End"} ,
{0x00080005, "Specific Character Set"} ,
{0x00080008, "Image Type"} ,
{0x00080010, "Recognition Code"} ,
{0x00080012, "Instance Creation Date"} ,
{0x00080013, "Instance Creation Time"} ,
{0x00080014, "Instance Creator UID"} ,
{0x00080016, "SOP Class UID"} ,
{0x00080018, "SOP Instance UID"} ,
{0x0008001A, "Related General SOP Class UID"} ,
{0x0008001B, "Original Specialized SOP Class UID"} ,
{0x00080020, "Study Date"} ,
{0x00080021, "Series Date"} ,
{0x00080022, "Acquisition Date"} ,
{0x00080023, "Content Date"} ,
{0x00080024, "Overlay Date"} ,
{0x00080025, "Curve Date"} ,
{0x0008002A, "Acquisition Datetime"} ,
{0x00080030, "Study Time"} ,
{0x00080031, "Series Time"} ,
{0x00080032, "Acquisition Time"} ,
{0x00080033, "Content Time"} ,
{0x00080034, "Overlay Time"} ,
{0x00080035, "Curve Time"} ,
{0x00080040, "Data Set Type"} ,
{0x00080041, "Data Set Subtype"} ,
{0x00080042, "Nuclear Medicine Series Type"} ,
{0x00080050, "Accession Number"} ,
{0x00080052, "Query/Retrieve Level"} ,
{0x00080054, "Retrieve AE Title"} ,
{0x00080056, "Instance Availability"} ,
{0x00080058, "Failed SOP Instance UID List"} ,
{0x00080060, "Modality"} ,
{0x00080061, "Modalities in Study"} ,
{0x00080062, "SOP Classes in Study"} ,
{0x00080064, "Conversion Type"} ,
{0x00080068, "Presentation Intent Type"} ,
{0x00080070, "Manufacturer"} ,
{0x00080080, "Institution Name"} ,
{0x00080081, "Institution Address"} ,
{0x00080082, "Institution Code Sequence"} ,
{0x00080090, "Referring Physician's Name"} ,
{0x00080092, "Referring Physician's Address"} ,
{0x00080094, "Referring Physician's Telephone Numbers"} ,
{0x00080096, "Referring Physician Identification Sequence"} ,
{0x00080100, "Code Value"} ,
{0x00080102, "Coding Scheme Designator"} ,
{0x00080103, "Coding Scheme Version"} ,
{0x00080104, "Code Meaning"} ,
{0x00080105, "Mapping Resource"} ,
{0x00080106, "Context Group Version"} ,
{0x00080107, "Context Group Local Version"} ,
{0x0008010B, "Context Group Extension Flag"} ,
{0x0008010C, "Coding Scheme UID"} ,
{0x0008010D, "Context Group Extension Creator UID"} ,
{0x0008010F, "Context Identifier"} ,
{0x00080110, "Coding Scheme Identification Sequence"} ,
{0x00080112, "Coding Scheme Registry"} ,
{0x00080114, "Coding Scheme External ID"} ,
{0x00080115, "Coding Scheme Name"} ,
{0x00080116, "Responsible Organization"} ,
{0x00080201, "Timezone Offset From UTC"} ,
{0x00081000, "Network ID"} ,
{0x00081010, "Station Name"} ,
{0x00081030, "Study Description"} ,
{0x00081032, "Procedure Code Sequence"} ,
{0x0008103E, "Series Description"} ,
{0x00081040, "Institutional Department Name"} ,
{0x00081048, "Physician(s) of Record"} ,
{0x00081049, "Physician(s) of Record Identification Sequence"} ,
{0x00081050, "Performing Physician's Name"} ,
{0x00081052, "Performing Physician Identification Sequence"} ,
{0x00081060, "Name of Physician(s) Reading Study"} ,
{0x00081062, "Physician(s) Reading Study Identification Sequence"} ,
{0x00081070, "Operators' Name"} ,
{0x00081072, "Operator Identification Sequence"} ,
{0x00081080, "Admitting Diagnoses Description"} ,
{0x00081084, "Admitting Diagnoses Code Sequence"} ,
{0x00081090, "Manufacturer's Model Name"} ,
{0x00081100, "Referenced Results Sequence"} ,
{0x00081110, "Referenced Study Sequence"} ,
{0x00081111, "Referenced Performed Procedure Step Sequence"} ,
{0x00081115, "Referenced Series Sequence"} ,
{0x00081120, "Referenced Patient Sequence"} ,
{0x00081125, "Referenced Visit Sequence"} ,
{0x00081130, "Referenced Overlay Sequence"} ,
{0x0008113A, "Referenced Waveform Sequence"} ,
{0x00081140, "Referenced Image Sequence"} ,
{0x00081145, "Referenced Curve Sequence"} ,
{0x0008114A, "Referenced Instance Sequence"} ,
{0x0008114B, "Referenced Real World Value Mapping Instance Sequence"} ,
{0x00081150, "Referenced SOP Class UID"} ,
{0x00081155, "Referenced SOP Instance UID"} ,
{0x0008115A, "SOP Classes Supported"} ,
{0x00081160, "Referenced Frame Number"} ,
{0x00081195, "Transaction UID"} ,
{0x00081197, "Failure Reason"} ,
{0x00081198, "Failed SOP Sequence"} ,
{0x00081199, "Referenced SOP Sequence"} ,
{0x00081200, "Studies Containing Other Referenced Instances Sequence"} ,
{0x00081250, "Related Series Sequence"} ,
{0x00082110, "Lossy Image Compression"} ,
{0x00082111, "Derivation Description"} ,
{0x00082112, "Source Image Sequence"} ,
{0x00082120, "Stage Name"} ,
{0x00082122, "Stage Number"} ,
{0x00082124, "Number of Stages"} ,
{0x00082127, "View Name"} ,
{0x00082128, "View Number"} ,
{0x00082129, "Number of Event Timers"} ,
{0x0008212A, "Number of Views in Stage"} ,
{0x00082130, "Event Elapsed Time(s)"} ,
{0x00082132, "Event Timer Name(s)"} ,
{0x00082142, "Start Trim"} ,
{0x00082143, "Stop Trim"} ,
{0x00082144, "Recommended Display Frame Rate"} ,
{0x00082200, "Transducer Position"} ,
{0x00082204, "Transducer Orientation"} ,
{0x00082208, "Anatomic Structure"} ,
{0x00082218, "Anatomic Region Sequence"} ,
{0x00082220, "Anatomic Region Modifier Sequence"} ,
{0x00082228, "Primary Anatomic Structure Sequence"} ,
{0x00082229, "Anatomic Structure, Space or Region Sequence"} ,
{0x00082230, "Primary Anatomic Structure Modifier Sequence"} ,
{0x00082240, "Transducer Position Sequence"} ,
{0x00082242, "Transducer Position Modifier Sequence"} ,
{0x00082244, "Transducer Orientation Sequence"} ,
{0x00082246, "Transducer Orientation Modifier Sequence"} ,
{0x00083001, "Alternate Representation Sequence"} ,
{0x00083010, "Irradiation Event UID"} ,
{0x00084000, "Identifying Comments"} ,
{0x00089007, "Frame Type"} ,
{0x00089092, "Referenced Image Evidence Sequence"} ,
{0x00089121, "Referenced Raw Data Sequence"} ,
{0x00089123, "Creator-Version UID"} ,
{0x00089124, "Derivation Image Sequence"} ,
{0x00089154, "Source Image Evidence Sequence"} ,
{0x00089205, "Pixel Presentation"} ,
{0x00089206, "Volumetric Properties"} ,
{0x00089207, "Volume Based Calculation Technique"} ,
{0x00089208, "Complex Image Component"} ,
{0x00089209, "Acquisition Contrast"} ,
{0x00089215, "Derivation Code Sequence"} ,
{0x00089237, "Referenced Grayscale Presentation State Sequence"} ,
{0x00089410, "Referenced Other Plane Sequence"} ,
{0x00089458, "Frame Display Sequence"} ,
{0x00089459, "Recommended Display Frame Rate in Float"} ,
{0x00089460, "Skip Frame Range Flag"} ,
{0x00100010, "Patient's Name"} ,
{0x00100020, "Patient ID"} ,
{0x00100021, "Issuer of Patient ID"} ,
{0x00100022, "Type of Patient ID"} ,
{0x00100030, "Patient's Birth Date"} ,
{0x00100032, "Patient's Birth Time"} ,
{0x00100040, "Patient's Sex"} ,
{0x00100050, "Patient's Insurance Plan Code Sequence"} ,
{0x00100101, "Patient's Primary Language Code Sequence"} ,
{0x00100102, "Patient's Primary Language Code Modifier Sequence"} ,
{0x00101000, "Other Patient IDs"} ,
{0x00101001, "Other Patient Names"} ,
{0x00101002, "Other Patient IDs Sequence"} ,
{0x00101005, "Patient's Birth Name"} ,
{0x00101010, "Patient's Age"} ,
{0x00101020, "Patient's Size"} ,
{0x00101030, "Patient's Weight"} ,
{0x00101040, "Patient's Address"} ,
{0x00101050, "Insurance Plan Identification"} ,
{0x00101060, "Patient's Mother's Birth Name"} ,
{0x00101080, "Military Rank"} ,
{0x00101081, "Branch of Service"} ,
{0x00101090, "Medical Record Locator"} ,
{0x00102000, "Medical Alerts"} ,
{0x00102110, "Contrast Allergies"} ,
{0x00102150, "Country of Residence"} ,
{0x00102152, "Region of Residence"} ,
{0x00102154, "Patient's Telephone Numbers"} ,
{0x00102160, "Ethnic Group"} ,
{0x00102180, "Occupation"} ,
{0x001021A0, "Smoking Status"} ,
{0x001021B0, "Additional Patient History"} ,
{0x001021C0, "Pregnancy Status"} ,
{0x001021D0, "Last Menstrual Date"} ,
{0x001021F0, "Patient's Religious Preference"} ,
{0x00102201, "Patient Species Description"} ,
{0x00102202, "Patient Species Code Sequence"} ,
{0x00102203, "Patient's Sex Neutered"} ,
{0x00102292, "Patient Breed Description"} ,
{0x00102293, "Patient Breed Code Sequence"} ,
{0x00102294, "Breed Registration Sequence"} ,
{0x00102295, "Breed Registration Number"} ,
{0x00102296, "Breed Registry Code Sequence"} ,
{0x00102297, "Responsible Person"} ,
{0x00102298, "Responsible Person Role"} ,
{0x00102299, "Responsible Organization"} ,
{0x00104000, "Patient Comments"} ,
{0x00109431, "Examined Body Thickness"} ,
{0x00120010, "Clinical Trial Sponsor Name"} ,
{0x00120020, "Clinical Trial Protocol ID"} ,
{0x00120021, "Clinical Trial Protocol Name"} ,
{0x00120030, "Clinical Trial Site ID"} ,
{0x00120031, "Clinical Trial Site Name"} ,
{0x00120040, "Clinical Trial Subject ID"} ,
{0x00120042, "Clinical Trial Subject Reading ID"} ,
{0x00120050, "Clinical Trial Time Point ID"} ,
{0x00120051, "Clinical Trial Time Point Description"} ,
{0x00120060, "Clinical Trial Coordinating Center Name"} ,
{0x00120062, "Patient Identity Removed"} ,
{0x00120063, "De-identification Method"} ,
{0x00120064, "De-identification Method Code Sequence"} ,
{0x00180010, "Contrast/Bolus Agent"} ,
{0x00180012, "Contrast/Bolus Agent Sequence"} ,
{0x00180014, "Contrast/Bolus Administration Route Sequence"} ,
{0x00180015, "Body Part Examined"} ,
{0x00180020, "Scanning Sequence"} ,
{0x00180021, "Sequence Variant"} ,
{0x00180022, "Scan Options"} ,
{0x00180023, "MR Acquisition Type"} ,
{0x00180024, "Sequence Name"} ,
{0x00180025, "Angio Flag"} ,
{0x00180026, "Intervention Drug Information Sequence"} ,
{0x00180027, "Intervention Drug Stop Time"} ,
{0x00180028, "Intervention Drug Dose"} ,
{0x00180029, "Intervention Drug Sequence"} ,
{0x0018002A, "Additional Drug Sequence"} ,
{0x00180030, "Radionuclide"} ,
{0x00180031, "Radiopharmaceutical"} ,
{0x00180032, "Energy Window Centerline"} ,
{0x00180033, "Energy Window Total Width"} ,
{0x00180034, "Intervention Drug Name"} ,
{0x00180035, "Intervention Drug Start Time"} ,
{0x00180036, "Intervention Sequence"} ,
{0x00180037, "Therapy Type"} ,
{0x00180038, "Intervention Status"} ,
{0x00180039, "Therapy Description"} ,
{0x0018003A, "Intervention Description"} ,
{0x00180040, "Cine Rate "} ,
{0x00180050, "Slice Thickness"} ,
{0x00180060, "KVP"} ,
{0x00180070, "Counts Accumulated"} ,
{0x00180071, "Acquisition Termination Condition"} ,
{0x00180072, "Effective Duration"} ,
{0x00180073, "Acquisition Start Condition"} ,
{0x00180074, "Acquisition Start Condition Data"} ,
{0x00180075, "Acquisition Termination Condition Data"} ,
{0x00180080, "Repetition Time"} ,
{0x00180081, "Echo Time"} ,
{0x00180082, "Inversion Time"} ,
{0x00180083, "Number of Averages"} ,
{0x00180084, "Imaging Frequency"} ,
{0x00180085, "Imaged Nucleus"} ,
{0x00180086, "Echo Number(s)"} ,
{0x00180087, "Magnetic Field Strength"} ,
{0x00180088, "Spacing Between Slices"} ,
{0x00180089, "Number of Phase Encoding Steps"} ,
{0x00180090, "Data Collection Diameter"} ,
{0x00180091, "Echo Train Length"} ,
{0x00180093, "Percent Sampling"} ,
{0x00180094, "Percent Phase Field of View"} ,
{0x00180095, "Pixel Bandwidth"} ,
{0x00181000, "Device Serial Number"} ,
{0x00181002, "Device UID"} ,
{0x00181003, "Device ID"} ,
{0x00181004, "Plate ID"} ,
{0x00181005, "Generator ID"} ,
{0x00181006, "Grid ID"} ,
{0x00181007, "Cassette ID"} ,
{0x00181008, "Gantry ID"} ,
{0x00181010, "Secondary Capture Device ID"} ,
{0x00181011, "Hardcopy Creation Device ID"} ,
{0x00181012, "Date of Secondary Capture"} ,
{0x00181014, "Time of Secondary Capture"} ,
{0x00181016, "Secondary Capture Device Manufacturer"} ,
{0x00181017, "Hardcopy Device Manufacturer"} ,
{0x00181018, "Secondary Capture Device Manufacturer's Model Name"} ,
{0x00181019, "Secondary Capture Device Software Version(s)"} ,
{0x0018101A, "Hardcopy Device Software Version"} ,
{0x0018101B, "Hardcopy Device Manufacturer's Model Name"} ,
{0x00181020, "Software Version(s)"} ,
{0x00181022, "Video Image Format Acquired"} ,
{0x00181023, "Digital Image Format Acquired"} ,
{0x00181030, "Protocol Name"} ,
{0x00181040, "Contrast/Bolus Route"} ,
{0x00181041, "Contrast/Bolus Volume"} ,
{0x00181042, "Contrast/Bolus Start Time "} ,
{0x00181043, "Contrast/Bolus Stop Time "} ,
{0x00181044, "Contrast/Bolus Total Dose"} ,
{0x00181045, "Syringe Counts"} ,
{0x00181046, "Contrast Flow Rate"} ,
{0x00181047, "Contrast Flow Duration"} ,
{0x00181048, "Contrast/Bolus Ingredient"} ,
{0x00181049, "Contrast/Bolus Ingredient Concentration"} ,
{0x00181050, "Spatial Resolution"} ,
{0x00181060, "Trigger Time"} ,
{0x00181061, "Trigger Source or Type"} ,
{0x00181062, "Nominal Interval"} ,
{0x00181063, "Frame Time"} ,
{0x00181064, "Framing Type"} ,
{0x00181065, "Frame Time Vector"} ,
{0x00181066, "Frame Delay"} ,
{0x00181067, "Image Trigger Delay"} ,
{0x00181068, "Multiplex Group Time Offset"} ,
{0x00181069, "Trigger Time Offset"} ,
{0x0018106A, "Synchronization Trigger"} ,
{0x0018106C, "Synchronization Channel"} ,
{0x0018106E, "Trigger Sample Position"} ,
{0x00181070, "Radiopharmaceutical Route"} ,
{0x00181071, "Radiopharmaceutical Volume"} ,
{0x00181072, "Radiopharmaceutical Start Time"} ,
{0x00181073, "Radiopharmaceutical Stop Time"} ,
{0x00181074, "Radionuclide Total Dose"} ,
{0x00181075, "Radionuclide Half Life"} ,
{0x00181076, "Radionuclide Positron Fraction"} ,
{0x00181077, "Radiopharmaceutical Specific Activity"} ,
{0x00181078, "Radiopharmaceutical Start Datetime"} ,
{0x00181079, "Radiopharmaceutical Stop Datetime"} ,
{0x00181080, "Beat Rejection Flag"} ,
{0x00181081, "Low R-R Value"} ,
{0x00181082, "High R-R Value"} ,
{0x00181083, "Intervals Acquired"} ,
{0x00181084, "Intervals Rejected"} ,
{0x00181085, "PVC Rejection"} ,
{0x00181086, "Skip Beats"} ,
{0x00181088, "Heart Rate"} ,
{0x00181090, "Cardiac Number of Images"} ,
{0x00181094, "Trigger Window"} ,
{0x00181100, "Reconstruction Diameter"} ,
{0x00181110, "Distance Source to Detector"} ,
{0x00181111, "Distance Source to Patient"} ,
{0x00181114, "Estimated Radiographic Magnification Factor"} ,
{0x00181120, "Gantry/Detector Tilt"} ,
{0x00181121, "Gantry/Detector Slew"} ,
{0x00181130, "Table Height"} ,
{0x00181131, "Table Traverse"} ,
{0x00181134, "Table Motion"} ,
{0x00181135, "Table Vertical Increment"} ,
{0x00181136, "Table Lateral Increment"} ,
{0x00181137, "Table Longitudinal Increment"} ,
{0x00181138, "Table Angle"} ,
{0x0018113A, "Table Type"} ,
{0x00181140, "Rotation Direction"} ,
{0x00181141, "Angular Position"} ,
{0x00181142, "Radial Position"} ,
{0x00181143, "Scan Arc"} ,
{0x00181144, "Angular Step"} ,
{0x00181145, "Center of Rotation Offset"} ,
{0x00181146, "Rotation Offset"} ,
{0x00181147, "Field of View Shape"} ,
{0x00181149, "Field of View Dimension(s)"} ,
{0x00181150, "Exposure Time"} ,
{0x00181151, "X-ray Tube Current"} ,
{0x00181152, "Exposure "} ,
{0x00181153, "Exposure in uAs"} ,
{0x00181154, "Average Pulse Width"} ,
{0x00181155, "Radiation Setting"} ,
{0x00181156, "Rectification Type"} ,
{0x0018115A, "Radiation Mode"} ,
{0x0018115E, "Image and Fluoroscopy Area Dose Product"} ,
{0x00181160, "Filter Type"} ,
{0x00181161, "Type of Filters"} ,
{0x00181162, "Intensifier Size"} ,
{0x00181164, "Imager Pixel Spacing"} ,
{0x00181166, "Grid"} ,
{0x00181170, "Generator Power"} ,
{0x00181180, "Collimator/grid Name "} ,
{0x00181181, "Collimator Type"} ,
{0x00181182, "Focal Distance"} ,
{0x00181183, "X Focus Center"} ,
{0x00181184, "Y Focus Center"} ,
{0x00181190, "Focal Spot(s)"} ,
{0x00181191, "Anode Target Material"} ,
{0x001811A0, "Body Part Thickness"} ,
{0x001811A2, "Compression Force"} ,
{0x00181200, "Date of Last Calibration"} ,
{0x00181201, "Time of Last Calibration"} ,
{0x00181210, "Convolution Kernel"} ,
{0x00181240, "Upper/Lower Pixel Values"} ,
{0x00181242, "Actual Frame Duration"} ,
{0x00181243, "Count Rate"} ,
{0x00181244, "Preferred Playback Sequencing"} ,
{0x00181250, "Receive Coil Name"} ,
{0x00181251, "Transmit Coil Name"} ,
{0x00181260, "Plate Type"} ,
{0x00181261, "Phosphor Type"} ,
{0x00181300, "Scan Velocity"} ,
{0x00181301, "Whole Body Technique"} ,
{0x00181302, "Scan Length"} ,
{0x00181310, "Acquisition Matrix"} ,
{0x00181312, "In-plane Phase Encoding Direction"} ,
{0x00181314, "Flip Angle"} ,
{0x00181315, "Variable Flip Angle Flag"} ,
{0x00181316, "SAR"} ,
{0x00181318, "dB/dt"} ,
{0x00181400, "Acquisition Device Processing Description "} ,
{0x00181401, "Acquisition Device Processing Code"} ,
{0x00181402, "Cassette Orientation"} ,
{0x00181403, "Cassette Size"} ,
{0x00181404, "Exposures on Plate"} ,
{0x00181405, "Relative X-ray Exposure"} ,
{0x00181450, "Column Angulation"} ,
{0x00181460, "Tomo Layer Height"} ,
{0x00181470, "Tomo Angle"} ,
{0x00181480, "Tomo Time"} ,
{0x00181490, "Tomo Type"} ,
{0x00181491, "Tomo Class"} ,
{0x00181495, "Number of Tomosynthesis Source Images"} ,
{0x00181500, "Positioner Motion"} ,
{0x00181508, "Positioner Type"} ,
{0x00181510, "Positioner Primary Angle"} ,
{0x00181511, "Positioner Secondary Angle"} ,
{0x00181520, "Positioner Primary Angle Increment"} ,
{0x00181521, "Positioner Secondary Angle Increment"} ,
{0x00181530, "Detector Primary Angle"} ,
{0x00181531, "Detector Secondary Angle"} ,
{0x00181600, "Shutter Shape"} ,
{0x00181602, "Shutter Left Vertical Edge"} ,
{0x00181604, "Shutter Right Vertical Edge"} ,
{0x00181606, "Shutter Upper Horizontal Edge"} ,
{0x00181608, "Shutter Lower Horizontal Edge"} ,
{0x00181610, "Center of Circular Shutter"} ,
{0x00181612, "Radius of Circular Shutter"} ,
{0x00181620, "Vertices of the Polygonal Shutter"} ,
{0x00181622, "Shutter Presentation Value"} ,
{0x00181623, "Shutter Overlay Group"} ,
{0x00181624, "Shutter Presentation Color CIELab Value"} ,
{0x00181700, "Collimator Shape"} ,
{0x00181702, "Collimator Left Vertical Edge"} ,
{0x00181704, "Collimator Right Vertical Edge"} ,
{0x00181706, "Collimator Upper Horizontal Edge"} ,
{0x00181708, "Collimator Lower Horizontal Edge"} ,
{0x00181710, "Center of Circular Collimator"} ,
{0x00181712, "Radius of Circular Collimator"} ,
{0x00181720, "Vertices of the Polygonal Collimator"} ,
{0x00181800, "Acquisition Time Synchronized"} ,
{0x00181801, "Time Source"} ,
{0x00181802, "Time Distribution Protocol"} ,
{0x00181803, "NTP Source Address"} ,
{0x00182001, "Page Number Vector"} ,
{0x00182002, "Frame Label Vector"} ,
{0x00182003, "Frame Primary Angle Vector"} ,
{0x00182004, "Frame Secondary Angle Vector"} ,
{0x00182005, "Slice Location Vector"} ,
{0x00182006, "Display Window Label Vector"} ,
{0x00182010, "Nominal Scanned Pixel Spacing"} ,
{0x00182020, "Digitizing Device Transport Direction"} ,
{0x00182030, "Rotation of Scanned Film"} ,
{0x00183100, "IVUS Acquisition"} ,
{0x00183101, "IVUS Pullback Rate"} ,
{0x00183102, "IVUS Gated Rate"} ,
{0x00183103, "IVUS Pullback Start Frame Number"} ,
{0x00183104, "IVUS Pullback Stop Frame Number"} ,
{0x00183105, "Lesion Number "} ,
{0x00184000, "Acquisition Comments"} ,
{0x00185000, "Output Power"} ,
{0x00185010, "Transducer Data"} ,
{0x00185012, "Focus Depth"} ,
{0x00185020, "Processing Function"} ,
{0x00185021, "Postprocessing Function"} ,
{0x00185022, "Mechanical Index"} ,
{0x00185024, "Bone Thermal Index"} ,
{0x00185026, "Cranial Thermal Index"} ,
{0x00185027, "Soft Tissue Thermal Index"} ,
{0x00185028, "Soft Tissue-focus Thermal Index"} ,
{0x00185029, "Soft Tissue-surface Thermal Index"} ,
{0x00185030, "Dynamic Range"} ,
{0x00185040, "Total Gain"} ,
{0x00185050, "Depth of Scan Field"} ,
{0x00185100, "Patient Position"} ,
{0x00185101, "View Position"} ,
{0x00185104, "Projection Eponymous Name Code Sequence"} ,
{0x00185210, "Image Transformation Matrix"} ,
{0x00185212, "Image Translation Vector"} ,
{0x00186000, "Sensitivity"} ,
{0x00186011, "Sequence of Ultrasound Regions"} ,
{0x00186012, "Region Spatial Format"} ,
{0x00186014, "Region Data Type"} ,
{0x00186016, "Region Flags"} ,
{0x00186018, "Region Location Min X0"} ,
{0x0018601A, "Region Location Min Y0"} ,
{0x0018601C, "Region Location Max X1"} ,
{0x0018601E, "Region Location Max Y1"} ,
{0x00186020, "Reference Pixel X0"} ,
{0x00186022, "Reference Pixel Y0"} ,
{0x00186024, "Physical Units X Direction"} ,
{0x00186026, "Physical Units Y Direction"} ,
{0x00186028, "Reference Pixel Physical Value X"} ,
{0x0018602A, "Reference Pixel Physical Value Y"} ,
{0x0018602C, "Physical Delta X"} ,
{0x0018602E, "Physical Delta Y"} ,
{0x00186030, "Transducer Frequency"} ,
{0x00186031, "Transducer Type"} ,
{0x00186032, "Pulse Repetition Frequency"} ,
{0x00186034, "Doppler Correction Angle"} ,
{0x00186036, "Steering Angle"} ,
{0x00186038, "Doppler Sample Volume X Position"} ,
{0x00186039, "Doppler Sample Volume X Position"} ,
{0x0018603A, "Doppler Sample Volume Y Position"} ,
{0x0018603B, "Doppler Sample Volume Y Position"} ,
{0x0018603C, "TM-Line Position X0"} ,
{0x0018603D, "TM-Line Position X0"} ,
{0x0018603E, "TM-Line Position Y0"} ,
{0x0018603F, "TM-Line Position Y0"} ,
{0x00186040, "TM-Line Position X1"} ,
{0x00186041, "TM-Line Position X1"} ,
{0x00186042, "TM-Line Position Y1"} ,
{0x00186043, "TM-Line Position Y1"} ,
{0x00186044, "Pixel Component Organization"} ,
{0x00186046, "Pixel Component Mask"} ,
{0x00186048, "Pixel Component Range Start"} ,
{0x0018604A, "Pixel Component Range Stop"} ,
{0x0018604C, "Pixel Component Physical Units"} ,
{0x0018604E, "Pixel Component Data Type"} ,
{0x00186050, "Number of Table Break Points"} ,
{0x00186052, "Table of X Break Points"} ,
{0x00186054, "Table of Y Break Points"} ,
{0x00186056, "Number of Table Entries"} ,
{0x00186058, "Table of Pixel Values"} ,
{0x0018605A, "Table of Parameter Values"} ,
{0x00186060, "R Wave Time Vector"} ,
{0x00187000, "Detector Conditions Nominal Flag "} ,
{0x00187001, "Detector Temperature"} ,
{0x00187004, "Detector Type"} ,
{0x00187005, "Detector Configuration"} ,
{0x00187006, "Detector Description"} ,
{0x00187008, "Detector Mode"} ,
{0x0018700A, "Detector ID"} ,
{0x0018700C, "Date of Last Detector Calibration "} ,
{0x0018700E, "Time of Last Detector Calibration"} ,
{0x00187010, "Exposures on Detector Since Last Calibration "} ,
{0x00187011, "Exposures on Detector Since Manufactured "} ,
{0x00187012, "Detector Time Since Last Exposure "} ,
{0x00187014, "Detector Active Time "} ,
{0x00187016, "Detector Activation Offset From Exposure"} ,
{0x0018701A, "Detector Binning "} ,
{0x00187020, "Detector Element Physical Size"} ,
{0x00187022, "Detector Element Spacing"} ,
{0x00187024, "Detector Active Shape"} ,
{0x00187026, "Detector Active Dimension(s)"} ,
{0x00187028, "Detector Active Origin"} ,
{0x0018702A, "Detector Manufacturer Name"} ,
{0x0018702B, "Detector Manufacturer's Model Name"} ,
{0x00187030, "Field of View Origin"} ,
{0x00187032, "Field of View Rotation"} ,
{0x00187034, "Field of View Horizontal Flip"} ,
{0x00187040, "Grid Absorbing Material"} ,
{0x00187041, "Grid Spacing Material"} ,
{0x00187042, "Grid Thickness"} ,
{0x00187044, "Grid Pitch"} ,
{0x00187046, "Grid Aspect Ratio"} ,
{0x00187048, "Grid Period"} ,
{0x0018704C, "Grid Focal Distance"} ,
{0x00187050, "Filter Material"} ,
{0x00187052, "Filter Thickness Minimum"} ,
{0x00187054, "Filter Thickness Maximum"} ,
{0x00187060, "Exposure Control Mode"} ,
{0x00187062, "Exposure Control Mode Description"} ,
{0x00187064, "Exposure Status"} ,
{0x00187065, "Phototimer Setting"} ,
{0x00188150, "Exposure Time in S"} ,
{0x00188151, "X-Ray Tube Current in A"} ,
{0x00189004, "Content Qualification"} ,
{0x00189005, "Pulse Sequence Name"} ,
{0x00189006, "MR Imaging Modifier Sequence"} ,
{0x00189008, "Echo Pulse Sequence"} ,
{0x00189009, "Inversion Recovery"} ,
{0x00189010, "Flow Compensation"} ,
{0x00189011, "Multiple Spin Echo"} ,
{0x00189012, "Multi-planar Excitation"} ,
{0x00189014, "Phase Contrast"} ,
{0x00189015, "Time of Flight Contrast"} ,
{0x00189016, "Spoiling"} ,
{0x00189017, "Steady State Pulse Sequence"} ,
{0x00189018, "Echo Planar Pulse Sequence"} ,
{0x00189019, "Tag Angle First Axis"} ,
{0x00189020, "Magnetization Transfer"} ,
{0x00189021, "T2 Preparation"} ,
{0x00189022, "Blood Signal Nulling"} ,
{0x00189024, "Saturation Recovery"} ,
{0x00189025, "Spectrally Selected Suppression"} ,
{0x00189026, "Spectrally Selected Excitation"} ,
{0x00189027, "Spatial Pre-saturation"} ,
{0x00189028, "Tagging"} ,
{0x00189029, "Oversampling Phase"} ,
{0x00189030, "Tag Spacing First Dimension"} ,
{0x00189032, "Geometry of k-Space Traversal"} ,
{0x00189033, "Segmented k-Space Traversal"} ,
{0x00189034, "Rectilinear Phase Encode Reordering"} ,
{0x00189035, "Tag Thickness"} ,
{0x00189036, "Partial Fourier Direction"} ,
{0x00189037, "Cardiac Synchronization Technique"} ,
{0x00189041, "Receive Coil Manufacturer Name"} ,
{0x00189042, "MR Receive Coil Sequence"} ,
{0x00189043, "Receive Coil Type "} ,
{0x00189044, "Quadrature Receive Coil "} ,
{0x00189045, "Multi-Coil Definition Sequence"} ,
{0x00189046, "Multi-Coil Configuration "} ,
{0x00189047, "Multi-Coil Element Name"} ,
{0x00189048, "Multi-Coil Element Used"} ,
{0x00189049, "MR Transmit Coil Sequence"} ,
{0x00189050, "Transmit Coil Manufacturer Name"} ,
{0x00189051, "Transmit Coil Type"} ,
{0x00189052, "Spectral Width"} ,
{0x00189053, "Chemical Shift Reference"} ,
{0x00189054, "Volume Localization Technique"} ,
{0x00189058, "MR Acquisition Frequency Encoding Steps"} ,
{0x00189059, "De-coupling"} ,
{0x00189060, "De-coupled Nucleus"} ,
{0x00189061, "De-coupling Frequency"} ,
{0x00189062, "De-coupling Method"} ,
{0x00189063, "De-coupling Chemical Shift Reference"} ,
{0x00189064, "k-space Filtering"} ,
{0x00189065, "Time Domain Filtering"} ,
{0x00189066, "Number of Zero fills"} ,
{0x00189067, "Baseline Correction"} ,
{0x00189069, "Parallel Reduction Factor In-plane"} ,
{0x00189070, "Cardiac R-R Interval Specified"} ,
{0x00189073, "Acquisition Duration"} ,
{0x00189074, "Frame Acquisition Datetime"} ,
{0x00189075, "Diffusion Directionality"} ,
{0x00189076, "Diffusion Gradient Direction Sequence"} ,
{0x00189077, "Parallel Acquisition"} ,
{0x00189078, "Parallel Acquisition Technique"} ,
{0x00189079, "Inversion Times"} ,
{0x00189080, "Metabolite Map Description"} ,
{0x00189081, "Partial Fourier"} ,
{0x00189082, "Effective Echo Time"} ,
{0x00189083, "Metabolite Map Code Sequence"} ,
{0x00189084, "Chemical Shift Sequence"} ,
{0x00189085, "Cardiac Signal Source"} ,
{0x00189087, "Diffusion b-value"} ,
{0x00189089, "Diffusion Gradient Orientation"} ,
{0x00189090, "Velocity Encoding Direction"} ,
{0x00189091, "Velocity Encoding Minimum Value"} ,
{0x00189093, "Number of k-Space Trajectories"} ,
{0x00189094, "Coverage of k-Space"} ,
{0x00189095, "Spectroscopy Acquisition Phase Rows"} ,
{0x00189098, "Transmitter Frequency"} ,
{0x00189100, "Resonant Nucleus"} ,
{0x00189101, "Frequency Correction"} ,
{0x00189103, "MR Spectroscopy FOV/Geometry Sequence"} ,
{0x00189104, "Slab Thickness"} ,
{0x00189105, "Slab Orientation"} ,
{0x00189106, "Mid Slab Position"} ,
{0x00189107, "MR Spatial Saturation Sequence"} ,
{0x00189112, "MR Timing and Related Parameters Sequence"} ,
{0x00189114, "MR Echo Sequence"} ,
{0x00189115, "MR Modifier Sequence"} ,
{0x00189117, "MR Diffusion Sequence"} ,
{0x00189118, "Cardiac Trigger Sequence"} ,
{0x00189119, "MR Averages Sequence"} ,
{0x00189125, "MR FOV/Geometry Sequence"} ,
{0x00189126, "Volume Localization Sequence"} ,
{0x00189127, "Spectroscopy Acquisition Data Columns"} ,
{0x00189147, "Diffusion Anisotropy Type"} ,
{0x00189151, "Frame Reference Datetime"} ,
{0x00189152, "MR Metabolite Map Sequence"} ,
{0x00189155, "Parallel Reduction Factor out-of-plane"} ,
{0x00189159, "Spectroscopy Acquisition Out-of-plane Phase Steps"} ,
{0x00189166, "Bulk Motion Status"} ,
{0x00189168, "Parallel Reduction Factor Second In-plane"} ,
{0x00189169, "Cardiac Beat Rejection Technique"} ,
{0x00189170, "Respiratory Motion Compensation Technique"} ,
{0x00189171, "Respiratory Signal Source"} ,
{0x00189172, "Bulk Motion Compensation Technique"} ,
{0x00189173, "Bulk Motion Signal Source"} ,
{0x00189174, "Applicable Safety Standard Agency"} ,
{0x00189175, "Applicable Safety Standard Description"} ,
{0x00189176, "Operating Mode Sequence"} ,
{0x00189177, "Operating Mode Type"} ,
{0x00189178, "Operating Mode"} ,
{0x00189179, "Specific Absorption Rate Definition"} ,
{0x00189180, "Gradient Output Type"} ,
{0x00189181, "Specific Absorption Rate Value"} ,
{0x00189182, "Gradient Output"} ,
{0x00189183, "Flow Compensation Direction"} ,
{0x00189184, "Tagging Delay"} ,
{0x00189185, "Respiratory Motion Compensation Technique Description"} ,
{0x00189186, "Respiratory Signal Source ID"} ,
{0x00189195, "Chemical Shifts Minimum Integration Limit in Hz"} ,
{0x00189196, "Chemical Shifts Maximum Integration Limit in Hz"} ,
{0x00189197, "MR Velocity Encoding Sequence"} ,
{0x00189198, "First Order Phase Correction"} ,
{0x00189199, "Water Referenced Phase Correction"} ,
{0x00189200, "MR Spectroscopy Acquisition Type"} ,
{0x00189214, "Respiratory Cycle Position"} ,
{0x00189217, "Velocity Encoding Maximum Value"} ,
{0x00189218, "Tag Spacing Second Dimension"} ,
{0x00189219, "Tag Angle Second Axis"} ,
{0x00189220, "Frame Acquisition Duration"} ,
{0x00189226, "MR Image Frame Type Sequence"} ,
{0x00189227, "MR Spectroscopy Frame Type Sequence"} ,
{0x00189231, "MR Acquisition Phase Encoding Steps in-plane"} ,
{0x00189232, "MR Acquisition Phase Encoding Steps out-of-plane"} ,
{0x00189234, "Spectroscopy Acquisition Phase Columns"} ,
{0x00189236, "Cardiac Cycle Position"} ,
{0x00189239, "Specific Absorption Rate Sequence"} ,
{0x00189240, "RF Echo Train Length"} ,
{0x00189241, "Gradient Echo Train Length"} ,
{0x00189295, "Chemical Shifts Minimum Integration Limit in ppm"} ,
{0x00189296, "Chemical Shifts Maximum Integration Limit in ppm"} ,
{0x00189301, "CT Acquisition Type Sequence"} ,
{0x00189302, "Acquisition Type"} ,
{0x00189303, "Tube Angle"} ,
{0x00189304, "CT Acquisition Details Sequence"} ,
{0x00189305, "Revolution Time"} ,
{0x00189306, "Single Collimation Width"} ,
{0x00189307, "Total Collimation Width"} ,
{0x00189308, "CT Table Dynamics Sequence"} ,
{0x00189309, "Table Speed"} ,
{0x00189310, "Table Feed per Rotation"} ,
{0x00189311, "Spiral Pitch Factor"} ,
{0x00189312, "CT Geometry Sequence"} ,
{0x00189313, "Data Collection Center (Patient)"} ,
{0x00189314, "CT Reconstruction Sequence"} ,
{0x00189315, "Reconstruction Algorithm"} ,
{0x00189316, "Convolution Kernel Group"} ,
{0x00189317, "Reconstruction Field of View"} ,
{0x00189318, "Reconstruction Target Center (Patient)"} ,
{0x00189319, "Reconstruction Angle"} ,
{0x00189320, "Image Filter"} ,
{0x00189321, "CT Exposure Sequence"} ,
{0x00189322, "Reconstruction Pixel Spacing "} ,
{0x00189323, "Exposure Modulation Type"} ,
{0x00189324, "Estimated Dose Saving"} ,
{0x00189325, "CT X-ray Details Sequence"} ,
{0x00189326, "CT Position Sequence"} ,
{0x00189327, "Table Position"} ,
{0x00189328, "Exposure Time in ms"} ,
{0x00189329, "CT Image Frame Type Sequence"} ,
{0x00189330, "X-Ray Tube Current in mA"} ,
{0x00189332, "Exposure in mAs"} ,
{0x00189333, "Constant Volume Flag "} ,
{0x00189334, "Fluoroscopy Flag"} ,
{0x00189335, "Distance Source to Data Collection Center"} ,
{0x00189337, "Contrast/Bolus Agent Number"} ,
{0x00189338, "Contrast/Bolus Ingredient Code Sequence"} ,
{0x00189340, "Contrast Administration Profile Sequence"} ,
{0x00189341, "Contrast/Bolus Usage Sequence"} ,
{0x00189342, "Contrast/Bolus Agent Administered"} ,
{0x00189343, "Contrast/Bolus Agent Detected"} ,
{0x00189344, "Contrast/Bolus Agent Phase"} ,
{0x00189345, "CTDIvol"} ,
{0x00189401, "Projection Pixel Calibration Sequence"} ,
{0x00189402, "Distance Source to Isocenter"} ,
{0x00189403, "Distance Object to Table Top"} ,
{0x00189404, "Object Pixel Spacing in Center of Beam"} ,
{0x00189405, "Positioner Position Sequence"} ,
{0x00189406, "Table Position Sequence"} ,
{0x00189407, "Collimator Shape Sequence"} ,
{0x00189412, "XA/XRF Frame Characteristics Sequence"} ,
{0x00189417, "Frame Acquisition Sequence"} ,
{0x00189420, "X-Ray Receptor Type"} ,
{0x00189423, "Acquisition Protocol Name"} ,
{0x00189424, "Acquisition Protocol Description"} ,
{0x00189425, "Contrast/Bolus Ingredient Opaque"} ,
{0x00189426, "Distance Receptor Plane to Detector Housing"} ,
{0x00189427, "Intensifier Active Shape"} ,
{0x00189428, "Intensifier Active Dimension(s)"} ,
{0x00189429, "Physical Detector Size"} ,
{0x00189430, "Position of Isocenter Projection"} ,
{0x00189432, "Field of View Sequence"} ,
{0x00189433, "Field of View Description"} ,
{0x00189434, "Exposure Control Sensing Regions Sequence"} ,
{0x00189435, "Exposure Control Sensing Region Shape"} ,
{0x00189436, "Exposure Control Sensing Region Left Vertical Edge"} ,
{0x00189437, "Exposure Control Sensing Region Right Vertical Edge"} ,
{0x00189438, "Exposure Control Sensing Region Upper Horizontal Edge"} ,
{0x00189439, "Exposure Control Sensing Region Lower Horizontal Edge"} ,
{0x00189440, "Center of Circular Exposure Control Sensing Region"} ,
{0x00189441, "Radius of Circular Exposure Control Sensing Region"} ,
{0x00189442, "Vertices of the Polygonal Exposure Control Sensing Region"} ,
{0x00189445, ""} ,
{0x00189447, "Column Angulation (Patient)"} ,
{0x00189449, "Beam Angle"} ,
{0x00189451, "Frame Detector Parameters Sequence"} ,
{0x00189452, "Calculated Anatomy Thickness"} ,
{0x00189455, "Calibration Sequence"} ,
{0x00189456, "Object Thickness Sequence"} ,
{0x00189457, "Plane Identification"} ,
{0x00189461, "Field of View Dimension(s) in Float"} ,
{0x00189462, "Isocenter Reference System Sequence"} ,
{0x00189463, "Positioner Isocenter Primary Angle"} ,
{0x00189464, "Positioner Isocenter Secondary Angle"} ,
{0x00189465, "Positioner Isocenter Detector Rotation Angle"} ,
{0x00189466, "Table X Position to Isocenter"} ,
{0x00189467, "Table Y Position to Isocenter"} ,
{0x00189468, "Table Z Position to Isocenter"} ,
{0x00189469, "Table Horizontal Rotation Angle"} ,
{0x00189470, "Table Head Tilt Angle"} ,
{0x00189471, "Table Cradle Tilt Angle"} ,
{0x00189472, "Frame Display Shutter Sequence"} ,
{0x00189473, "Acquired Image Area Dose Product"} ,
{0x00189474, "C-arm Positioner Tabletop Relationship"} ,
{0x00189476, "X-Ray Geometry Sequence"} ,
{0x00189477, "Irradiation Event Identification Sequence"} ,
{0x0018A001, "Contributing Equipment Sequence"} ,
{0x0018A002, "Contribution Date Time"} ,
{0x0018A003, "Contribution Description"} ,
{0x0020000D, "UIStudy Instance UID"},
{0x0020000E, "UISeries Instance UID"},
{0x00200010, "SHStudy ID"},
{0x00200011, "ISSeries Number"},
{0x00200012, "ISAcquisition Number"},
{0x00200013, "ISImage Number"},
{0x00200014, "ISIsotope Number"},
{0x00200015, "ISPhase Number"},
{0x00200016, "ISInterval Number"},
{0x00200017, "ISTime Slot Number"},
{0x00200018, "ISAngle Number"},
{0x00200020, "CSPatient Orientation"},
{0x00200022, "USOverlay Number"},
{0x00200024, "USCurve Number"},
{0x00200030, "DSImage Position"},
{0x00200032, "DSImage Position (Patient)"},
{0x00200037, "DSImage Orientation (Patient)"},
{0x00200050, "DSLocation"},
{0x00200052, "UIFrame of Reference UID"},
{0x00200060, "CSLaterality"},
{0x00200070, "LOImage Geometry Type"},
{0x00200080, "UIMasking Image UID"},
{0x00200100, "ISTemporal Position Identifier"},
{0x00200105, "ISNumber of Temporal Positions"},
{0x00200110, "DSTemporal Resolution"},
{0x00201000, "ISSeries in Study"},
{0x00201002, "ISImages in Acquisition"},
{0x00201004, "ISAcquisition in Study"},
{0x00201040, "LOPosition Reference Indicator"},
{0x00201041, "DSSlice Location"},
{0x00201070, "ISOther Study Numbers"},
{0x00201200, "ISNumber of Patient Related Studies"},
{0x00201202, "ISNumber of Patient Related Series"},
{0x00201204, "ISNumber of Patient Related Images"},
{0x00201206, "ISNumber of Study Related Series"},
{0x00201208, "ISNumber of Study Related Images"},
{0x00204000, "LTImage Comments"},
{0x20500010, "SQPresentation LUT Sequence"},
{0x20500020, "CSPresentation LUT Shape"},
{0x20500500, "SQReferenced Presentation LUT Sequence"},
{0x00280002, "USSamples per Pixel"},
{0x00280004, "CSPhotometric Interpretation"},
{0x00280006, "USPlanar Configuration"},
{0x00280008, "ISNumber of Frames"},
{0x00280009, "ATFrame Increment Pointer"},
{0x00280010, "USRows"},
{0x00280011, "USColumns"},
{0x00280030, "DSPixel Spacing"},
{0x00280031, "DSZoom Factor"},
{0x00280032, "DSZoom Center"},
{0x00280034, "ISPixel Aspect Ratio"},
{0x00280051, "CSCorrected Image"},
{0x00280100, "USBits Allocated"},
{0x00280101, "USBits Stored"},
{0x00280102, "USHigh Bit"},
{0x00280103, "USPixel Representation"},
{0x00280106, "USSmallest Image Pixel Value"},
{0x00280107, "USLargest Image Pixel Value"},
{0x00280108, "USSmallest Pixel Value in Series"},
{0x00280109, "USLargest Pixel Value in Series"},
{0x00280120, "USPixel Padding Value"},
{0x00280300, "CSQuality Control Image"},
{0x00280301, "CSBurned In Annotation"},
{0x00281040, "CSPixel Intensity Relationship"},
{0x00281041, "SSPixel Intensity Relationship Sign"},
{0x00281050, "DSWindow Center"},
{0x00281051, "DSWindow Width"},
{0x00281052, "DSRescale Intercept"},
{0x00281053, "DSRescale Slope"},
{0x00281054, "LORescale Type"},
{0x00281055, "LOWindow Center & Width Explanation"},
{0x00281101, "USRed Palette Color Lookup Table Descriptor"},
{0x00281102, "USGreen Palette Color Lookup Table Descriptor"},
{0x00281103, "USBlue Palette Color Lookup Table Descriptor"},
{0x00281201, "USRed Palette Color Lookup Table Data"},
{0x00281202, "USGreen Palette Color Lookup Table Data"},
{0x00281203, "USBlue Palette Color Lookup Table Data"},
{0x00282110, "CSLossy Image Compression"},
{0x00283000, "SQModality LUT Sequence"},
{0x00283002, "USLUT Descriptor"},
{0x00283003, "LOLUT Explanation"},
{0x00283004, "LOMadality LUT Type"},
{0x00283006, "USLUT Data"},
{0x00283010, "SQVOI LUT Sequence"},
// Group Tag 3002
{0x30020002, "SHRT Image Label"},
{0x30020003, "LORT Image Name"},
{0x30020004, "STRT Image Description"},
{0x3002000A, "CSReported Values Origin"},
{0x3002000C, "CSRT Image Plane"},
{0x3002000D, "DSX-Ray Image Receptor Translation"},
{0x3002000E, "DSX-Ray Image Receptor Angle"},
{0x30020010, "DSRT Image Orientation"},
{0x30020011, "DSImage Plane Pixel Spacing"},
{0x30020012, "DSRT Image Position"},
{0x30020020, "SHRadiation Machine Name"},
{0x30020022, "DSRadiation Machine SAD"},
{0x30020024, "DSRadiation Machine SSD"},
{0x30020026, "DSRT Image SID"},
{0x30020028, "DSSource to Reference Object Distance"},
{0x30020029, "ISFraction Number"},
{0x30020030, "SQExposure Sequence"},
{0x30020032, "DSMeterset Exposure"},
{0x30020034, "DSDiaphragm Position"},
{0x30020040, "SQFluence Map Sequence"},
{0x30020041, "CSFluence Data Source"},
{0x30020042, "DSFluence Data Scale"},
// Group Tag 3004
{0x30040001, "CS DVH Type"},
{0x30040002, "CSDose Units"},
{0x30040004, "CSDose Type"},
{0x30040006, "LODose Comment"},
{0x30040008, "DSNormalization Point"},
{0x3004000A, "CSDose Summation Type"},
{0x3004000C, "DSGrid Frame Offset Vector"},
{0x3004000E, "DSDose Grid Scaling"},
{0x30040010, "SQRT Dose ROI Sequence"},
{0x30040012, "DSDose Value"},
{0x30040014, "CSTissue Heterogeneity Correction"},
{0x30040040, "DSDVH Normalization Point"},
{0x30040042, "DSDVH Normalization Dose Value"},
{0x30040050, "SQDVH Sequence"},
{0x30040052, "DSDVH Dose Scaling"},
{0x30040054, "CSDVH Volume Units"},
{0x30040056, "ISDVH Number of Bins"},
{0x30040058, "DSDVH Data"},
{0x30040060, "SQDVH Referenced ROI Sequence"},
{0x30040062, "CSDVH ROI Contribution Type"},
{0x30040070, "DSDVH Minimum Dose"},
{0x30040072, "DSDVH Maximum Dose"},
{0x30040074, "DSDVH Mean Dose"},
{0x0032000A, "CSStudy Status ID"},
{0x0032000C, "CSStudy Priority ID"},
{0x00320012, "LOStudy ID Issuer"},
{0x00320032, "DAStudy Verified Date"},
{0x00320033, "TMStudy Verified Time"},
{0x00320034, "DAStudy Read Date"},
{0x00320035, "TMStudy Read Time"},
{0x00321000, "DAScheduled Study Start Date"},
{0x00321001, "TMScheduled Study Start Time"},
{0x00321010, "DAScheduled Study Stop Date"},
{0x00321011, "TMScheduled Study Stop Time"},
{0x00321020, "LOScheduled Study Location"},
{0x00321021, "AEScheduled Study Location AE Title(s)"},
{0x00321030, "LOReason for Study"},
{0x00321032, "PNRequesting Physician"},
{0x00321033, "LORequesting Service"},
{0x00321040, "DAStudy Arrival Date"},
{0x00321041, "TMStudy Arrival Time"},
{0x00321050, "DAStudy Completion Date"},
{0x00321051, "TMStudy Completion Time"},
{0x00321055, "CSStudy Component Status ID"},
{0x00321060, "LORequested Procedure Description"},
{0x00321064, "SQRequested Procedure Code Sequence"},
{0x00321070, "LORequested Contrast Agent"},
{0x00324000, "LTStudy Comments"},
{0x00400001, "AEScheduled Station AE Title"},
{0x00400002, "DAScheduled Procedure Step Start Date"},
{0x00400003, "TMScheduled Procedure Step Start Time"},
{0x00400004, "DAScheduled Procedure Step End Date"},
{0x00400005, "TMScheduled Procedure Step End Time"},
{0x00400006, "PNScheduled Performing Physician's Name"},
{0x00400007, "LOScheduled Procedure Step Description"},
{0x00400008, "SQScheduled Action Item Code Sequence"},
{0x00400009, "SHScheduled Procedure Step ID"},
{0x00400010, "SHScheduled Station Name"},
{0x00400011, "SHScheduled Procedure Step Location"},
{0x00400012, "LOPre-Medication"},
{0x00400020, "CSScheduled Procedure Step Status"},
{0x00400100, "SQScheduled Procedure Step Sequence"},
{0x00400220, "SQReferenced Standalone SOP Instance Sequence"},