dcm_dict 0.23.0 → 0.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +42 -0
  3. data/LICENSE +1 -1
  4. data/README.md +4 -7
  5. data/bin/dcm_dict_converter.rb +3 -3
  6. data/lib/dcm_dict.rb +1 -1
  7. data/lib/dcm_dict/dictionary/base_dictionary.rb +1 -1
  8. data/lib/dcm_dict/dictionary/base_record.rb +1 -1
  9. data/lib/dcm_dict/dictionary/data_element_dictionary.rb +1 -1
  10. data/lib/dcm_dict/dictionary/data_element_record.rb +1 -1
  11. data/lib/dcm_dict/dictionary/uid_record.rb +1 -1
  12. data/lib/dcm_dict/encoder/data_to_code.rb +1 -1
  13. data/lib/dcm_dict/error/dictionary_error.rb +1 -1
  14. data/lib/dcm_dict/ext/object_extension.rb +1 -1
  15. data/lib/dcm_dict/refine/array_refine.rb +1 -1
  16. data/lib/dcm_dict/refine/data_element_refine.rb +1 -1
  17. data/lib/dcm_dict/refine/internal/array_refine_internal.rb +1 -1
  18. data/lib/dcm_dict/refine/internal/hash_refine_internal.rb +1 -1
  19. data/lib/dcm_dict/refine/internal/string_refine_internal.rb +1 -1
  20. data/lib/dcm_dict/refine/string_refine.rb +1 -1
  21. data/lib/dcm_dict/refine/symbol_refine.rb +1 -1
  22. data/lib/dcm_dict/refine/uid_refine.rb +1 -1
  23. data/lib/dcm_dict/rubies/rb_ext.rb +1 -1
  24. data/lib/dcm_dict/source_data/data_elements_data.rb +245 -4
  25. data/lib/dcm_dict/source_data/detached_data.rb +1 -1
  26. data/lib/dcm_dict/source_data/uid_values_data.rb +29 -1
  27. data/lib/dcm_dict/version.rb +3 -3
  28. data/lib/dcm_dict/xml/constant.rb +1 -1
  29. data/lib/dcm_dict/xml/field_data.rb +1 -1
  30. data/lib/dcm_dict/xml/nokogiri_tool.rb +1 -1
  31. data/lib/dcm_dict/xml/rexml_tool.rb +1 -1
  32. data/lib/dcm_dict/xml/tag_field_data.rb +1 -1
  33. data/lib/dcm_dict/xml/uid_field_data.rb +1 -1
  34. data/lib/dcm_dict/xml/xml_tool.rb +1 -1
  35. data/spec/data_element_sample_spec_helper.rb +10 -2
  36. data/spec/data_element_shared_example_spec_helper.rb +1 -1
  37. data/spec/dcm_dict/dictionary/data_element_dictionary_spec.rb +1 -1
  38. data/spec/dcm_dict/dictionary/data_element_record_spec.rb +1 -1
  39. data/spec/dcm_dict/dictionary/uid_dictionary_spec.rb +23 -11
  40. data/spec/dcm_dict/dictionary/uid_record_spec.rb +1 -1
  41. data/spec/dcm_dict/encoder/data_to_code_spec.rb +1 -1
  42. data/spec/dcm_dict/ext/object_extension_spec.rb +1 -1
  43. data/spec/dcm_dict/refine/array_refine_spec.rb +1 -1
  44. data/spec/dcm_dict/refine/internal/array_refine_internal_spec.rb +1 -1
  45. data/spec/dcm_dict/refine/internal/hash_refine_internal_spec.rb +1 -1
  46. data/spec/dcm_dict/refine/internal/string_refine_internal_spec.rb +1 -1
  47. data/spec/dcm_dict/refine/string_refine_spec.rb +1 -1
  48. data/spec/dcm_dict/refine/symbol_refine_spec.rb +1 -1
  49. data/spec/dcm_dict/rubies/rb_ext_spec.rb +1 -1
  50. data/spec/dcm_dict/source_data/data_elements_data_spec.rb +1 -1
  51. data/spec/dcm_dict/source_data/detached_data_spec.rb +1 -1
  52. data/spec/dcm_dict/source_data/uid_values_data_spec.rb +1 -1
  53. data/spec/dcm_dict/version_spec.rb +1 -1
  54. data/spec/dcm_dict/xml/tag_field_data_spec.rb +1 -1
  55. data/spec/dcm_dict/xml/uid_field_data_spec.rb +1 -1
  56. data/spec/dictionary_shared_example_spec_helper.rb +3 -3
  57. data/spec/refine_shared_example_spec_helper.rb +1 -1
  58. data/spec/spec_helper.rb +1 -1
  59. data/spec/xml_sample_spec_helper.rb +1 -1
  60. metadata +8 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5fd2b8b15ac5cc3267cb63a00b28ca04f01ceedecfcdfd940c95031a22af740e
4
- data.tar.gz: 0a137c7270a93bd54743ed31fb748720449249ed82abf9ef874d3e2478e12e8e
3
+ metadata.gz: 4cbf890306b56d444f945fc9adcf0a8ed8ec5bdd189ae222b579243955bbff92
4
+ data.tar.gz: 7ca4287cc1a80f7b5d7003786a2d334c21676f5130eb43d19451460a317c23e9
5
5
  SHA512:
6
- metadata.gz: 364392f37d5d67bafe6b576a19b06f6025aba670b83448786e0aed4f11099e08f39e0149432b23e2b4ec0b88fe04d418ffe5ba898cc35b38a1e4cb6cdf507d5b
7
- data.tar.gz: 1aba897f059cd41e1e1149a3485ab8db342d1c70ad94480cb2a8db2d83a087d1cdbfb3465d77fd4a943626552407a8aa955534f654c328565e51038a54b40750
6
+ metadata.gz: 9e35ea243383246b5230dc27e5636b36cde29169df5484f58c7bc2f9329488fd9a811216550867733f04f2497d7a278df1d595bf145bf2764df69de6a98942e7
7
+ data.tar.gz: d71f8c0310a353e59a4ce5ee26471b7c29a77b04dc975bf14e40c9ad319cd7878507115a80be15ecfe8defc63b2567cfd934e7a6a9ef13eab76a8e632c23397c
@@ -1,5 +1,47 @@
1
1
  # DcmDict project Changelog
2
2
 
3
+ ## v0.29.0 (2020-07-21)
4
+ * Update to 2020c Base Standard
5
+ ___
6
+ ## v0.28.1 (2020-03-18)
7
+ * Updated dcm_dict.gemspec due to a security vulnerabilities into the Rake gem as defined into gemspec (>=10.3 to >=12.3.3)
8
+ #### Note for gemspec security report:
9
+ >rake vulnerability found in dcm_dict.gemspec:
10
+ >CVE-2020-8130 (moderate severity)
11
+ >Vulnerable versions: <= 12.3.2
12
+ >Patched version: 12.3.3
13
+ >There is an OS command injection vulnerability in Ruby Rake before 12.3.3 in Rake::FileList when supplying a filename that begins with the pipe character |.
14
+ >
15
+ >Remediation:
16
+ >Upgrade rake to version 12.3.3 or later.
17
+ >
18
+ >["OS Command Injection in Rake"](https://github.com/advisories/GHSA-jppv-gw3r-w3q8)
19
+ >["CVE-2020-8130 Detail"](https://nvd.nist.gov/vuln/detail/CVE-2020-8130)
20
+ ___
21
+ ## v0.28.0 (2020-03-18)
22
+ * Update to 2020b Base Standard
23
+ * Remove warning for deprecated method 'Kernel#open'
24
+ ___
25
+ ## v0.27.0 (2020-02-05)
26
+ * Update to 2020a Base Standard
27
+ ___
28
+ ## v0.26.2 (2020-02-05)
29
+ * Update copyright year
30
+ ___
31
+ ## v0.26.1 (2020-01-03)
32
+ * Fix test to be compatible with ruby 2.7
33
+ * (No Dictionary Change from 2019e)
34
+ ___
35
+ ## v0.26.0 (2019-11-20)
36
+ * Update to 2019e Base Standard
37
+ ___
38
+ ## v0.25.0 (2019-10-04)
39
+ * Update to 2019d Base Standard
40
+ ___
41
+ ## v0.24.0 (2019-06-19)
42
+ * Update to 2019c Base Standard
43
+ * (No Dictionary Change from 2019b)
44
+ ___
3
45
  ## v0.23.0 (2019-05-18)
4
46
  * Update to 2019b Base Standard
5
47
  * Update source url for xml data
data/LICENSE CHANGED
@@ -1,7 +1,7 @@
1
1
  DcmDict is a Ruby gem (dcm_dict) to handle
2
2
  in a simple way the Data defined within the DICOM Standard.
3
3
 
4
- Copyright (C) 2014-2019 Enrico Rivarola
4
+ Copyright (C) 2014-2020 Enrico Rivarola
5
5
 
6
6
  DcmDict is free software: you can redistribute it and/or modify
7
7
  it under the terms of the GNU General Public License as published by
data/README.md CHANGED
@@ -4,11 +4,8 @@
4
4
  # Why *DcmDict*
5
5
  With the new releases from year 2014 DICOM documents are available in different format including one particularly interesting, the *DocBook* XML version.
6
6
 
7
- As D. Clunie writes on his web site in the [DICOM Standard Status page][2]:
8
- > "... other formats (such as DocBook, HTML, Word and ODT) are also made available for the convenience of implementors who may need to extract machine-readable content, ..."
9
-
10
- This is confirmed in the DICOM<sup>®</sup> Standard [web site][10] where each part is published in [multiple formats][11] and the XML format is defined:
11
- >"... good for machine readability, e.g. self-updating validators ..."
7
+ As confirmed in the DICOM<sup>®</sup> Standard [web site][10] where each part is published in [multiple formats][11] and XML format is defined by:
8
+ >"... XML good for machine readability, e.g. self-updating validators ..."
12
9
 
13
10
  This is great news for anyone involved in the study of the standard !
14
11
 
@@ -272,7 +269,7 @@ Note: the script use the [Nokogiri][3] as XML parser if installed as gem, otherw
272
269
  Check the file for other details.
273
270
 
274
271
  ## Note
275
- Current library version is aligned to *DICOM Base Standard* **2019b**
272
+ Current library version is aligned to *DICOM Base Standard* **2020c**
276
273
 
277
274
  ## Install
278
275
 
@@ -295,7 +292,7 @@ There are many possible *candidates* for inclusion in the *dictionary*, here are
295
292
  TBD
296
293
 
297
294
  ## License
298
- Copyright (C) 2014-2019 Enrico Rivarola.
295
+ Copyright (C) 2014-2020 Enrico Rivarola.
299
296
  See the `LICENSE` and `COPYING` files for license details.
300
297
 
301
298
  ## Ruby Gem
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  # -*- ruby -*-
3
3
  #
4
- # Copyright (C) 2014-2019 Enrico Rivarola
4
+ # Copyright (C) 2014-2020 Enrico Rivarola
5
5
  #
6
6
  # This file is part of DcmDict gem (dcm_dict).
7
7
  #
@@ -29,7 +29,7 @@ require 'dcm_dict'
29
29
  require 'dcm_dict/xml/xml_tool'
30
30
 
31
31
  LICENSE_TEXT=<<END_LICENSE
32
- Copyright (C) 2014-2019 Enrico Rivarola
32
+ Copyright (C) 2014-2020 Enrico Rivarola
33
33
 
34
34
  This file is part of DcmDict gem (dcm_dict).
35
35
 
@@ -89,7 +89,7 @@ class DcmDictConverter
89
89
  def pull_standard_draft(url, output)
90
90
  buffer_size = 256 * 1_024
91
91
  trace("Downloading #{url}\n")
92
- open(url, "r",
92
+ URI.open(url, "r",
93
93
  :content_length_proc => lambda {|content_length| trace("Content Length: #{content_length} bytes\n.") },
94
94
  :progress_proc => lambda { |size| trace(".") }) do |src|
95
95
  while (buffer = src.read(buffer_size))
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,6 +1,6 @@
1
1
  # coding: utf-8
2
2
  #
3
- # Copyright (C) 2014-2019 Enrico Rivarola
3
+ # Copyright (C) 2014-2020 Enrico Rivarola
4
4
  #
5
5
  # This file is part of DcmDict gem (dcm_dict).
6
6
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (C) 2014-2019 Enrico Rivarola
2
+ # Copyright (C) 2014-2020 Enrico Rivarola
3
3
  #
4
4
  # This file is part of DcmDict gem (dcm_dict).
5
5
  #
@@ -1,6 +1,6 @@
1
1
  # coding: utf-8
2
2
  #
3
- # Copyright (C) 2014-2019 Enrico Rivarola
3
+ # Copyright (C) 2014-2020 Enrico Rivarola
4
4
  #
5
5
  # This file is part of DcmDict gem (dcm_dict).
6
6
  #
@@ -107,6 +107,16 @@ HIGH = 0001H'},
107
107
  { tag_ps: '(0002,0016)', tag_name: "Source Application Entity Title", tag_key: 'SourceApplicationEntityTitle', tag_vr: [:AE], tag_vm: ["1"], tag_str: '(0002,0016)', tag_sym: :source_application_entity_title, tag_ndm: '00020016', tag_ary: [0x0002,0x0016], tag_multiple: false, tag_note: ''},
108
108
  { tag_ps: '(0002,0017)', tag_name: "Sending Application Entity Title", tag_key: 'SendingApplicationEntityTitle', tag_vr: [:AE], tag_vm: ["1"], tag_str: '(0002,0017)', tag_sym: :sending_application_entity_title, tag_ndm: '00020017', tag_ary: [0x0002,0x0017], tag_multiple: false, tag_note: ''},
109
109
  { tag_ps: '(0002,0018)', tag_name: "Receiving Application Entity Title", tag_key: 'ReceivingApplicationEntityTitle', tag_vr: [:AE], tag_vm: ["1"], tag_str: '(0002,0018)', tag_sym: :receiving_application_entity_title, tag_ndm: '00020018', tag_ary: [0x0002,0x0018], tag_multiple: false, tag_note: ''},
110
+ { tag_ps: '(0002,0026)', tag_name: "Source Presentation Address", tag_key: 'SourcePresentationAddress', tag_vr: [:UR], tag_vm: ["1"], tag_str: '(0002,0026)', tag_sym: :source_presentation_address, tag_ndm: '00020026', tag_ary: [0x0002,0x0026], tag_multiple: false, tag_note: ''},
111
+ { tag_ps: '(0002,0027)', tag_name: "Sending Presentation Address", tag_key: 'SendingPresentationAddress', tag_vr: [:UR], tag_vm: ["1"], tag_str: '(0002,0027)', tag_sym: :sending_presentation_address, tag_ndm: '00020027', tag_ary: [0x0002,0x0027], tag_multiple: false, tag_note: ''},
112
+ { tag_ps: '(0002,0028)', tag_name: "Receiving Presentation Address", tag_key: 'ReceivingPresentationAddress', tag_vr: [:UR], tag_vm: ["1"], tag_str: '(0002,0028)', tag_sym: :receiving_presentation_address, tag_ndm: '00020028', tag_ary: [0x0002,0x0028], tag_multiple: false, tag_note: ''},
113
+ { tag_ps: '(0002,0031)', tag_name: "RTV Meta Information Version", tag_key: 'RTVMetaInformationVersion', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0002,0031)', tag_sym: :rtv_meta_information_version, tag_ndm: '00020031', tag_ary: [0x0002,0x0031], tag_multiple: false, tag_note: ''},
114
+ { tag_ps: '(0002,0032)', tag_name: "RTV Communication SOP Class UID", tag_key: 'RTVCommunicationSOPClassUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0002,0032)', tag_sym: :rtv_communication_sop_class_uid, tag_ndm: '00020032', tag_ary: [0x0002,0x0032], tag_multiple: false, tag_note: ''},
115
+ { tag_ps: '(0002,0033)', tag_name: "RTV Communication SOP Instance UID", tag_key: 'RTVCommunicationSOPInstanceUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0002,0033)', tag_sym: :rtv_communication_sop_instance_uid, tag_ndm: '00020033', tag_ary: [0x0002,0x0033], tag_multiple: false, tag_note: ''},
116
+ { tag_ps: '(0002,0035)', tag_name: "RTV Source Identifier", tag_key: 'RTVSourceIdentifier', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0002,0035)', tag_sym: :rtv_source_identifier, tag_ndm: '00020035', tag_ary: [0x0002,0x0035], tag_multiple: false, tag_note: ''},
117
+ { tag_ps: '(0002,0036)', tag_name: "RTV Flow Identifier", tag_key: 'RTVFlowIdentifier', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0002,0036)', tag_sym: :rtv_flow_identifier, tag_ndm: '00020036', tag_ary: [0x0002,0x0036], tag_multiple: false, tag_note: ''},
118
+ { tag_ps: '(0002,0037)', tag_name: "RTV Flow RTP Sampling Rate", tag_key: 'RTVFlowRTPSamplingRate', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0002,0037)', tag_sym: :rtv_flow_rtp_sampling_rate, tag_ndm: '00020037', tag_ary: [0x0002,0x0037], tag_multiple: false, tag_note: ''},
119
+ { tag_ps: '(0002,0038)', tag_name: "RTV Flow Actual Frame Duration", tag_key: 'RTVFlowActualFrameDuration', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0002,0038)', tag_sym: :rtv_flow_actual_frame_duration, tag_ndm: '00020038', tag_ary: [0x0002,0x0038], tag_multiple: false, tag_note: ''},
110
120
  { tag_ps: '(0002,0100)', tag_name: "Private Information Creator UID", tag_key: 'PrivateInformationCreatorUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0002,0100)', tag_sym: :private_information_creator_uid, tag_ndm: '00020100', tag_ary: [0x0002,0x0100], tag_multiple: false, tag_note: ''},
111
121
  { tag_ps: '(0002,0102)', tag_name: "Private Information", tag_key: 'PrivateInformation', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0002,0102)', tag_sym: :private_information, tag_ndm: '00020102', tag_ary: [0x0002,0x0102], tag_multiple: false, tag_note: ''},
112
122
  { tag_ps: '(0004,1130)', tag_name: "File-set ID", tag_key: 'FileSetID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0004,1130)', tag_sym: :file_set_id, tag_ndm: '00041130', tag_ary: [0x0004,0x1130], tag_multiple: false, tag_note: ''},
@@ -211,6 +221,7 @@ HIGH = 0001H'},
211
221
  { tag_ps: '(0008,0123)', tag_name: "Context Group Identification Sequence", tag_key: 'ContextGroupIdentificationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0123)', tag_sym: :context_group_identification_sequence, tag_ndm: '00080123', tag_ary: [0x0008,0x0123], tag_multiple: false, tag_note: ''},
212
222
  { tag_ps: '(0008,0124)', tag_name: "Mapping Resource Identification Sequence", tag_key: 'MappingResourceIdentificationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0124)', tag_sym: :mapping_resource_identification_sequence, tag_ndm: '00080124', tag_ary: [0x0008,0x0124], tag_multiple: false, tag_note: ''},
213
223
  { tag_ps: '(0008,0201)', tag_name: "Timezone Offset From UTC", tag_key: 'TimezoneOffsetFromUTC', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0008,0201)', tag_sym: :timezone_offset_from_utc, tag_ndm: '00080201', tag_ary: [0x0008,0x0201], tag_multiple: false, tag_note: ''},
224
+ { tag_ps: '(0008,0202)', tag_name: "Placeholder (0008,0202)", tag_key: 'Placeholder_0008_0202', tag_vr: [:UN], tag_vm: ["1"], tag_str: '(0008,0202)', tag_sym: :placeholder_0008_0202, tag_ndm: '00080202', tag_ary: [0x0008,0x0202], tag_multiple: false, tag_note: 'RET (2020c)'},
214
225
  { tag_ps: '(0008,0220)', tag_name: "Responsible Group Code Sequence", tag_key: 'ResponsibleGroupCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0220)', tag_sym: :responsible_group_code_sequence, tag_ndm: '00080220', tag_ary: [0x0008,0x0220], tag_multiple: false, tag_note: ''},
215
226
  { tag_ps: '(0008,0221)', tag_name: "Equipment Modality", tag_key: 'EquipmentModality', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,0221)', tag_sym: :equipment_modality, tag_ndm: '00080221', tag_ary: [0x0008,0x0221], tag_multiple: false, tag_note: ''},
216
227
  { tag_ps: '(0008,0222)', tag_name: "Manufacturer's Related Model Group", tag_key: 'ManufacturerRelatedModelGroup', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0008,0222)', tag_sym: :manufacturer_related_model_group, tag_ndm: '00080222', tag_ary: [0x0008,0x0222], tag_multiple: false, tag_note: ''},
@@ -322,6 +333,7 @@ HIGH = 0001H'},
322
333
  { tag_ps: '(0008,225A)', tag_name: "Anatomic Structure Space Or Region Modifier Code Sequence (Trial)", tag_key: 'AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,225A)', tag_sym: :anatomic_structure_space_or_region_modifier_code_sequence_trial, tag_ndm: '0008225A', tag_ary: [0x0008,0x225A], tag_multiple: false, tag_note: 'RET (2007)'},
323
334
  { tag_ps: '(0008,225C)', tag_name: "On Axis Background Anatomic Structure Code Sequence (Trial)", tag_key: 'OnAxisBackgroundAnatomicStructureCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,225C)', tag_sym: :on_axis_background_anatomic_structure_code_sequence_trial, tag_ndm: '0008225C', tag_ary: [0x0008,0x225C], tag_multiple: false, tag_note: 'RET (2007)'},
324
335
  { tag_ps: '(0008,3001)', tag_name: "Alternate Representation Sequence", tag_key: 'AlternateRepresentationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,3001)', tag_sym: :alternate_representation_sequence, tag_ndm: '00083001', tag_ary: [0x0008,0x3001], tag_multiple: false, tag_note: ''},
336
+ { tag_ps: '(0008,3002)', tag_name: "Available Transfer Syntax UID", tag_key: 'AvailableTransferSyntaxUID', tag_vr: [:UI], tag_vm: ["1-n"], tag_str: '(0008,3002)', tag_sym: :available_transfer_syntax_uid, tag_ndm: '00083002', tag_ary: [0x0008,0x3002], tag_multiple: false, tag_note: ''},
325
337
  { tag_ps: '(0008,3010)', tag_name: "Irradiation Event UID", tag_key: 'IrradiationEventUID', tag_vr: [:UI], tag_vm: ["1-n"], tag_str: '(0008,3010)', tag_sym: :irradiation_event_uid, tag_ndm: '00083010', tag_ary: [0x0008,0x3010], tag_multiple: false, tag_note: ''},
326
338
  { tag_ps: '(0008,3011)', tag_name: "Source Irradiation Event Sequence", tag_key: 'SourceIrradiationEventSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,3011)', tag_sym: :source_irradiation_event_sequence, tag_ndm: '00083011', tag_ary: [0x0008,0x3011], tag_multiple: false, tag_note: ''},
327
339
  { tag_ps: '(0008,3012)', tag_name: "Radiopharmaceutical Administration Event UID", tag_key: 'RadiopharmaceuticalAdministrationEventUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0008,3012)', tag_sym: :radiopharmaceutical_administration_event_uid, tag_ndm: '00083012', tag_ary: [0x0008,0x3012], tag_multiple: false, tag_note: ''},
@@ -803,6 +815,7 @@ HIGH = 0001H'},
803
815
  { tag_ps: '(0018,1008)', tag_name: "Gantry ID", tag_key: 'GantryID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1008)', tag_sym: :gantry_id, tag_ndm: '00181008', tag_ary: [0x0018,0x1008], tag_multiple: false, tag_note: ''},
804
816
  { tag_ps: '(0018,1009)', tag_name: "Unique Device Identifier", tag_key: 'UniqueDeviceIdentifier', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0018,1009)', tag_sym: :unique_device_identifier, tag_ndm: '00181009', tag_ary: [0x0018,0x1009], tag_multiple: false, tag_note: ''},
805
817
  { tag_ps: '(0018,100A)', tag_name: "UDI Sequence", tag_key: 'UDISequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,100A)', tag_sym: :udi_sequence, tag_ndm: '0018100A', tag_ary: [0x0018,0x100A], tag_multiple: false, tag_note: ''},
818
+ { tag_ps: '(0018,100B)', tag_name: "Manufacturer's Device Class UID", tag_key: 'ManufacturerDeviceClassUID', tag_vr: [:UI], tag_vm: ["1-n"], tag_str: '(0018,100B)', tag_sym: :manufacturer_device_class_uid, tag_ndm: '0018100B', tag_ary: [0x0018,0x100B], tag_multiple: false, tag_note: ''},
806
819
  { tag_ps: '(0018,1010)', tag_name: "Secondary Capture Device ID", tag_key: 'SecondaryCaptureDeviceID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1010)', tag_sym: :secondary_capture_device_id, tag_ndm: '00181010', tag_ary: [0x0018,0x1010], tag_multiple: false, tag_note: ''},
807
820
  { tag_ps: '(0018,1011)', tag_name: "Hardcopy Creation Device ID", tag_key: 'HardcopyCreationDeviceID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1011)', tag_sym: :hardcopy_creation_device_id, tag_ndm: '00181011', tag_ary: [0x0018,0x1011], tag_multiple: false, tag_note: 'RET (2007)'},
808
821
  { tag_ps: '(0018,1012)', tag_name: "Date of Secondary Capture", tag_key: 'DateOfSecondaryCapture', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0018,1012)', tag_sym: :date_of_secondary_capture, tag_ndm: '00181012', tag_ary: [0x0018,0x1012], tag_multiple: false, tag_note: ''},
@@ -970,6 +983,15 @@ HIGH = 0001H'},
970
983
  { tag_ps: '(0018,1622)', tag_name: "Shutter Presentation Value", tag_key: 'ShutterPresentationValue', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0018,1622)', tag_sym: :shutter_presentation_value, tag_ndm: '00181622', tag_ary: [0x0018,0x1622], tag_multiple: false, tag_note: ''},
971
984
  { tag_ps: '(0018,1623)', tag_name: "Shutter Overlay Group", tag_key: 'ShutterOverlayGroup', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0018,1623)', tag_sym: :shutter_overlay_group, tag_ndm: '00181623', tag_ary: [0x0018,0x1623], tag_multiple: false, tag_note: ''},
972
985
  { tag_ps: '(0018,1624)', tag_name: "Shutter Presentation Color CIELab Value", tag_key: 'ShutterPresentationColorCIELabValue', tag_vr: [:US], tag_vm: ["3"], tag_str: '(0018,1624)', tag_sym: :shutter_presentation_color_cie_lab_value, tag_ndm: '00181624', tag_ary: [0x0018,0x1624], tag_multiple: false, tag_note: ''},
986
+ { tag_ps: '(0018,1630)', tag_name: "Outline Shape Type", tag_key: 'OutlineShapeType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,1630)', tag_sym: :outline_shape_type, tag_ndm: '00181630', tag_ary: [0x0018,0x1630], tag_multiple: false, tag_note: ''},
987
+ { tag_ps: '(0018,1631)', tag_name: "Outline Left Vertical Edge", tag_key: 'OutlineLeftVerticalEdge', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,1631)', tag_sym: :outline_left_vertical_edge, tag_ndm: '00181631', tag_ary: [0x0018,0x1631], tag_multiple: false, tag_note: ''},
988
+ { tag_ps: '(0018,1632)', tag_name: "Outline Right Vertical Edge", tag_key: 'OutlineRightVerticalEdge', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,1632)', tag_sym: :outline_right_vertical_edge, tag_ndm: '00181632', tag_ary: [0x0018,0x1632], tag_multiple: false, tag_note: ''},
989
+ { tag_ps: '(0018,1633)', tag_name: "Outline Upper Horizontal Edge", tag_key: 'OutlineUpperHorizontalEdge', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,1633)', tag_sym: :outline_upper_horizontal_edge, tag_ndm: '00181633', tag_ary: [0x0018,0x1633], tag_multiple: false, tag_note: ''},
990
+ { tag_ps: '(0018,1634)', tag_name: "Outline Lower Horizontal Edge", tag_key: 'OutlineLowerHorizontalEdge', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,1634)', tag_sym: :outline_lower_horizontal_edge, tag_ndm: '00181634', tag_ary: [0x0018,0x1634], tag_multiple: false, tag_note: ''},
991
+ { tag_ps: '(0018,1635)', tag_name: "Center of Circular Outline", tag_key: 'CenterOfCircularOutline', tag_vr: [:FD], tag_vm: ["2"], tag_str: '(0018,1635)', tag_sym: :center_of_circular_outline, tag_ndm: '00181635', tag_ary: [0x0018,0x1635], tag_multiple: false, tag_note: ''},
992
+ { tag_ps: '(0018,1636)', tag_name: "Diameter of Circular Outline", tag_key: 'DiameterOfCircularOutline', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,1636)', tag_sym: :diameter_of_circular_outline, tag_ndm: '00181636', tag_ary: [0x0018,0x1636], tag_multiple: false, tag_note: ''},
993
+ { tag_ps: '(0018,1637)', tag_name: "Number of Polygonal Vertices", tag_key: 'NumberOfPolygonalVertices', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,1637)', tag_sym: :number_of_polygonal_vertices, tag_ndm: '00181637', tag_ary: [0x0018,0x1637], tag_multiple: false, tag_note: ''},
994
+ { tag_ps: '(0018,1638)', tag_name: "Vertices of the Polygonal Outline", tag_key: 'VerticesOfThePolygonalOutline', tag_vr: [:OF], tag_vm: ["1"], tag_str: '(0018,1638)', tag_sym: :vertices_of_the_polygonal_outline, tag_ndm: '00181638', tag_ary: [0x0018,0x1638], tag_multiple: false, tag_note: ''},
973
995
  { tag_ps: '(0018,1700)', tag_name: "Collimator Shape", tag_key: 'CollimatorShape', tag_vr: [:CS], tag_vm: ["1-3"], tag_str: '(0018,1700)', tag_sym: :collimator_shape, tag_ndm: '00181700', tag_ary: [0x0018,0x1700], tag_multiple: false, tag_note: ''},
974
996
  { tag_ps: '(0018,1702)', tag_name: "Collimator Left Vertical Edge", tag_key: 'CollimatorLeftVerticalEdge', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0018,1702)', tag_sym: :collimator_left_vertical_edge, tag_ndm: '00181702', tag_ary: [0x0018,0x1702], tag_multiple: false, tag_note: ''},
975
997
  { tag_ps: '(0018,1704)', tag_name: "Collimator Right Vertical Edge", tag_key: 'CollimatorRightVerticalEdge', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0018,1704)', tag_sym: :collimator_right_vertical_edge, tag_ndm: '00181704', tag_ary: [0x0018,0x1704], tag_multiple: false, tag_note: ''},
@@ -1331,8 +1353,8 @@ HIGH = 0001H'},
1331
1353
  { tag_ps: '(0018,9366)', tag_name: "X-Ray Source Index", tag_key: 'XRaySourceIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0018,9366)', tag_sym: :x_ray_source_index, tag_ndm: '00189366', tag_ary: [0x0018,0x9366], tag_multiple: false, tag_note: ''},
1332
1354
  { tag_ps: '(0018,9367)', tag_name: "X-Ray Source ID", tag_key: 'XRaySourceID', tag_vr: [:UC], tag_vm: ["1"], tag_str: '(0018,9367)', tag_sym: :x_ray_source_id, tag_ndm: '00189367', tag_ary: [0x0018,0x9367], tag_multiple: false, tag_note: ''},
1333
1355
  { tag_ps: '(0018,9368)', tag_name: "Multi-energy Source Technique", tag_key: 'MultienergySourceTechnique', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,9368)', tag_sym: :multienergy_source_technique, tag_ndm: '00189368', tag_ary: [0x0018,0x9368], tag_multiple: false, tag_note: ''},
1334
- { tag_ps: '(0018,9369)', tag_name: "Source Start Date Time", tag_key: 'SourceStartDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0018,9369)', tag_sym: :source_start_date_time, tag_ndm: '00189369', tag_ary: [0x0018,0x9369], tag_multiple: false, tag_note: ''},
1335
- { tag_ps: '(0018,936A)', tag_name: "Source End Date Time", tag_key: 'SourceEndDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0018,936A)', tag_sym: :source_end_date_time, tag_ndm: '0018936A', tag_ary: [0x0018,0x936A], tag_multiple: false, tag_note: ''},
1356
+ { tag_ps: '(0018,9369)', tag_name: "Source Start DateTime", tag_key: 'SourceStartDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0018,9369)', tag_sym: :source_start_date_time, tag_ndm: '00189369', tag_ary: [0x0018,0x9369], tag_multiple: false, tag_note: ''},
1357
+ { tag_ps: '(0018,936A)', tag_name: "Source End DateTime", tag_key: 'SourceEndDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0018,936A)', tag_sym: :source_end_date_time, tag_ndm: '0018936A', tag_ary: [0x0018,0x936A], tag_multiple: false, tag_note: ''},
1336
1358
  { tag_ps: '(0018,936B)', tag_name: "Switching Phase Number", tag_key: 'SwitchingPhaseNumber', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0018,936B)', tag_sym: :switching_phase_number, tag_ndm: '0018936B', tag_ary: [0x0018,0x936B], tag_multiple: false, tag_note: ''},
1337
1359
  { tag_ps: '(0018,936C)', tag_name: "Switching Phase Nominal Duration", tag_key: 'SwitchingPhaseNominalDuration', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,936C)', tag_sym: :switching_phase_nominal_duration, tag_ndm: '0018936C', tag_ary: [0x0018,0x936C], tag_multiple: false, tag_note: ''},
1338
1360
  { tag_ps: '(0018,936D)', tag_name: "Switching Phase Transition Duration", tag_key: 'SwitchingPhaseTransitionDuration', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,936D)', tag_sym: :switching_phase_transition_duration, tag_ndm: '0018936D', tag_ary: [0x0018,0x936D], tag_multiple: false, tag_note: ''},
@@ -2256,6 +2278,18 @@ HIGH = 0001H'},
2256
2278
  { tag_ps: '(0032,1067)', tag_name: "Reason for Visit Code Sequence", tag_key: 'ReasonForVisitCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0032,1067)', tag_sym: :reason_for_visit_code_sequence, tag_ndm: '00321067', tag_ary: [0x0032,0x1067], tag_multiple: false, tag_note: ''},
2257
2279
  { tag_ps: '(0032,1070)', tag_name: "Requested Contrast Agent", tag_key: 'RequestedContrastAgent', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0032,1070)', tag_sym: :requested_contrast_agent, tag_ndm: '00321070', tag_ary: [0x0032,0x1070], tag_multiple: false, tag_note: ''},
2258
2280
  { tag_ps: '(0032,4000)', tag_name: "Study Comments", tag_key: 'StudyComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0032,4000)', tag_sym: :study_comments, tag_ndm: '00324000', tag_ary: [0x0032,0x4000], tag_multiple: false, tag_note: 'RET (2007)'},
2281
+ { tag_ps: '(0034,0001)', tag_name: "Flow Identifier Sequence", tag_key: 'FlowIdentifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0034,0001)', tag_sym: :flow_identifier_sequence, tag_ndm: '00340001', tag_ary: [0x0034,0x0001], tag_multiple: false, tag_note: ''},
2282
+ { tag_ps: '(0034,0002)', tag_name: "Flow Identifier", tag_key: 'FlowIdentifier', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0034,0002)', tag_sym: :flow_identifier, tag_ndm: '00340002', tag_ary: [0x0034,0x0002], tag_multiple: false, tag_note: ''},
2283
+ { tag_ps: '(0034,0003)', tag_name: "Flow Transfer Syntax UID", tag_key: 'FlowTransferSyntaxUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0034,0003)', tag_sym: :flow_transfer_syntax_uid, tag_ndm: '00340003', tag_ary: [0x0034,0x0003], tag_multiple: false, tag_note: ''},
2284
+ { tag_ps: '(0034,0004)', tag_name: "Flow RTP Sampling Rate", tag_key: 'FlowRTPSamplingRate', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0034,0004)', tag_sym: :flow_rtp_sampling_rate, tag_ndm: '00340004', tag_ary: [0x0034,0x0004], tag_multiple: false, tag_note: ''},
2285
+ { tag_ps: '(0034,0005)', tag_name: "Source Identifier", tag_key: 'SourceIdentifier', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0034,0005)', tag_sym: :source_identifier, tag_ndm: '00340005', tag_ary: [0x0034,0x0005], tag_multiple: false, tag_note: ''},
2286
+ { tag_ps: '(0034,0007)', tag_name: "Frame Origin Timestamp", tag_key: 'FrameOriginTimestamp', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0034,0007)', tag_sym: :frame_origin_timestamp, tag_ndm: '00340007', tag_ary: [0x0034,0x0007], tag_multiple: false, tag_note: ''},
2287
+ { tag_ps: '(0034,0008)', tag_name: "Includes Imaging Subject", tag_key: 'IncludesImagingSubject', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0034,0008)', tag_sym: :includes_imaging_subject, tag_ndm: '00340008', tag_ary: [0x0034,0x0008], tag_multiple: false, tag_note: ''},
2288
+ { tag_ps: '(0034,0009)', tag_name: "Frame Usefulness Group Sequence", tag_key: 'FrameUsefulnessGroupSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0034,0009)', tag_sym: :frame_usefulness_group_sequence, tag_ndm: '00340009', tag_ary: [0x0034,0x0009], tag_multiple: false, tag_note: ''},
2289
+ { tag_ps: '(0034,000A)', tag_name: "Real-Time Bulk Data Flow Sequence", tag_key: 'RealTimeBulkDataFlowSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0034,000A)', tag_sym: :real_time_bulk_data_flow_sequence, tag_ndm: '0034000A', tag_ary: [0x0034,0x000A], tag_multiple: false, tag_note: ''},
2290
+ { tag_ps: '(0034,000B)', tag_name: "Camera Position Group Sequence", tag_key: 'CameraPositionGroupSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0034,000B)', tag_sym: :camera_position_group_sequence, tag_ndm: '0034000B', tag_ary: [0x0034,0x000B], tag_multiple: false, tag_note: ''},
2291
+ { tag_ps: '(0034,000C)', tag_name: "Includes Information", tag_key: 'IncludesInformation', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0034,000C)', tag_sym: :includes_information, tag_ndm: '0034000C', tag_ary: [0x0034,0x000C], tag_multiple: false, tag_note: ''},
2292
+ { tag_ps: '(0034,000D)', tag_name: "Time of Frame Group Sequence", tag_key: 'TimeOfFrameGroupSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0034,000D)', tag_sym: :time_of_frame_group_sequence, tag_ndm: '0034000D', tag_ary: [0x0034,0x000D], tag_multiple: false, tag_note: ''},
2259
2293
  { tag_ps: '(0038,0004)', tag_name: "Referenced Patient Alias Sequence", tag_key: 'ReferencedPatientAliasSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0038,0004)', tag_sym: :referenced_patient_alias_sequence, tag_ndm: '00380004', tag_ary: [0x0038,0x0004], tag_multiple: false, tag_note: ''},
2260
2294
  { tag_ps: '(0038,0008)', tag_name: "Visit Status ID", tag_key: 'VisitStatusID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0038,0008)', tag_sym: :visit_status_id, tag_ndm: '00380008', tag_ary: [0x0038,0x0008], tag_multiple: false, tag_note: ''},
2261
2295
  { tag_ps: '(0038,0010)', tag_name: "Admission ID", tag_key: 'AdmissionID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0010)', tag_sym: :admission_id, tag_ndm: '00380010', tag_ary: [0x0038,0x0010], tag_multiple: false, tag_note: ''},
@@ -2324,6 +2358,13 @@ HIGH = 0001H'},
2324
2358
  { tag_ps: '(003A,0300)', tag_name: "Multiplexed Audio Channels Description Code Sequence", tag_key: 'MultiplexedAudioChannelsDescriptionCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(003A,0300)', tag_sym: :multiplexed_audio_channels_description_code_sequence, tag_ndm: '003A0300', tag_ary: [0x003A,0x0300], tag_multiple: false, tag_note: ''},
2325
2359
  { tag_ps: '(003A,0301)', tag_name: "Channel Identification Code", tag_key: 'ChannelIdentificationCode', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(003A,0301)', tag_sym: :channel_identification_code, tag_ndm: '003A0301', tag_ary: [0x003A,0x0301], tag_multiple: false, tag_note: ''},
2326
2360
  { tag_ps: '(003A,0302)', tag_name: "Channel Mode", tag_key: 'ChannelMode', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(003A,0302)', tag_sym: :channel_mode, tag_ndm: '003A0302', tag_ary: [0x003A,0x0302], tag_multiple: false, tag_note: ''},
2361
+ { tag_ps: '(003A,0310)', tag_name: "Multiplex Group UID", tag_key: 'MultiplexGroupUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(003A,0310)', tag_sym: :multiplex_group_uid, tag_ndm: '003A0310', tag_ary: [0x003A,0x0310], tag_multiple: false, tag_note: ''},
2362
+ { tag_ps: '(003A,0311)', tag_name: "Powerline Frequency", tag_key: 'PowerlineFrequency', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(003A,0311)', tag_sym: :powerline_frequency, tag_ndm: '003A0311', tag_ary: [0x003A,0x0311], tag_multiple: false, tag_note: ''},
2363
+ { tag_ps: '(003A,0312)', tag_name: "Channel Impedance Sequence", tag_key: 'ChannelImpedanceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(003A,0312)', tag_sym: :channel_impedance_sequence, tag_ndm: '003A0312', tag_ary: [0x003A,0x0312], tag_multiple: false, tag_note: ''},
2364
+ { tag_ps: '(003A,0313)', tag_name: "Impedance Value", tag_key: 'ImpedanceValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(003A,0313)', tag_sym: :impedance_value, tag_ndm: '003A0313', tag_ary: [0x003A,0x0313], tag_multiple: false, tag_note: ''},
2365
+ { tag_ps: '(003A,0314)', tag_name: "Impedance Measurement DateTime", tag_key: 'ImpedanceMeasurementDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(003A,0314)', tag_sym: :impedance_measurement_date_time, tag_ndm: '003A0314', tag_ary: [0x003A,0x0314], tag_multiple: false, tag_note: ''},
2366
+ { tag_ps: '(003A,0315)', tag_name: "Impedance Measurement Frequency", tag_key: 'ImpedanceMeasurementFrequency', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(003A,0315)', tag_sym: :impedance_measurement_frequency, tag_ndm: '003A0315', tag_ary: [0x003A,0x0315], tag_multiple: false, tag_note: ''},
2367
+ { tag_ps: '(003A,0316)', tag_name: "Impedance Measurement Current Type", tag_key: 'ImpedanceMeasurementCurrentType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(003A,0316)', tag_sym: :impedance_measurement_current_type, tag_ndm: '003A0316', tag_ary: [0x003A,0x0316], tag_multiple: false, tag_note: ''},
2327
2368
  { tag_ps: '(0040,0001)', tag_name: "Scheduled Station AE Title", tag_key: 'ScheduledStationAETitle', tag_vr: [:AE], tag_vm: ["1-n"], tag_str: '(0040,0001)', tag_sym: :scheduled_station_ae_title, tag_ndm: '00400001', tag_ary: [0x0040,0x0001], tag_multiple: false, tag_note: ''},
2328
2369
  { tag_ps: '(0040,0002)', tag_name: "Scheduled Procedure Step Start Date", tag_key: 'ScheduledProcedureStepStartDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0040,0002)', tag_sym: :scheduled_procedure_step_start_date, tag_ndm: '00400002', tag_ary: [0x0040,0x0002], tag_multiple: false, tag_note: ''},
2329
2370
  { tag_ps: '(0040,0003)', tag_name: "Scheduled Procedure Step Start Time", tag_key: 'ScheduledProcedureStepStartTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0040,0003)', tag_sym: :scheduled_procedure_step_start_time, tag_ndm: '00400003', tag_ary: [0x0040,0x0003], tag_multiple: false, tag_note: ''},
@@ -3096,6 +3137,8 @@ HIGH = 0001H'},
3096
3137
  { tag_ps: '(0068,7001)', tag_name: "Model Modification", tag_key: 'ModelModification', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0068,7001)', tag_sym: :model_modification, tag_ndm: '00687001', tag_ary: [0x0068,0x7001], tag_multiple: false, tag_note: ''},
3097
3138
  { tag_ps: '(0068,7002)', tag_name: "Model Mirroring", tag_key: 'ModelMirroring', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0068,7002)', tag_sym: :model_mirroring, tag_ndm: '00687002', tag_ary: [0x0068,0x7002], tag_multiple: false, tag_note: ''},
3098
3139
  { tag_ps: '(0068,7003)', tag_name: "Model Usage Code Sequence", tag_key: 'ModelUsageCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0068,7003)', tag_sym: :model_usage_code_sequence, tag_ndm: '00687003', tag_ary: [0x0068,0x7003], tag_multiple: false, tag_note: ''},
3140
+ { tag_ps: '(0068,7004)', tag_name: "Model Group UID", tag_key: 'ModelGroupUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0068,7004)', tag_sym: :model_group_uid, tag_ndm: '00687004', tag_ary: [0x0068,0x7004], tag_multiple: false, tag_note: ''},
3141
+ { tag_ps: '(0068,7005)', tag_name: "Relative URI Reference Within Encapsulated Document", tag_key: 'RelativeURIReferenceWithinEncapsulatedDocument', tag_vr: [:UR], tag_vm: ["1"], tag_str: '(0068,7005)', tag_sym: :relative_uri_reference_within_encapsulated_document, tag_ndm: '00687005', tag_ary: [0x0068,0x7005], tag_multiple: false, tag_note: ''},
3099
3142
  { tag_ps: '(0070,0001)', tag_name: "Graphic Annotation Sequence", tag_key: 'GraphicAnnotationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0070,0001)', tag_sym: :graphic_annotation_sequence, tag_ndm: '00700001', tag_ary: [0x0070,0x0001], tag_multiple: false, tag_note: ''},
3100
3143
  { tag_ps: '(0070,0002)', tag_name: "Graphic Layer", tag_key: 'GraphicLayer', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0070,0002)', tag_sym: :graphic_layer, tag_ndm: '00700002', tag_ary: [0x0070,0x0002], tag_multiple: false, tag_note: ''},
3101
3144
  { tag_ps: '(0070,0003)', tag_name: "Bounding Box Annotation Units", tag_key: 'BoundingBoxAnnotationUnits', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0070,0003)', tag_sym: :bounding_box_annotation_units, tag_ndm: '00700003', tag_ary: [0x0070,0x0003], tag_multiple: false, tag_note: ''},
@@ -3820,6 +3863,9 @@ HIGH = 0001H'},
3820
3863
  { tag_ps: '(3006,00C4)', tag_name: "Frame of Reference Transformation Type", tag_key: 'FrameOfReferenceTransformationType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3006,00C4)', tag_sym: :frame_of_reference_transformation_type, tag_ndm: '300600C4', tag_ary: [0x3006,0x00C4], tag_multiple: false, tag_note: 'RET (2011)'},
3821
3864
  { tag_ps: '(3006,00C6)', tag_name: "Frame of Reference Transformation Matrix", tag_key: 'FrameOfReferenceTransformationMatrix', tag_vr: [:DS], tag_vm: ["16"], tag_str: '(3006,00C6)', tag_sym: :frame_of_reference_transformation_matrix, tag_ndm: '300600C6', tag_ary: [0x3006,0x00C6], tag_multiple: false, tag_note: ''},
3822
3865
  { tag_ps: '(3006,00C8)', tag_name: "Frame of Reference Transformation Comment", tag_key: 'FrameOfReferenceTransformationComment', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(3006,00C8)', tag_sym: :frame_of_reference_transformation_comment, tag_ndm: '300600C8', tag_ary: [0x3006,0x00C8], tag_multiple: false, tag_note: ''},
3866
+ { tag_ps: '(3006,00C9)', tag_name: "Patient Location Coordinates Sequence", tag_key: 'PatientLocationCoordinatesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3006,00C9)', tag_sym: :patient_location_coordinates_sequence, tag_ndm: '300600C9', tag_ary: [0x3006,0x00C9], tag_multiple: false, tag_note: ''},
3867
+ { tag_ps: '(3006,00CA)', tag_name: "Patient Location Coordinates Code Sequence", tag_key: 'PatientLocationCoordinatesCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3006,00CA)', tag_sym: :patient_location_coordinates_code_sequence, tag_ndm: '300600CA', tag_ary: [0x3006,0x00CA], tag_multiple: false, tag_note: ''},
3868
+ { tag_ps: '(3006,00CB)', tag_name: "Patient Support Position Sequence", tag_key: 'PatientSupportPositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3006,00CB)', tag_sym: :patient_support_position_sequence, tag_ndm: '300600CB', tag_ary: [0x3006,0x00CB], tag_multiple: false, tag_note: ''},
3823
3869
  { tag_ps: '(3008,0010)', tag_name: "Measured Dose Reference Sequence", tag_key: 'MeasuredDoseReferenceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3008,0010)', tag_sym: :measured_dose_reference_sequence, tag_ndm: '30080010', tag_ary: [0x3008,0x0010], tag_multiple: false, tag_note: ''},
3824
3870
  { tag_ps: '(3008,0012)', tag_name: "Measured Dose Description", tag_key: 'MeasuredDoseDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(3008,0012)', tag_sym: :measured_dose_description, tag_ndm: '30080012', tag_ary: [0x3008,0x0012], tag_multiple: false, tag_note: ''},
3825
3871
  { tag_ps: '(3008,0014)', tag_name: "Measured Dose Type", tag_key: 'MeasuredDoseType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3008,0014)', tag_sym: :measured_dose_type, tag_ndm: '30080014', tag_ary: [0x3008,0x0014], tag_multiple: false, tag_note: ''},
@@ -3969,7 +4015,7 @@ HIGH = 0001H'},
3969
4015
  { tag_ps: '(300A,007A)', tag_name: "Repeat Fraction Cycle Length", tag_key: 'RepeatFractionCycleLength', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(300A,007A)', tag_sym: :repeat_fraction_cycle_length, tag_ndm: '300A007A', tag_ary: [0x300A,0x007A], tag_multiple: false, tag_note: ''},
3970
4016
  { tag_ps: '(300A,007B)', tag_name: "Fraction Pattern", tag_key: 'FractionPattern', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(300A,007B)', tag_sym: :fraction_pattern, tag_ndm: '300A007B', tag_ary: [0x300A,0x007B], tag_multiple: false, tag_note: ''},
3971
4017
  { tag_ps: '(300A,0080)', tag_name: "Number of Beams", tag_key: 'NumberOfBeams', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(300A,0080)', tag_sym: :number_of_beams, tag_ndm: '300A0080', tag_ary: [0x300A,0x0080], tag_multiple: false, tag_note: ''},
3972
- { tag_ps: '(300A,0082)', tag_name: "Beam Dose Specification Point", tag_key: 'BeamDoseSpecificationPoint', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(300A,0082)', tag_sym: :beam_dose_specification_point, tag_ndm: '300A0082', tag_ary: [0x300A,0x0082], tag_multiple: false, tag_note: ''},
4018
+ { tag_ps: '(300A,0082)', tag_name: "Beam Dose Specification Point", tag_key: 'BeamDoseSpecificationPoint', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(300A,0082)', tag_sym: :beam_dose_specification_point, tag_ndm: '300A0082', tag_ary: [0x300A,0x0082], tag_multiple: false, tag_note: 'RET (2019c)'},
3973
4019
  { tag_ps: '(300A,0083)', tag_name: "Referenced Dose Reference UID", tag_key: 'ReferencedDoseReferenceUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(300A,0083)', tag_sym: :referenced_dose_reference_uid, tag_ndm: '300A0083', tag_ary: [0x300A,0x0083], tag_multiple: false, tag_note: ''},
3974
4020
  { tag_ps: '(300A,0084)', tag_name: "Beam Dose", tag_key: 'BeamDose', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(300A,0084)', tag_sym: :beam_dose, tag_ndm: '300A0084', tag_ary: [0x300A,0x0084], tag_multiple: false, tag_note: ''},
3975
4021
  { tag_ps: '(300A,0086)', tag_name: "Beam Meterset", tag_key: 'BeamMeterset', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(300A,0086)', tag_sym: :beam_meterset, tag_ndm: '300A0086', tag_ary: [0x300A,0x0086], tag_multiple: false, tag_note: ''},
@@ -4271,6 +4317,7 @@ HIGH = 0001H'},
4271
4317
  { tag_ps: '(300A,0395)', tag_name: "Scan Spot Reordering Allowed", tag_key: 'ScanSpotReorderingAllowed', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0395)', tag_sym: :scan_spot_reordering_allowed, tag_ndm: '300A0395', tag_ary: [0x300A,0x0395], tag_multiple: false, tag_note: ''},
4272
4318
  { tag_ps: '(300A,0396)', tag_name: "Scan Spot Meterset Weights", tag_key: 'ScanSpotMetersetWeights', tag_vr: [:FL], tag_vm: ["1-n"], tag_str: '(300A,0396)', tag_sym: :scan_spot_meterset_weights, tag_ndm: '300A0396', tag_ary: [0x300A,0x0396], tag_multiple: false, tag_note: ''},
4273
4319
  { tag_ps: '(300A,0398)', tag_name: "Scanning Spot Size", tag_key: 'ScanningSpotSize', tag_vr: [:FL], tag_vm: ["2"], tag_str: '(300A,0398)', tag_sym: :scanning_spot_size, tag_ndm: '300A0398', tag_ary: [0x300A,0x0398], tag_multiple: false, tag_note: ''},
4320
+ { tag_ps: '(300A,0399)', tag_name: "Scan Spot Sizes Delivered", tag_key: 'ScanSpotSizesDelivered', tag_vr: [:FL], tag_vm: ["2-2n"], tag_str: '(300A,0399)', tag_sym: :scan_spot_sizes_delivered, tag_ndm: '300A0399', tag_ary: [0x300A,0x0399], tag_multiple: false, tag_note: ''},
4274
4321
  { tag_ps: '(300A,039A)', tag_name: "Number of Paintings", tag_key: 'NumberOfPaintings', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(300A,039A)', tag_sym: :number_of_paintings, tag_ndm: '300A039A', tag_ary: [0x300A,0x039A], tag_multiple: false, tag_note: ''},
4275
4322
  { tag_ps: '(300A,03A0)', tag_name: "Ion Tolerance Table Sequence", tag_key: 'IonToleranceTableSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,03A0)', tag_sym: :ion_tolerance_table_sequence, tag_ndm: '300A03A0', tag_ary: [0x300A,0x03A0], tag_multiple: false, tag_note: ''},
4276
4323
  { tag_ps: '(300A,03A2)', tag_name: "Ion Beam Sequence", tag_key: 'IonBeamSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,03A2)', tag_sym: :ion_beam_sequence, tag_ndm: '300A03A2', tag_ary: [0x300A,0x03A2], tag_multiple: false, tag_note: ''},
@@ -4289,6 +4336,7 @@ HIGH = 0001H'},
4289
4336
  { tag_ps: '(300A,0423)', tag_name: "General Accessory Type", tag_key: 'GeneralAccessoryType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0423)', tag_sym: :general_accessory_type, tag_ndm: '300A0423', tag_ary: [0x300A,0x0423], tag_multiple: false, tag_note: ''},
4290
4337
  { tag_ps: '(300A,0424)', tag_name: "General Accessory Number", tag_key: 'GeneralAccessoryNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(300A,0424)', tag_sym: :general_accessory_number, tag_ndm: '300A0424', tag_ary: [0x300A,0x0424], tag_multiple: false, tag_note: ''},
4291
4338
  { tag_ps: '(300A,0425)', tag_name: "Source to General Accessory Distance", tag_key: 'SourceToGeneralAccessoryDistance', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(300A,0425)', tag_sym: :source_to_general_accessory_distance, tag_ndm: '300A0425', tag_ary: [0x300A,0x0425], tag_multiple: false, tag_note: ''},
4339
+ { tag_ps: '(300A,0426)', tag_name: "Isocenter to General Accessory Distance", tag_key: 'IsocenterToGeneralAccessoryDistance', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(300A,0426)', tag_sym: :isocenter_to_general_accessory_distance, tag_ndm: '300A0426', tag_ary: [0x300A,0x0426], tag_multiple: false, tag_note: ''},
4292
4340
  { tag_ps: '(300A,0431)', tag_name: "Applicator Geometry Sequence", tag_key: 'ApplicatorGeometrySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0431)', tag_sym: :applicator_geometry_sequence, tag_ndm: '300A0431', tag_ary: [0x300A,0x0431], tag_multiple: false, tag_note: ''},
4293
4341
  { tag_ps: '(300A,0432)', tag_name: "Applicator Aperture Shape", tag_key: 'ApplicatorApertureShape', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0432)', tag_sym: :applicator_aperture_shape, tag_ndm: '300A0432', tag_ary: [0x300A,0x0432], tag_multiple: false, tag_note: ''},
4294
4342
  { tag_ps: '(300A,0433)', tag_name: "Applicator Opening", tag_key: 'ApplicatorOpening', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(300A,0433)', tag_sym: :applicator_opening, tag_ndm: '300A0433', tag_ary: [0x300A,0x0433], tag_multiple: false, tag_note: ''},
@@ -4315,6 +4363,186 @@ HIGH = 0001H'},
4315
4363
  { tag_ps: '(300A,0510)', tag_name: "Delivered Nominal Range Modulated Region Depths", tag_key: 'DeliveredNominalRangeModulatedRegionDepths', tag_vr: [:FL], tag_vm: ["2"], tag_str: '(300A,0510)', tag_sym: :delivered_nominal_range_modulated_region_depths, tag_ndm: '300A0510', tag_ary: [0x300A,0x0510], tag_multiple: false, tag_note: ''},
4316
4364
  { tag_ps: '(300A,0511)', tag_name: "Delivered Reference Dose Definition", tag_key: 'DeliveredReferenceDoseDefinition', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0511)', tag_sym: :delivered_reference_dose_definition, tag_ndm: '300A0511', tag_ary: [0x300A,0x0511], tag_multiple: false, tag_note: ''},
4317
4365
  { tag_ps: '(300A,0512)', tag_name: "Reference Dose Definition", tag_key: 'ReferenceDoseDefinition', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0512)', tag_sym: :reference_dose_definition, tag_ndm: '300A0512', tag_ary: [0x300A,0x0512], tag_multiple: false, tag_note: ''},
4366
+ { tag_ps: '(300A,0600)', tag_name: "RT Control Point Index", tag_key: 'RTControlPointIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0600)', tag_sym: :rt_control_point_index, tag_ndm: '300A0600', tag_ary: [0x300A,0x0600], tag_multiple: false, tag_note: ''},
4367
+ { tag_ps: '(300A,0601)', tag_name: "Radiation Generation Mode Index", tag_key: 'RadiationGenerationModeIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0601)', tag_sym: :radiation_generation_mode_index, tag_ndm: '300A0601', tag_ary: [0x300A,0x0601], tag_multiple: false, tag_note: ''},
4368
+ { tag_ps: '(300A,0602)', tag_name: "Referenced Defined Device Index", tag_key: 'ReferencedDefinedDeviceIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0602)', tag_sym: :referenced_defined_device_index, tag_ndm: '300A0602', tag_ary: [0x300A,0x0602], tag_multiple: false, tag_note: ''},
4369
+ { tag_ps: '(300A,0603)', tag_name: "Radiation Dose Identification Index", tag_key: 'RadiationDoseIdentificationIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0603)', tag_sym: :radiation_dose_identification_index, tag_ndm: '300A0603', tag_ary: [0x300A,0x0603], tag_multiple: false, tag_note: ''},
4370
+ { tag_ps: '(300A,0604)', tag_name: "Number of RT Control Points", tag_key: 'NumberOfRTControlPoints', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0604)', tag_sym: :number_of_rt_control_points, tag_ndm: '300A0604', tag_ary: [0x300A,0x0604], tag_multiple: false, tag_note: ''},
4371
+ { tag_ps: '(300A,0605)', tag_name: "Referenced Radiation Generation Mode Index", tag_key: 'ReferencedRadiationGenerationModeIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0605)', tag_sym: :referenced_radiation_generation_mode_index, tag_ndm: '300A0605', tag_ary: [0x300A,0x0605], tag_multiple: false, tag_note: ''},
4372
+ { tag_ps: '(300A,0606)', tag_name: "Treatment Position Index", tag_key: 'TreatmentPositionIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0606)', tag_sym: :treatment_position_index, tag_ndm: '300A0606', tag_ary: [0x300A,0x0606], tag_multiple: false, tag_note: ''},
4373
+ { tag_ps: '(300A,0607)', tag_name: "Referenced Device Index", tag_key: 'ReferencedDeviceIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0607)', tag_sym: :referenced_device_index, tag_ndm: '300A0607', tag_ary: [0x300A,0x0607], tag_multiple: false, tag_note: ''},
4374
+ { tag_ps: '(300A,0608)', tag_name: "Treatment Position Group Label", tag_key: 'TreatmentPositionGroupLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(300A,0608)', tag_sym: :treatment_position_group_label, tag_ndm: '300A0608', tag_ary: [0x300A,0x0608], tag_multiple: false, tag_note: ''},
4375
+ { tag_ps: '(300A,0609)', tag_name: "Treatment Position Group UID", tag_key: 'TreatmentPositionGroupUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(300A,0609)', tag_sym: :treatment_position_group_uid, tag_ndm: '300A0609', tag_ary: [0x300A,0x0609], tag_multiple: false, tag_note: ''},
4376
+ { tag_ps: '(300A,060A)', tag_name: "Treatment Position Group Sequence", tag_key: 'TreatmentPositionGroupSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,060A)', tag_sym: :treatment_position_group_sequence, tag_ndm: '300A060A', tag_ary: [0x300A,0x060A], tag_multiple: false, tag_note: ''},
4377
+ { tag_ps: '(300A,060B)', tag_name: "Referenced Treatment Position Index", tag_key: 'ReferencedTreatmentPositionIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,060B)', tag_sym: :referenced_treatment_position_index, tag_ndm: '300A060B', tag_ary: [0x300A,0x060B], tag_multiple: false, tag_note: ''},
4378
+ { tag_ps: '(300A,060C)', tag_name: "Referenced Radiation Dose Identification Index", tag_key: 'ReferencedRadiationDoseIdentificationIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,060C)', tag_sym: :referenced_radiation_dose_identification_index, tag_ndm: '300A060C', tag_ary: [0x300A,0x060C], tag_multiple: false, tag_note: ''},
4379
+ { tag_ps: '(300A,060D)', tag_name: "RT Accessory Holder Water-Equivalent Thickness", tag_key: 'RTAccessoryHolderWaterEquivalentThickness', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,060D)', tag_sym: :rt_accessory_holder_water_equivalent_thickness, tag_ndm: '300A060D', tag_ary: [0x300A,0x060D], tag_multiple: false, tag_note: ''},
4380
+ { tag_ps: '(300A,060E)', tag_name: "Referenced RT Accessory Holder Device Index", tag_key: 'ReferencedRTAccessoryHolderDeviceIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,060E)', tag_sym: :referenced_rt_accessory_holder_device_index, tag_ndm: '300A060E', tag_ary: [0x300A,0x060E], tag_multiple: false, tag_note: ''},
4381
+ { tag_ps: '(300A,060F)', tag_name: "RT Accessory Holder Slot Existence Flag", tag_key: 'RTAccessoryHolderSlotExistenceFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,060F)', tag_sym: :rt_accessory_holder_slot_existence_flag, tag_ndm: '300A060F', tag_ary: [0x300A,0x060F], tag_multiple: false, tag_note: ''},
4382
+ { tag_ps: '(300A,0610)', tag_name: "RT Accessory Holder Slot Sequence", tag_key: 'RTAccessoryHolderSlotSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0610)', tag_sym: :rt_accessory_holder_slot_sequence, tag_ndm: '300A0610', tag_ary: [0x300A,0x0610], tag_multiple: false, tag_note: ''},
4383
+ { tag_ps: '(300A,0611)', tag_name: "RT Accessory Holder Slot ID", tag_key: 'RTAccessoryHolderSlotID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(300A,0611)', tag_sym: :rt_accessory_holder_slot_id, tag_ndm: '300A0611', tag_ary: [0x300A,0x0611], tag_multiple: false, tag_note: ''},
4384
+ { tag_ps: '(300A,0612)', tag_name: "RT Accessory Holder Slot Distance", tag_key: 'RTAccessoryHolderSlotDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0612)', tag_sym: :rt_accessory_holder_slot_distance, tag_ndm: '300A0612', tag_ary: [0x300A,0x0612], tag_multiple: false, tag_note: ''},
4385
+ { tag_ps: '(300A,0613)', tag_name: "RT Accessory Slot Distance", tag_key: 'RTAccessorySlotDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0613)', tag_sym: :rt_accessory_slot_distance, tag_ndm: '300A0613', tag_ary: [0x300A,0x0613], tag_multiple: false, tag_note: ''},
4386
+ { tag_ps: '(300A,0614)', tag_name: "RT Accessory Holder Definition Sequence", tag_key: 'RTAccessoryHolderDefinitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0614)', tag_sym: :rt_accessory_holder_definition_sequence, tag_ndm: '300A0614', tag_ary: [0x300A,0x0614], tag_multiple: false, tag_note: ''},
4387
+ { tag_ps: '(300A,0615)', tag_name: "RT Accessory Device Slot ID", tag_key: 'RTAccessoryDeviceSlotID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(300A,0615)', tag_sym: :rt_accessory_device_slot_id, tag_ndm: '300A0615', tag_ary: [0x300A,0x0615], tag_multiple: false, tag_note: ''},
4388
+ { tag_ps: '(300A,0616)', tag_name: "RT Radiation Sequence", tag_key: 'RTRadiationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0616)', tag_sym: :rt_radiation_sequence, tag_ndm: '300A0616', tag_ary: [0x300A,0x0616], tag_multiple: false, tag_note: ''},
4389
+ { tag_ps: '(300A,0617)', tag_name: "Radiation Dose Sequence", tag_key: 'RadiationDoseSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0617)', tag_sym: :radiation_dose_sequence, tag_ndm: '300A0617', tag_ary: [0x300A,0x0617], tag_multiple: false, tag_note: ''},
4390
+ { tag_ps: '(300A,0618)', tag_name: "Radiation Dose Identification Sequence", tag_key: 'RadiationDoseIdentificationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0618)', tag_sym: :radiation_dose_identification_sequence, tag_ndm: '300A0618', tag_ary: [0x300A,0x0618], tag_multiple: false, tag_note: ''},
4391
+ { tag_ps: '(300A,0619)', tag_name: "Radiation Dose Identification Label", tag_key: 'RadiationDoseIdentificationLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(300A,0619)', tag_sym: :radiation_dose_identification_label, tag_ndm: '300A0619', tag_ary: [0x300A,0x0619], tag_multiple: false, tag_note: ''},
4392
+ { tag_ps: '(300A,061A)', tag_name: "Reference Dose Type", tag_key: 'ReferenceDoseType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,061A)', tag_sym: :reference_dose_type, tag_ndm: '300A061A', tag_ary: [0x300A,0x061A], tag_multiple: false, tag_note: ''},
4393
+ { tag_ps: '(300A,061B)', tag_name: "Primary Dose Value Indicator", tag_key: 'PrimaryDoseValueIndicator', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,061B)', tag_sym: :primary_dose_value_indicator, tag_ndm: '300A061B', tag_ary: [0x300A,0x061B], tag_multiple: false, tag_note: ''},
4394
+ { tag_ps: '(300A,061C)', tag_name: "Dose Values Sequence", tag_key: 'DoseValuesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,061C)', tag_sym: :dose_values_sequence, tag_ndm: '300A061C', tag_ary: [0x300A,0x061C], tag_multiple: false, tag_note: ''},
4395
+ { tag_ps: '(300A,061D)', tag_name: "Dose Value Purpose", tag_key: 'DoseValuePurpose', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(300A,061D)', tag_sym: :dose_value_purpose, tag_ndm: '300A061D', tag_ary: [0x300A,0x061D], tag_multiple: false, tag_note: ''},
4396
+ { tag_ps: '(300A,061E)', tag_name: "Reference Dose Point Coordinates", tag_key: 'ReferenceDosePointCoordinates', tag_vr: [:FD], tag_vm: ["3"], tag_str: '(300A,061E)', tag_sym: :reference_dose_point_coordinates, tag_ndm: '300A061E', tag_ary: [0x300A,0x061E], tag_multiple: false, tag_note: ''},
4397
+ { tag_ps: '(300A,061F)', tag_name: "Radiation Dose Values Parameters Sequence", tag_key: 'RadiationDoseValuesParametersSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,061F)', tag_sym: :radiation_dose_values_parameters_sequence, tag_ndm: '300A061F', tag_ary: [0x300A,0x061F], tag_multiple: false, tag_note: ''},
4398
+ { tag_ps: '(300A,0620)', tag_name: "Meterset to Dose Mapping Sequence", tag_key: 'MetersetToDoseMappingSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0620)', tag_sym: :meterset_to_dose_mapping_sequence, tag_ndm: '300A0620', tag_ary: [0x300A,0x0620], tag_multiple: false, tag_note: ''},
4399
+ { tag_ps: '(300A,0621)', tag_name: "Expected In-Vivo Measurement Values Sequence", tag_key: 'ExpectedInVivoMeasurementValuesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0621)', tag_sym: :expected_in_vivo_measurement_values_sequence, tag_ndm: '300A0621', tag_ary: [0x300A,0x0621], tag_multiple: false, tag_note: ''},
4400
+ { tag_ps: '(300A,0622)', tag_name: "Expected In-Vivo Measurement Value Index", tag_key: 'ExpectedInVivoMeasurementValueIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0622)', tag_sym: :expected_in_vivo_measurement_value_index, tag_ndm: '300A0622', tag_ary: [0x300A,0x0622], tag_multiple: false, tag_note: ''},
4401
+ { tag_ps: '(300A,0623)', tag_name: "Radiation Dose In-Vivo Measurement Label", tag_key: 'RadiationDoseInVivoMeasurementLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(300A,0623)', tag_sym: :radiation_dose_in_vivo_measurement_label, tag_ndm: '300A0623', tag_ary: [0x300A,0x0623], tag_multiple: false, tag_note: ''},
4402
+ { tag_ps: '(300A,0624)', tag_name: "Radiation Dose Central Axis Displacement", tag_key: 'RadiationDoseCentralAxisDisplacement', tag_vr: [:FD], tag_vm: ["2"], tag_str: '(300A,0624)', tag_sym: :radiation_dose_central_axis_displacement, tag_ndm: '300A0624', tag_ary: [0x300A,0x0624], tag_multiple: false, tag_note: ''},
4403
+ { tag_ps: '(300A,0625)', tag_name: "Radiation Dose Value", tag_key: 'RadiationDoseValue', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0625)', tag_sym: :radiation_dose_value, tag_ndm: '300A0625', tag_ary: [0x300A,0x0625], tag_multiple: false, tag_note: ''},
4404
+ { tag_ps: '(300A,0626)', tag_name: "Radiation Dose Source to Skin Distance", tag_key: 'RadiationDoseSourceToSkinDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0626)', tag_sym: :radiation_dose_source_to_skin_distance, tag_ndm: '300A0626', tag_ary: [0x300A,0x0626], tag_multiple: false, tag_note: ''},
4405
+ { tag_ps: '(300A,0627)', tag_name: "Radiation Dose Measurement Point Coordinates", tag_key: 'RadiationDoseMeasurementPointCoordinates', tag_vr: [:FD], tag_vm: ["3"], tag_str: '(300A,0627)', tag_sym: :radiation_dose_measurement_point_coordinates, tag_ndm: '300A0627', tag_ary: [0x300A,0x0627], tag_multiple: false, tag_note: ''},
4406
+ { tag_ps: '(300A,0628)', tag_name: "Radiation Dose Source to External Contour Distance", tag_key: 'RadiationDoseSourceToExternalContourDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0628)', tag_sym: :radiation_dose_source_to_external_contour_distance, tag_ndm: '300A0628', tag_ary: [0x300A,0x0628], tag_multiple: false, tag_note: ''},
4407
+ { tag_ps: '(300A,0629)', tag_name: "RT Tolerance Set Sequence", tag_key: 'RTToleranceSetSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0629)', tag_sym: :rt_tolerance_set_sequence, tag_ndm: '300A0629', tag_ary: [0x300A,0x0629], tag_multiple: false, tag_note: ''},
4408
+ { tag_ps: '(300A,062A)', tag_name: "RT Tolerance Set Label", tag_key: 'RTToleranceSetLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(300A,062A)', tag_sym: :rt_tolerance_set_label, tag_ndm: '300A062A', tag_ary: [0x300A,0x062A], tag_multiple: false, tag_note: ''},
4409
+ { tag_ps: '(300A,062B)', tag_name: "Attribute Tolerance Values Sequence", tag_key: 'AttributeToleranceValuesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,062B)', tag_sym: :attribute_tolerance_values_sequence, tag_ndm: '300A062B', tag_ary: [0x300A,0x062B], tag_multiple: false, tag_note: ''},
4410
+ { tag_ps: '(300A,062C)', tag_name: "Tolerance Value", tag_key: 'ToleranceValue', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,062C)', tag_sym: :tolerance_value, tag_ndm: '300A062C', tag_ary: [0x300A,0x062C], tag_multiple: false, tag_note: ''},
4411
+ { tag_ps: '(300A,062D)', tag_name: "Patient Support Position Tolerance Sequence", tag_key: 'PatientSupportPositionToleranceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,062D)', tag_sym: :patient_support_position_tolerance_sequence, tag_ndm: '300A062D', tag_ary: [0x300A,0x062D], tag_multiple: false, tag_note: ''},
4412
+ { tag_ps: '(300A,062E)', tag_name: "Treatment Time Limit", tag_key: 'TreatmentTimeLimit', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,062E)', tag_sym: :treatment_time_limit, tag_ndm: '300A062E', tag_ary: [0x300A,0x062E], tag_multiple: false, tag_note: ''},
4413
+ { tag_ps: '(300A,062F)', tag_name: "C-Arm Photon-Electron Control Point Sequence", tag_key: 'CArmPhotonElectronControlPointSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,062F)', tag_sym: :c_arm_photon_electron_control_point_sequence, tag_ndm: '300A062F', tag_ary: [0x300A,0x062F], tag_multiple: false, tag_note: ''},
4414
+ { tag_ps: '(300A,0630)', tag_name: "Referenced RT Radiation Sequence", tag_key: 'ReferencedRTRadiationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0630)', tag_sym: :referenced_rt_radiation_sequence, tag_ndm: '300A0630', tag_ary: [0x300A,0x0630], tag_multiple: false, tag_note: ''},
4415
+ { tag_ps: '(300A,0631)', tag_name: "Referenced RT Instance Sequence", tag_key: 'ReferencedRTInstanceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0631)', tag_sym: :referenced_rt_instance_sequence, tag_ndm: '300A0631', tag_ary: [0x300A,0x0631], tag_multiple: false, tag_note: ''},
4416
+ { tag_ps: '(300A,0632)', tag_name: "Referenced RT Patient Setup Sequence", tag_key: 'ReferencedRTPatientSetupSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0632)', tag_sym: :referenced_rt_patient_setup_sequence, tag_ndm: '300A0632', tag_ary: [0x300A,0x0632], tag_multiple: false, tag_note: ''},
4417
+ { tag_ps: '(300A,0634)', tag_name: "Source to Patient Surface Distance", tag_key: 'SourceToPatientSurfaceDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0634)', tag_sym: :source_to_patient_surface_distance, tag_ndm: '300A0634', tag_ary: [0x300A,0x0634], tag_multiple: false, tag_note: ''},
4418
+ { tag_ps: '(300A,0635)', tag_name: "Treatment Machine Special Mode Code Sequence", tag_key: 'TreatmentMachineSpecialModeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0635)', tag_sym: :treatment_machine_special_mode_code_sequence, tag_ndm: '300A0635', tag_ary: [0x300A,0x0635], tag_multiple: false, tag_note: ''},
4419
+ { tag_ps: '(300A,0636)', tag_name: "Intended Number of Fractions", tag_key: 'IntendedNumberOfFractions', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0636)', tag_sym: :intended_number_of_fractions, tag_ndm: '300A0636', tag_ary: [0x300A,0x0636], tag_multiple: false, tag_note: ''},
4420
+ { tag_ps: '(300A,0637)', tag_name: "RT Radiation Set Intent", tag_key: 'RTRadiationSetIntent', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0637)', tag_sym: :rt_radiation_set_intent, tag_ndm: '300A0637', tag_ary: [0x300A,0x0637], tag_multiple: false, tag_note: ''},
4421
+ { tag_ps: '(300A,0638)', tag_name: "RT Radiation Physical and Geometric Content Detail Flag", tag_key: 'RTRadiationPhysicalAndGeometricContentDetailFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0638)', tag_sym: :rt_radiation_physical_and_geometric_content_detail_flag, tag_ndm: '300A0638', tag_ary: [0x300A,0x0638], tag_multiple: false, tag_note: ''},
4422
+ { tag_ps: '(300A,0639)', tag_name: "RT Record Flag", tag_key: 'RTRecordFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0639)', tag_sym: :rt_record_flag, tag_ndm: '300A0639', tag_ary: [0x300A,0x0639], tag_multiple: false, tag_note: ''},
4423
+ { tag_ps: '(300A,063A)', tag_name: "Treatment Device Identification Sequence", tag_key: 'TreatmentDeviceIdentificationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,063A)', tag_sym: :treatment_device_identification_sequence, tag_ndm: '300A063A', tag_ary: [0x300A,0x063A], tag_multiple: false, tag_note: ''},
4424
+ { tag_ps: '(300A,063B)', tag_name: "Referenced RT Physician Intent Sequence", tag_key: 'ReferencedRTPhysicianIntentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,063B)', tag_sym: :referenced_rt_physician_intent_sequence, tag_ndm: '300A063B', tag_ary: [0x300A,0x063B], tag_multiple: false, tag_note: ''},
4425
+ { tag_ps: '(300A,063C)', tag_name: "Cumulative Meterset", tag_key: 'CumulativeMeterset', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,063C)', tag_sym: :cumulative_meterset, tag_ndm: '300A063C', tag_ary: [0x300A,0x063C], tag_multiple: false, tag_note: ''},
4426
+ { tag_ps: '(300A,063D)', tag_name: "Delivery Rate", tag_key: 'DeliveryRate', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,063D)', tag_sym: :delivery_rate, tag_ndm: '300A063D', tag_ary: [0x300A,0x063D], tag_multiple: false, tag_note: ''},
4427
+ { tag_ps: '(300A,063E)', tag_name: "Delivery Rate Unit Sequence", tag_key: 'DeliveryRateUnitSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,063E)', tag_sym: :delivery_rate_unit_sequence, tag_ndm: '300A063E', tag_ary: [0x300A,0x063E], tag_multiple: false, tag_note: ''},
4428
+ { tag_ps: '(300A,063F)', tag_name: "Treatment Position Sequence", tag_key: 'TreatmentPositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,063F)', tag_sym: :treatment_position_sequence, tag_ndm: '300A063F', tag_ary: [0x300A,0x063F], tag_multiple: false, tag_note: ''},
4429
+ { tag_ps: '(300A,0640)', tag_name: "Radiation Source-Axis Distance", tag_key: 'RadiationSourceAxisDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0640)', tag_sym: :radiation_source_axis_distance, tag_ndm: '300A0640', tag_ary: [0x300A,0x0640], tag_multiple: false, tag_note: ''},
4430
+ { tag_ps: '(300A,0641)', tag_name: "Number of RT Beam Limiting Devices", tag_key: 'NumberOfRTBeamLimitingDevices', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0641)', tag_sym: :number_of_rt_beam_limiting_devices, tag_ndm: '300A0641', tag_ary: [0x300A,0x0641], tag_multiple: false, tag_note: ''},
4431
+ { tag_ps: '(300A,0642)', tag_name: "RT Beam Limiting Device Proximal Distance", tag_key: 'RTBeamLimitingDeviceProximalDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0642)', tag_sym: :rt_beam_limiting_device_proximal_distance, tag_ndm: '300A0642', tag_ary: [0x300A,0x0642], tag_multiple: false, tag_note: ''},
4432
+ { tag_ps: '(300A,0643)', tag_name: "RT Beam Limiting Device Distal Distance", tag_key: 'RTBeamLimitingDeviceDistalDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0643)', tag_sym: :rt_beam_limiting_device_distal_distance, tag_ndm: '300A0643', tag_ary: [0x300A,0x0643], tag_multiple: false, tag_note: ''},
4433
+ { tag_ps: '(300A,0644)', tag_name: "Parallel RT Beam Delimiter Device Orientation Label Code Sequence", tag_key: 'ParallelRTBeamDelimiterDeviceOrientationLabelCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0644)', tag_sym: :parallel_rt_beam_delimiter_device_orientation_label_code_sequence, tag_ndm: '300A0644', tag_ary: [0x300A,0x0644], tag_multiple: false, tag_note: ''},
4434
+ { tag_ps: '(300A,0645)', tag_name: "Beam Modifier Orientation Angle", tag_key: 'BeamModifierOrientationAngle', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0645)', tag_sym: :beam_modifier_orientation_angle, tag_ndm: '300A0645', tag_ary: [0x300A,0x0645], tag_multiple: false, tag_note: ''},
4435
+ { tag_ps: '(300A,0646)', tag_name: "Fixed RT Beam Delimiter Device Sequence", tag_key: 'FixedRTBeamDelimiterDeviceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0646)', tag_sym: :fixed_rt_beam_delimiter_device_sequence, tag_ndm: '300A0646', tag_ary: [0x300A,0x0646], tag_multiple: false, tag_note: ''},
4436
+ { tag_ps: '(300A,0647)', tag_name: "Parallel RT Beam Delimiter Device Sequence", tag_key: 'ParallelRTBeamDelimiterDeviceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0647)', tag_sym: :parallel_rt_beam_delimiter_device_sequence, tag_ndm: '300A0647', tag_ary: [0x300A,0x0647], tag_multiple: false, tag_note: ''},
4437
+ { tag_ps: '(300A,0648)', tag_name: "Number of Parallel RT Beam Delimiters", tag_key: 'NumberOfParallelRTBeamDelimiters', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0648)', tag_sym: :number_of_parallel_rt_beam_delimiters, tag_ndm: '300A0648', tag_ary: [0x300A,0x0648], tag_multiple: false, tag_note: ''},
4438
+ { tag_ps: '(300A,0649)', tag_name: "Parallel RT Beam Delimiter Boundaries", tag_key: 'ParallelRTBeamDelimiterBoundaries', tag_vr: [:FD], tag_vm: ["2-n"], tag_str: '(300A,0649)', tag_sym: :parallel_rt_beam_delimiter_boundaries, tag_ndm: '300A0649', tag_ary: [0x300A,0x0649], tag_multiple: false, tag_note: ''},
4439
+ { tag_ps: '(300A,064A)', tag_name: "Parallel RT Beam Delimiter Positions", tag_key: 'ParallelRTBeamDelimiterPositions', tag_vr: [:FD], tag_vm: ["2-n"], tag_str: '(300A,064A)', tag_sym: :parallel_rt_beam_delimiter_positions, tag_ndm: '300A064A', tag_ary: [0x300A,0x064A], tag_multiple: false, tag_note: ''},
4440
+ { tag_ps: '(300A,064B)', tag_name: "RT Beam Limiting Device Offset", tag_key: 'RTBeamLimitingDeviceOffset', tag_vr: [:FD], tag_vm: ["2"], tag_str: '(300A,064B)', tag_sym: :rt_beam_limiting_device_offset, tag_ndm: '300A064B', tag_ary: [0x300A,0x064B], tag_multiple: false, tag_note: ''},
4441
+ { tag_ps: '(300A,064C)', tag_name: "RT Beam Delimiter Geometry Sequence", tag_key: 'RTBeamDelimiterGeometrySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,064C)', tag_sym: :rt_beam_delimiter_geometry_sequence, tag_ndm: '300A064C', tag_ary: [0x300A,0x064C], tag_multiple: false, tag_note: ''},
4442
+ { tag_ps: '(300A,064D)', tag_name: "RT Beam Limiting Device Definition Sequence", tag_key: 'RTBeamLimitingDeviceDefinitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,064D)', tag_sym: :rt_beam_limiting_device_definition_sequence, tag_ndm: '300A064D', tag_ary: [0x300A,0x064D], tag_multiple: false, tag_note: ''},
4443
+ { tag_ps: '(300A,064E)', tag_name: "Parallel RT Beam Delimiter Opening Mode", tag_key: 'ParallelRTBeamDelimiterOpeningMode', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,064E)', tag_sym: :parallel_rt_beam_delimiter_opening_mode, tag_ndm: '300A064E', tag_ary: [0x300A,0x064E], tag_multiple: false, tag_note: ''},
4444
+ { tag_ps: '(300A,064F)', tag_name: "Parallel RT Beam Delimiter Leaf Mounting Side", tag_key: 'ParallelRTBeamDelimiterLeafMountingSide', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(300A,064F)', tag_sym: :parallel_rt_beam_delimiter_leaf_mounting_side, tag_ndm: '300A064F', tag_ary: [0x300A,0x064F], tag_multiple: false, tag_note: ''},
4445
+ { tag_ps: '(300A,0650)', tag_name: "Patient Setup UID", tag_key: 'PatientSetupUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(300A,0650)', tag_sym: :patient_setup_uid, tag_ndm: '300A0650', tag_ary: [0x300A,0x0650], tag_multiple: false, tag_note: ''},
4446
+ { tag_ps: '(300A,0651)', tag_name: "Wedge Definition Sequence", tag_key: 'WedgeDefinitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0651)', tag_sym: :wedge_definition_sequence, tag_ndm: '300A0651', tag_ary: [0x300A,0x0651], tag_multiple: false, tag_note: ''},
4447
+ { tag_ps: '(300A,0652)', tag_name: "Radiation Beam Wedge Angle", tag_key: 'RadiationBeamWedgeAngle', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0652)', tag_sym: :radiation_beam_wedge_angle, tag_ndm: '300A0652', tag_ary: [0x300A,0x0652], tag_multiple: false, tag_note: ''},
4448
+ { tag_ps: '(300A,0653)', tag_name: "Radiation Beam Wedge Thin Edge Distance", tag_key: 'RadiationBeamWedgeThinEdgeDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0653)', tag_sym: :radiation_beam_wedge_thin_edge_distance, tag_ndm: '300A0653', tag_ary: [0x300A,0x0653], tag_multiple: false, tag_note: ''},
4449
+ { tag_ps: '(300A,0654)', tag_name: "Radiation Beam Effective Wedge Angle", tag_key: 'RadiationBeamEffectiveWedgeAngle', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0654)', tag_sym: :radiation_beam_effective_wedge_angle, tag_ndm: '300A0654', tag_ary: [0x300A,0x0654], tag_multiple: false, tag_note: ''},
4450
+ { tag_ps: '(300A,0655)', tag_name: "Number of Wedge Positions", tag_key: 'NumberOfWedgePositions', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0655)', tag_sym: :number_of_wedge_positions, tag_ndm: '300A0655', tag_ary: [0x300A,0x0655], tag_multiple: false, tag_note: ''},
4451
+ { tag_ps: '(300A,0656)', tag_name: "RT Beam Limiting Device Opening Sequence", tag_key: 'RTBeamLimitingDeviceOpeningSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0656)', tag_sym: :rt_beam_limiting_device_opening_sequence, tag_ndm: '300A0656', tag_ary: [0x300A,0x0656], tag_multiple: false, tag_note: ''},
4452
+ { tag_ps: '(300A,0657)', tag_name: "Number of RT Beam Limiting Device Openings", tag_key: 'NumberOfRTBeamLimitingDeviceOpenings', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0657)', tag_sym: :number_of_rt_beam_limiting_device_openings, tag_ndm: '300A0657', tag_ary: [0x300A,0x0657], tag_multiple: false, tag_note: ''},
4453
+ { tag_ps: '(300A,0658)', tag_name: "Radiation Dosimeter Unit Sequence", tag_key: 'RadiationDosimeterUnitSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0658)', tag_sym: :radiation_dosimeter_unit_sequence, tag_ndm: '300A0658', tag_ary: [0x300A,0x0658], tag_multiple: false, tag_note: ''},
4454
+ { tag_ps: '(300A,0659)', tag_name: "RT Device Distance Reference Location Code Sequence", tag_key: 'RTDeviceDistanceReferenceLocationCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0659)', tag_sym: :rt_device_distance_reference_location_code_sequence, tag_ndm: '300A0659', tag_ary: [0x300A,0x0659], tag_multiple: false, tag_note: ''},
4455
+ { tag_ps: '(300A,065A)', tag_name: "Radiation Device Configuration and Commissioning Key Sequence", tag_key: 'RadiationDeviceConfigurationAndCommissioningKeySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,065A)', tag_sym: :radiation_device_configuration_and_commissioning_key_sequence, tag_ndm: '300A065A', tag_ary: [0x300A,0x065A], tag_multiple: false, tag_note: ''},
4456
+ { tag_ps: '(300A,065B)', tag_name: "Patient Support Position Parameter Sequence", tag_key: 'PatientSupportPositionParameterSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,065B)', tag_sym: :patient_support_position_parameter_sequence, tag_ndm: '300A065B', tag_ary: [0x300A,0x065B], tag_multiple: false, tag_note: ''},
4457
+ { tag_ps: '(300A,065C)', tag_name: "Patient Support Position Specification Method", tag_key: 'PatientSupportPositionSpecificationMethod', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,065C)', tag_sym: :patient_support_position_specification_method, tag_ndm: '300A065C', tag_ary: [0x300A,0x065C], tag_multiple: false, tag_note: ''},
4458
+ { tag_ps: '(300A,065D)', tag_name: "Patient Support Position Device Parameter Sequence", tag_key: 'PatientSupportPositionDeviceParameterSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,065D)', tag_sym: :patient_support_position_device_parameter_sequence, tag_ndm: '300A065D', tag_ary: [0x300A,0x065D], tag_multiple: false, tag_note: ''},
4459
+ { tag_ps: '(300A,065E)', tag_name: "Device Order Index", tag_key: 'DeviceOrderIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,065E)', tag_sym: :device_order_index, tag_ndm: '300A065E', tag_ary: [0x300A,0x065E], tag_multiple: false, tag_note: ''},
4460
+ { tag_ps: '(300A,065F)', tag_name: "Patient Support Position Parameter Order Index", tag_key: 'PatientSupportPositionParameterOrderIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,065F)', tag_sym: :patient_support_position_parameter_order_index, tag_ndm: '300A065F', tag_ary: [0x300A,0x065F], tag_multiple: false, tag_note: ''},
4461
+ { tag_ps: '(300A,0660)', tag_name: "Patient Support Position Device Tolerance Sequence", tag_key: 'PatientSupportPositionDeviceToleranceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0660)', tag_sym: :patient_support_position_device_tolerance_sequence, tag_ndm: '300A0660', tag_ary: [0x300A,0x0660], tag_multiple: false, tag_note: ''},
4462
+ { tag_ps: '(300A,0661)', tag_name: "Patient Support Position Tolerance Order Index", tag_key: 'PatientSupportPositionToleranceOrderIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0661)', tag_sym: :patient_support_position_tolerance_order_index, tag_ndm: '300A0661', tag_ary: [0x300A,0x0661], tag_multiple: false, tag_note: ''},
4463
+ { tag_ps: '(300A,0662)', tag_name: "Compensator Definition Sequence", tag_key: 'CompensatorDefinitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0662)', tag_sym: :compensator_definition_sequence, tag_ndm: '300A0662', tag_ary: [0x300A,0x0662], tag_multiple: false, tag_note: ''},
4464
+ { tag_ps: '(300A,0663)', tag_name: "Compensator Map Orientation", tag_key: 'CompensatorMapOrientation', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0663)', tag_sym: :compensator_map_orientation, tag_ndm: '300A0663', tag_ary: [0x300A,0x0663], tag_multiple: false, tag_note: ''},
4465
+ { tag_ps: '(300A,0664)', tag_name: "Compensator Proximal Thickness Map", tag_key: 'CompensatorProximalThicknessMap', tag_vr: [:OF], tag_vm: ["1"], tag_str: '(300A,0664)', tag_sym: :compensator_proximal_thickness_map, tag_ndm: '300A0664', tag_ary: [0x300A,0x0664], tag_multiple: false, tag_note: ''},
4466
+ { tag_ps: '(300A,0665)', tag_name: "Compensator Distal Thickness Map", tag_key: 'CompensatorDistalThicknessMap', tag_vr: [:OF], tag_vm: ["1"], tag_str: '(300A,0665)', tag_sym: :compensator_distal_thickness_map, tag_ndm: '300A0665', tag_ary: [0x300A,0x0665], tag_multiple: false, tag_note: ''},
4467
+ { tag_ps: '(300A,0666)', tag_name: "Compensator Base Plane Offset", tag_key: 'CompensatorBasePlaneOffset', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0666)', tag_sym: :compensator_base_plane_offset, tag_ndm: '300A0666', tag_ary: [0x300A,0x0666], tag_multiple: false, tag_note: ''},
4468
+ { tag_ps: '(300A,0667)', tag_name: "Compensator Shape Fabrication Code Sequence", tag_key: 'CompensatorShapeFabricationCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0667)', tag_sym: :compensator_shape_fabrication_code_sequence, tag_ndm: '300A0667', tag_ary: [0x300A,0x0667], tag_multiple: false, tag_note: ''},
4469
+ { tag_ps: '(300A,0668)', tag_name: "Compensator Shape Sequence", tag_key: 'CompensatorShapeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0668)', tag_sym: :compensator_shape_sequence, tag_ndm: '300A0668', tag_ary: [0x300A,0x0668], tag_multiple: false, tag_note: ''},
4470
+ { tag_ps: '(300A,0669)', tag_name: "Radiation Beam Compensator Milling Tool Diameter", tag_key: 'RadiationBeamCompensatorMillingToolDiameter', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0669)', tag_sym: :radiation_beam_compensator_milling_tool_diameter, tag_ndm: '300A0669', tag_ary: [0x300A,0x0669], tag_multiple: false, tag_note: ''},
4471
+ { tag_ps: '(300A,066A)', tag_name: "Block Definition Sequence", tag_key: 'BlockDefinitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,066A)', tag_sym: :block_definition_sequence, tag_ndm: '300A066A', tag_ary: [0x300A,0x066A], tag_multiple: false, tag_note: ''},
4472
+ { tag_ps: '(300A,066B)', tag_name: "Block Edge Data", tag_key: 'BlockEdgeData', tag_vr: [:OF], tag_vm: ["1"], tag_str: '(300A,066B)', tag_sym: :block_edge_data, tag_ndm: '300A066B', tag_ary: [0x300A,0x066B], tag_multiple: false, tag_note: ''},
4473
+ { tag_ps: '(300A,066C)', tag_name: "Block Orientation", tag_key: 'BlockOrientation', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,066C)', tag_sym: :block_orientation, tag_ndm: '300A066C', tag_ary: [0x300A,0x066C], tag_multiple: false, tag_note: ''},
4474
+ { tag_ps: '(300A,066D)', tag_name: "Radiation Beam Block Thickness", tag_key: 'RadiationBeamBlockThickness', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,066D)', tag_sym: :radiation_beam_block_thickness, tag_ndm: '300A066D', tag_ary: [0x300A,0x066D], tag_multiple: false, tag_note: ''},
4475
+ { tag_ps: '(300A,066E)', tag_name: "Radiation Beam Block Slab Thickness", tag_key: 'RadiationBeamBlockSlabThickness', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,066E)', tag_sym: :radiation_beam_block_slab_thickness, tag_ndm: '300A066E', tag_ary: [0x300A,0x066E], tag_multiple: false, tag_note: ''},
4476
+ { tag_ps: '(300A,066F)', tag_name: "Block Edge Data Sequence", tag_key: 'BlockEdgeDataSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,066F)', tag_sym: :block_edge_data_sequence, tag_ndm: '300A066F', tag_ary: [0x300A,0x066F], tag_multiple: false, tag_note: ''},
4477
+ { tag_ps: '(300A,0670)', tag_name: "Number of RT Accessory Holders", tag_key: 'NumberOfRTAccessoryHolders', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0670)', tag_sym: :number_of_rt_accessory_holders, tag_ndm: '300A0670', tag_ary: [0x300A,0x0670], tag_multiple: false, tag_note: ''},
4478
+ { tag_ps: '(300A,0671)', tag_name: "General Accessory Definition Sequence", tag_key: 'GeneralAccessoryDefinitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0671)', tag_sym: :general_accessory_definition_sequence, tag_ndm: '300A0671', tag_ary: [0x300A,0x0671], tag_multiple: false, tag_note: ''},
4479
+ { tag_ps: '(300A,0672)', tag_name: "Number of General Accessories", tag_key: 'NumberOfGeneralAccessories', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0672)', tag_sym: :number_of_general_accessories, tag_ndm: '300A0672', tag_ary: [0x300A,0x0672], tag_multiple: false, tag_note: ''},
4480
+ { tag_ps: '(300A,0673)', tag_name: "Bolus Definition Sequence", tag_key: 'BolusDefinitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0673)', tag_sym: :bolus_definition_sequence, tag_ndm: '300A0673', tag_ary: [0x300A,0x0673], tag_multiple: false, tag_note: ''},
4481
+ { tag_ps: '(300A,0674)', tag_name: "Number of Boluses", tag_key: 'NumberOfBoluses', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0674)', tag_sym: :number_of_boluses, tag_ndm: '300A0674', tag_ary: [0x300A,0x0674], tag_multiple: false, tag_note: ''},
4482
+ { tag_ps: '(300A,0675)', tag_name: "Equipment Frame of Reference UID", tag_key: 'EquipmentFrameOfReferenceUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(300A,0675)', tag_sym: :equipment_frame_of_reference_uid, tag_ndm: '300A0675', tag_ary: [0x300A,0x0675], tag_multiple: false, tag_note: ''},
4483
+ { tag_ps: '(300A,0676)', tag_name: "Equipment Frame of Reference Description", tag_key: 'EquipmentFrameOfReferenceDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(300A,0676)', tag_sym: :equipment_frame_of_reference_description, tag_ndm: '300A0676', tag_ary: [0x300A,0x0676], tag_multiple: false, tag_note: ''},
4484
+ { tag_ps: '(300A,0677)', tag_name: "Equipment Reference Point Coordinates Sequence", tag_key: 'EquipmentReferencePointCoordinatesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0677)', tag_sym: :equipment_reference_point_coordinates_sequence, tag_ndm: '300A0677', tag_ary: [0x300A,0x0677], tag_multiple: false, tag_note: ''},
4485
+ { tag_ps: '(300A,0678)', tag_name: "Equipment Reference Point Code Sequence", tag_key: 'EquipmentReferencePointCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0678)', tag_sym: :equipment_reference_point_code_sequence, tag_ndm: '300A0678', tag_ary: [0x300A,0x0678], tag_multiple: false, tag_note: ''},
4486
+ { tag_ps: '(300A,0679)', tag_name: "RT Beam Limiting Device Angle", tag_key: 'RTBeamLimitingDeviceAngle', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0679)', tag_sym: :rt_beam_limiting_device_angle, tag_ndm: '300A0679', tag_ary: [0x300A,0x0679], tag_multiple: false, tag_note: ''},
4487
+ { tag_ps: '(300A,067A)', tag_name: "Source Roll Angle", tag_key: 'SourceRollAngle', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,067A)', tag_sym: :source_roll_angle, tag_ndm: '300A067A', tag_ary: [0x300A,0x067A], tag_multiple: false, tag_note: ''},
4488
+ { tag_ps: '(300A,067B)', tag_name: "Radiation GenerationMode Sequence", tag_key: 'RadiationGenerationModeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,067B)', tag_sym: :radiation_generation_mode_sequence, tag_ndm: '300A067B', tag_ary: [0x300A,0x067B], tag_multiple: false, tag_note: ''},
4489
+ { tag_ps: '(300A,067C)', tag_name: "Radiation GenerationMode Label", tag_key: 'RadiationGenerationModeLabel', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(300A,067C)', tag_sym: :radiation_generation_mode_label, tag_ndm: '300A067C', tag_ary: [0x300A,0x067C], tag_multiple: false, tag_note: ''},
4490
+ { tag_ps: '(300A,067D)', tag_name: "Radiation GenerationMode Description", tag_key: 'RadiationGenerationModeDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(300A,067D)', tag_sym: :radiation_generation_mode_description, tag_ndm: '300A067D', tag_ary: [0x300A,0x067D], tag_multiple: false, tag_note: ''},
4491
+ { tag_ps: '(300A,067E)', tag_name: "Radiation GenerationMode Machine Code Sequence", tag_key: 'RadiationGenerationModeMachineCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,067E)', tag_sym: :radiation_generation_mode_machine_code_sequence, tag_ndm: '300A067E', tag_ary: [0x300A,0x067E], tag_multiple: false, tag_note: ''},
4492
+ { tag_ps: '(300A,067F)', tag_name: "Radiation Type Code Sequence", tag_key: 'RadiationTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,067F)', tag_sym: :radiation_type_code_sequence, tag_ndm: '300A067F', tag_ary: [0x300A,0x067F], tag_multiple: false, tag_note: ''},
4493
+ { tag_ps: '(300A,0680)', tag_name: "Nominal Energy", tag_key: 'NominalEnergy', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(300A,0680)', tag_sym: :nominal_energy, tag_ndm: '300A0680', tag_ary: [0x300A,0x0680], tag_multiple: false, tag_note: ''},
4494
+ { tag_ps: '(300A,0681)', tag_name: "Minimum Nominal Energy", tag_key: 'MinimumNominalEnergy', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(300A,0681)', tag_sym: :minimum_nominal_energy, tag_ndm: '300A0681', tag_ary: [0x300A,0x0681], tag_multiple: false, tag_note: ''},
4495
+ { tag_ps: '(300A,0682)', tag_name: "Maximum Nominal Energy", tag_key: 'MaximumNominalEnergy', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(300A,0682)', tag_sym: :maximum_nominal_energy, tag_ndm: '300A0682', tag_ary: [0x300A,0x0682], tag_multiple: false, tag_note: ''},
4496
+ { tag_ps: '(300A,0683)', tag_name: "Radiation Fluence Modifier Code Sequence", tag_key: 'RadiationFluenceModifierCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0683)', tag_sym: :radiation_fluence_modifier_code_sequence, tag_ndm: '300A0683', tag_ary: [0x300A,0x0683], tag_multiple: false, tag_note: ''},
4497
+ { tag_ps: '(300A,0684)', tag_name: "Energy Unit Code Sequence", tag_key: 'EnergyUnitCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0684)', tag_sym: :energy_unit_code_sequence, tag_ndm: '300A0684', tag_ary: [0x300A,0x0684], tag_multiple: false, tag_note: ''},
4498
+ { tag_ps: '(300A,0685)', tag_name: "Number of Radiation GenerationModes", tag_key: 'NumberOfRadiationGenerationModes', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0685)', tag_sym: :number_of_radiation_generation_modes, tag_ndm: '300A0685', tag_ary: [0x300A,0x0685], tag_multiple: false, tag_note: ''},
4499
+ { tag_ps: '(300A,0686)', tag_name: "Patient Support Devices Sequence", tag_key: 'PatientSupportDevicesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0686)', tag_sym: :patient_support_devices_sequence, tag_ndm: '300A0686', tag_ary: [0x300A,0x0686], tag_multiple: false, tag_note: ''},
4500
+ { tag_ps: '(300A,0687)', tag_name: "Number of Patient Support Devices", tag_key: 'NumberOfPatientSupportDevices', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0687)', tag_sym: :number_of_patient_support_devices, tag_ndm: '300A0687', tag_ary: [0x300A,0x0687], tag_multiple: false, tag_note: ''},
4501
+ { tag_ps: '(300A,0688)', tag_name: "RT Beam Modifier Definition Distance", tag_key: 'RTBeamModifierDefinitionDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(300A,0688)', tag_sym: :rt_beam_modifier_definition_distance, tag_ndm: '300A0688', tag_ary: [0x300A,0x0688], tag_multiple: false, tag_note: ''},
4502
+ { tag_ps: '(300A,0689)', tag_name: "Beam Area Limit Sequence", tag_key: 'BeamAreaLimitSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0689)', tag_sym: :beam_area_limit_sequence, tag_ndm: '300A0689', tag_ary: [0x300A,0x0689], tag_multiple: false, tag_note: ''},
4503
+ { tag_ps: '(300A,068A)', tag_name: "Referenced RT Prescription Sequence", tag_key: 'ReferencedRTPrescriptionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,068A)', tag_sym: :referenced_rt_prescription_sequence, tag_ndm: '300A068A', tag_ary: [0x300A,0x068A], tag_multiple: false, tag_note: ''},
4504
+ { tag_ps: '(300A,0700)', tag_name: "Treatment Session UID", tag_key: 'TreatmentSessionUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(300A,0700)', tag_sym: :treatment_session_uid, tag_ndm: '300A0700', tag_ary: [0x300A,0x0700], tag_multiple: false, tag_note: ''},
4505
+ { tag_ps: '(300A,0701)', tag_name: "RT Radiation Usage", tag_key: 'RTRadiationUsage', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0701)', tag_sym: :rt_radiation_usage, tag_ndm: '300A0701', tag_ary: [0x300A,0x0701], tag_multiple: false, tag_note: ''},
4506
+ { tag_ps: '(300A,0702)', tag_name: "Referenced RT Radiation Set Sequence", tag_key: 'ReferencedRTRadiationSetSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0702)', tag_sym: :referenced_rt_radiation_set_sequence, tag_ndm: '300A0702', tag_ary: [0x300A,0x0702], tag_multiple: false, tag_note: ''},
4507
+ { tag_ps: '(300A,0703)', tag_name: "Referenced RT Radiation Record Sequence", tag_key: 'ReferencedRTRadiationRecordSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0703)', tag_sym: :referenced_rt_radiation_record_sequence, tag_ndm: '300A0703', tag_ary: [0x300A,0x0703], tag_multiple: false, tag_note: ''},
4508
+ { tag_ps: '(300A,0704)', tag_name: "RT Radiation Set Delivery Number", tag_key: 'RTRadiationSetDeliveryNumber', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0704)', tag_sym: :rt_radiation_set_delivery_number, tag_ndm: '300A0704', tag_ary: [0x300A,0x0704], tag_multiple: false, tag_note: ''},
4509
+ { tag_ps: '(300A,0705)', tag_name: "Clinical Fraction Number", tag_key: 'ClinicalFractionNumber', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0705)', tag_sym: :clinical_fraction_number, tag_ndm: '300A0705', tag_ary: [0x300A,0x0705], tag_multiple: false, tag_note: ''},
4510
+ { tag_ps: '(300A,0706)', tag_name: "RT Treatment Fraction Completion Status", tag_key: 'RTTreatmentFractionCompletionStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0706)', tag_sym: :rt_treatment_fraction_completion_status, tag_ndm: '300A0706', tag_ary: [0x300A,0x0706], tag_multiple: false, tag_note: ''},
4511
+ { tag_ps: '(300A,0707)', tag_name: "RT Radiation Set Usage", tag_key: 'RTRadiationSetUsage', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0707)', tag_sym: :rt_radiation_set_usage, tag_ndm: '300A0707', tag_ary: [0x300A,0x0707], tag_multiple: false, tag_note: ''},
4512
+ { tag_ps: '(300A,0708)', tag_name: "Treatment Delivery Continuation Flag", tag_key: 'TreatmentDeliveryContinuationFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0708)', tag_sym: :treatment_delivery_continuation_flag, tag_ndm: '300A0708', tag_ary: [0x300A,0x0708], tag_multiple: false, tag_note: ''},
4513
+ { tag_ps: '(300A,0709)', tag_name: "Treatment Record Content Origin", tag_key: 'TreatmentRecordContentOrigin', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0709)', tag_sym: :treatment_record_content_origin, tag_ndm: '300A0709', tag_ary: [0x300A,0x0709], tag_multiple: false, tag_note: ''},
4514
+ { tag_ps: '(300A,0714)', tag_name: "RT Treatment Termination Status", tag_key: 'RTTreatmentTerminationStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0714)', tag_sym: :rt_treatment_termination_status, tag_ndm: '300A0714', tag_ary: [0x300A,0x0714], tag_multiple: false, tag_note: ''},
4515
+ { tag_ps: '(300A,0715)', tag_name: "RT Treatment Termination Reason Code Sequence", tag_key: 'RTTreatmentTerminationReasonCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0715)', tag_sym: :rt_treatment_termination_reason_code_sequence, tag_ndm: '300A0715', tag_ary: [0x300A,0x0715], tag_multiple: false, tag_note: ''},
4516
+ { tag_ps: '(300A,0716)', tag_name: "Machine-Specific Treatment Termination Code Sequence", tag_key: 'MachineSpecificTreatmentTerminationCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0716)', tag_sym: :machine_specific_treatment_termination_code_sequence, tag_ndm: '300A0716', tag_ary: [0x300A,0x0716], tag_multiple: false, tag_note: ''},
4517
+ { tag_ps: '(300A,0722)', tag_name: "RT Radiation Salvage Record Control Point Sequence", tag_key: 'RTRadiationSalvageRecordControlPointSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0722)', tag_sym: :rt_radiation_salvage_record_control_point_sequence, tag_ndm: '300A0722', tag_ary: [0x300A,0x0722], tag_multiple: false, tag_note: ''},
4518
+ { tag_ps: '(300A,0723)', tag_name: "Starting Meterset Value Known Flag", tag_key: 'StartingMetersetValueKnownFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0723)', tag_sym: :starting_meterset_value_known_flag, tag_ndm: '300A0723', tag_ary: [0x300A,0x0723], tag_multiple: false, tag_note: ''},
4519
+ { tag_ps: '(300A,0730)', tag_name: "Treatment Termination Description", tag_key: 'TreatmentTerminationDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(300A,0730)', tag_sym: :treatment_termination_description, tag_ndm: '300A0730', tag_ary: [0x300A,0x0730], tag_multiple: false, tag_note: ''},
4520
+ { tag_ps: '(300A,0731)', tag_name: "Treatment Tolerance Violation Sequence", tag_key: 'TreatmentToleranceViolationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0731)', tag_sym: :treatment_tolerance_violation_sequence, tag_ndm: '300A0731', tag_ary: [0x300A,0x0731], tag_multiple: false, tag_note: ''},
4521
+ { tag_ps: '(300A,0732)', tag_name: "Treatment Tolerance Violation Category", tag_key: 'TreatmentToleranceViolationCategory', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0732)', tag_sym: :treatment_tolerance_violation_category, tag_ndm: '300A0732', tag_ary: [0x300A,0x0732], tag_multiple: false, tag_note: ''},
4522
+ { tag_ps: '(300A,0733)', tag_name: "Treatment Tolerance Violation Attribute Sequence", tag_key: 'TreatmentToleranceViolationAttributeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0733)', tag_sym: :treatment_tolerance_violation_attribute_sequence, tag_ndm: '300A0733', tag_ary: [0x300A,0x0733], tag_multiple: false, tag_note: ''},
4523
+ { tag_ps: '(300A,0734)', tag_name: "Treatment Tolerance Violation Description", tag_key: 'TreatmentToleranceViolationDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(300A,0734)', tag_sym: :treatment_tolerance_violation_description, tag_ndm: '300A0734', tag_ary: [0x300A,0x0734], tag_multiple: false, tag_note: ''},
4524
+ { tag_ps: '(300A,0735)', tag_name: "Treatment Tolerance Violation Identification", tag_key: 'TreatmentToleranceViolationIdentification', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(300A,0735)', tag_sym: :treatment_tolerance_violation_identification, tag_ndm: '300A0735', tag_ary: [0x300A,0x0735], tag_multiple: false, tag_note: ''},
4525
+ { tag_ps: '(300A,0736)', tag_name: "Treatment Tolerance Violation DateTime", tag_key: 'TreatmentToleranceViolationDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(300A,0736)', tag_sym: :treatment_tolerance_violation_date_time, tag_ndm: '300A0736', tag_ary: [0x300A,0x0736], tag_multiple: false, tag_note: ''},
4526
+ { tag_ps: '(300A,073A)', tag_name: "Recorded RT Control Point DateTime", tag_key: 'RecordedRTControlPointDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(300A,073A)', tag_sym: :recorded_rt_control_point_date_time, tag_ndm: '300A073A', tag_ary: [0x300A,0x073A], tag_multiple: false, tag_note: ''},
4527
+ { tag_ps: '(300A,073B)', tag_name: "Referenced Radiation RT Control Point Index", tag_key: 'ReferencedRadiationRTControlPointIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,073B)', tag_sym: :referenced_radiation_rt_control_point_index, tag_ndm: '300A073B', tag_ary: [0x300A,0x073B], tag_multiple: false, tag_note: ''},
4528
+ { tag_ps: '(300A,073E)', tag_name: "Alternate Value Sequence", tag_key: 'AlternateValueSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,073E)', tag_sym: :alternate_value_sequence, tag_ndm: '300A073E', tag_ary: [0x300A,0x073E], tag_multiple: false, tag_note: ''},
4529
+ { tag_ps: '(300A,073F)', tag_name: "Confirmation Sequence", tag_key: 'ConfirmationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,073F)', tag_sym: :confirmation_sequence, tag_ndm: '300A073F', tag_ary: [0x300A,0x073F], tag_multiple: false, tag_note: ''},
4530
+ { tag_ps: '(300A,0740)', tag_name: "Interlock Sequence", tag_key: 'InterlockSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0740)', tag_sym: :interlock_sequence, tag_ndm: '300A0740', tag_ary: [0x300A,0x0740], tag_multiple: false, tag_note: ''},
4531
+ { tag_ps: '(300A,0741)', tag_name: "Interlock DateTime", tag_key: 'InterlockDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(300A,0741)', tag_sym: :interlock_date_time, tag_ndm: '300A0741', tag_ary: [0x300A,0x0741], tag_multiple: false, tag_note: ''},
4532
+ { tag_ps: '(300A,0742)', tag_name: "Interlock Description", tag_key: 'InterlockDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(300A,0742)', tag_sym: :interlock_description, tag_ndm: '300A0742', tag_ary: [0x300A,0x0742], tag_multiple: false, tag_note: ''},
4533
+ { tag_ps: '(300A,0743)', tag_name: "Interlock Originating Device Sequence", tag_key: 'InterlockOriginatingDeviceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0743)', tag_sym: :interlock_originating_device_sequence, tag_ndm: '300A0743', tag_ary: [0x300A,0x0743], tag_multiple: false, tag_note: ''},
4534
+ { tag_ps: '(300A,0744)', tag_name: "Interlock Code Sequence", tag_key: 'InterlockCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0744)', tag_sym: :interlock_code_sequence, tag_ndm: '300A0744', tag_ary: [0x300A,0x0744], tag_multiple: false, tag_note: ''},
4535
+ { tag_ps: '(300A,0745)', tag_name: "Interlock Resolution Code Sequence", tag_key: 'InterlockResolutionCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0745)', tag_sym: :interlock_resolution_code_sequence, tag_ndm: '300A0745', tag_ary: [0x300A,0x0745], tag_multiple: false, tag_note: ''},
4536
+ { tag_ps: '(300A,0746)', tag_name: "Interlock Resolution User Sequence", tag_key: 'InterlockResolutionUserSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0746)', tag_sym: :interlock_resolution_user_sequence, tag_ndm: '300A0746', tag_ary: [0x300A,0x0746], tag_multiple: false, tag_note: ''},
4537
+ { tag_ps: '(300A,0760)', tag_name: "Override DateTime", tag_key: 'OverrideDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(300A,0760)', tag_sym: :override_date_time, tag_ndm: '300A0760', tag_ary: [0x300A,0x0760], tag_multiple: false, tag_note: ''},
4538
+ { tag_ps: '(300A,0761)', tag_name: "Treatment Tolerance Violation Type Code Sequence", tag_key: 'TreatmentToleranceViolationTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0761)', tag_sym: :treatment_tolerance_violation_type_code_sequence, tag_ndm: '300A0761', tag_ary: [0x300A,0x0761], tag_multiple: false, tag_note: ''},
4539
+ { tag_ps: '(300A,0762)', tag_name: "Treatment Tolerance Violation Cause Code Sequence", tag_key: 'TreatmentToleranceViolationCauseCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0762)', tag_sym: :treatment_tolerance_violation_cause_code_sequence, tag_ndm: '300A0762', tag_ary: [0x300A,0x0762], tag_multiple: false, tag_note: ''},
4540
+ { tag_ps: '(300A,0772)', tag_name: "Measured Meterset to Dose Mapping Sequence", tag_key: 'MeasuredMetersetToDoseMappingSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0772)', tag_sym: :measured_meterset_to_dose_mapping_sequence, tag_ndm: '300A0772', tag_ary: [0x300A,0x0772], tag_multiple: false, tag_note: ''},
4541
+ { tag_ps: '(300A,0773)', tag_name: "Referenced Expected In-Vivo Measurement Value Index", tag_key: 'ReferencedExpectedInVivoMeasurementValueIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0773)', tag_sym: :referenced_expected_in_vivo_measurement_value_index, tag_ndm: '300A0773', tag_ary: [0x300A,0x0773], tag_multiple: false, tag_note: ''},
4542
+ { tag_ps: '(300A,0774)', tag_name: "Dose Measurement Device Code Sequence", tag_key: 'DoseMeasurementDeviceCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0774)', tag_sym: :dose_measurement_device_code_sequence, tag_ndm: '300A0774', tag_ary: [0x300A,0x0774], tag_multiple: false, tag_note: ''},
4543
+ { tag_ps: '(300A,0780)', tag_name: "Additional Parameter Recording Instance Sequence", tag_key: 'AdditionalParameterRecordingInstanceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,0780)', tag_sym: :additional_parameter_recording_instance_sequence, tag_ndm: '300A0780', tag_ary: [0x300A,0x0780], tag_multiple: false, tag_note: ''},
4544
+ { tag_ps: '(300A,0782)', tag_name: "Placeholder (300A,0782)", tag_key: 'Placeholder_300A_0782', tag_vr: [:US], tag_vm: ["1"], tag_str: '(300A,0782)', tag_sym: :placeholder_300a_0782, tag_ndm: '300A0782', tag_ary: [0x300A,0x0782], tag_multiple: false, tag_note: 'RET'},
4545
+ { tag_ps: '(300A,0783)', tag_name: "Interlock Origin Description", tag_key: 'InterlockOriginDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(300A,0783)', tag_sym: :interlock_origin_description, tag_ndm: '300A0783', tag_ary: [0x300A,0x0783], tag_multiple: false, tag_note: ''},
4318
4546
  { tag_ps: '(300C,0002)', tag_name: "Referenced RT Plan Sequence", tag_key: 'ReferencedRTPlanSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300C,0002)', tag_sym: :referenced_rt_plan_sequence, tag_ndm: '300C0002', tag_ary: [0x300C,0x0002], tag_multiple: false, tag_note: ''},
4319
4547
  { tag_ps: '(300C,0004)', tag_name: "Referenced Beam Sequence", tag_key: 'ReferencedBeamSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300C,0004)', tag_sym: :referenced_beam_sequence, tag_ndm: '300C0004', tag_ary: [0x300C,0x0004], tag_multiple: false, tag_note: ''},
4320
4548
  { tag_ps: '(300C,0006)', tag_name: "Referenced Beam Number", tag_key: 'ReferencedBeamNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(300C,0006)', tag_sym: :referenced_beam_number, tag_ndm: '300C0006', tag_ary: [0x300C,0x0006], tag_multiple: false, tag_note: ''},
@@ -4399,6 +4627,7 @@ HIGH = 0001H'},
4399
4627
  { tag_ps: '(3010,002C)', tag_name: "Segment Annotation Type Code Sequence", tag_key: 'SegmentAnnotationTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,002C)', tag_sym: :segment_annotation_type_code_sequence, tag_ndm: '3010002C', tag_ary: [0x3010,0x002C], tag_multiple: false, tag_note: ''},
4400
4628
  { tag_ps: '(3010,002D)', tag_name: "Device Label", tag_key: 'DeviceLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(3010,002D)', tag_sym: :device_label, tag_ndm: '3010002D', tag_ary: [0x3010,0x002D], tag_multiple: false, tag_note: ''},
4401
4629
  { tag_ps: '(3010,002E)', tag_name: "Device Type Code Sequence", tag_key: 'DeviceTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,002E)', tag_sym: :device_type_code_sequence, tag_ndm: '3010002E', tag_ary: [0x3010,0x002E], tag_multiple: false, tag_note: ''},
4630
+ { tag_ps: '(3010,002F)', tag_name: "Segment Annotation Type Modifier Code Sequence", tag_key: 'SegmentAnnotationTypeModifierCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,002F)', tag_sym: :segment_annotation_type_modifier_code_sequence, tag_ndm: '3010002F', tag_ary: [0x3010,0x002F], tag_multiple: false, tag_note: ''},
4402
4631
  { tag_ps: '(3010,0030)', tag_name: "Patient Equipment Relationship Code Sequence", tag_key: 'PatientEquipmentRelationshipCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0030)', tag_sym: :patient_equipment_relationship_code_sequence, tag_ndm: '30100030', tag_ary: [0x3010,0x0030], tag_multiple: false, tag_note: ''},
4403
4632
  { tag_ps: '(3010,0031)', tag_name: "Referenced Fiducials UID", tag_key: 'ReferencedFiducialsUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(3010,0031)', tag_sym: :referenced_fiducials_uid, tag_ndm: '30100031', tag_ary: [0x3010,0x0031], tag_multiple: false, tag_note: ''},
4404
4633
  { tag_ps: '(3010,0032)', tag_name: "Patient Treatment Orientation Sequence", tag_key: 'PatientTreatmentOrientationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0032)', tag_sym: :patient_treatment_orientation_sequence, tag_ndm: '30100032', tag_ary: [0x3010,0x0032], tag_multiple: false, tag_note: ''},
@@ -4487,6 +4716,18 @@ HIGH = 0001H'},
4487
4716
  { tag_ps: '(3010,0086)', tag_name: "Intended Start Day of Week", tag_key: 'IntendedStartDayOfWeek', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(3010,0086)', tag_sym: :intended_start_day_of_week, tag_ndm: '30100086', tag_ary: [0x3010,0x0086], tag_multiple: false, tag_note: ''},
4488
4717
  { tag_ps: '(3010,0087)', tag_name: "Weekday Fraction Pattern Sequence", tag_key: 'WeekdayFractionPatternSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0087)', tag_sym: :weekday_fraction_pattern_sequence, tag_ndm: '30100087', tag_ary: [0x3010,0x0087], tag_multiple: false, tag_note: ''},
4489
4718
  { tag_ps: '(3010,0088)', tag_name: "Delivery Time Structure Code Sequence", tag_key: 'DeliveryTimeStructureCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0088)', tag_sym: :delivery_time_structure_code_sequence, tag_ndm: '30100088', tag_ary: [0x3010,0x0088], tag_multiple: false, tag_note: ''},
4719
+ { tag_ps: '(3010,0089)', tag_name: "Treatment Site Modifier Code Sequence", tag_key: 'TreatmentSiteModifierCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0089)', tag_sym: :treatment_site_modifier_code_sequence, tag_ndm: '30100089', tag_ary: [0x3010,0x0089], tag_multiple: false, tag_note: ''},
4720
+ { tag_ps: '(3010,0090)', tag_name: "Robotic Base Location Indicator", tag_key: 'RoboticBaseLocationIndicator', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3010,0090)', tag_sym: :robotic_base_location_indicator, tag_ndm: '30100090', tag_ary: [0x3010,0x0090], tag_multiple: false, tag_note: ''},
4721
+ { tag_ps: '(3010,0091)', tag_name: "Robotic Path Node Set Code Sequence", tag_key: 'RoboticPathNodeSetCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0091)', tag_sym: :robotic_path_node_set_code_sequence, tag_ndm: '30100091', tag_ary: [0x3010,0x0091], tag_multiple: false, tag_note: ''},
4722
+ { tag_ps: '(3010,0092)', tag_name: "Robotic Node Identifier", tag_key: 'RoboticNodeIdentifier', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(3010,0092)', tag_sym: :robotic_node_identifier, tag_ndm: '30100092', tag_ary: [0x3010,0x0092], tag_multiple: false, tag_note: ''},
4723
+ { tag_ps: '(3010,0093)', tag_name: "RT Treatment Source Coordinates", tag_key: 'RTTreatmentSourceCoordinates', tag_vr: [:FD], tag_vm: ["3"], tag_str: '(3010,0093)', tag_sym: :rt_treatment_source_coordinates, tag_ndm: '30100093', tag_ary: [0x3010,0x0093], tag_multiple: false, tag_note: ''},
4724
+ { tag_ps: '(3010,0094)', tag_name: "Radiation Source Coordinate SystemYaw Angle", tag_key: 'RadiationSourceCoordinateSystemYawAngle', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(3010,0094)', tag_sym: :radiation_source_coordinate_system_yaw_angle, tag_ndm: '30100094', tag_ary: [0x3010,0x0094], tag_multiple: false, tag_note: ''},
4725
+ { tag_ps: '(3010,0095)', tag_name: "Radiation Source Coordinate SystemRoll Angle", tag_key: 'RadiationSourceCoordinateSystemRollAngle', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(3010,0095)', tag_sym: :radiation_source_coordinate_system_roll_angle, tag_ndm: '30100095', tag_ary: [0x3010,0x0095], tag_multiple: false, tag_note: ''},
4726
+ { tag_ps: '(3010,0096)', tag_name: "Radiation Source Coordinate System Pitch Angle", tag_key: 'RadiationSourceCoordinateSystemPitchAngle', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(3010,0096)', tag_sym: :radiation_source_coordinate_system_pitch_angle, tag_ndm: '30100096', tag_ary: [0x3010,0x0096], tag_multiple: false, tag_note: ''},
4727
+ { tag_ps: '(3010,0097)', tag_name: "Robotic Path Control Point Sequence", tag_key: 'RoboticPathControlPointSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0097)', tag_sym: :robotic_path_control_point_sequence, tag_ndm: '30100097', tag_ary: [0x3010,0x0097], tag_multiple: false, tag_note: ''},
4728
+ { tag_ps: '(3010,0098)', tag_name: "Tomotherapeutic Control Point Sequence", tag_key: 'TomotherapeuticControlPointSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0098)', tag_sym: :tomotherapeutic_control_point_sequence, tag_ndm: '30100098', tag_ary: [0x3010,0x0098], tag_multiple: false, tag_note: ''},
4729
+ { tag_ps: '(3010,0099)', tag_name: "Tomotherapeutic Leaf Open Durations", tag_key: 'TomotherapeuticLeafOpenDurations', tag_vr: [:FD], tag_vm: ["1-n"], tag_str: '(3010,0099)', tag_sym: :tomotherapeutic_leaf_open_durations, tag_ndm: '30100099', tag_ary: [0x3010,0x0099], tag_multiple: false, tag_note: ''},
4730
+ { tag_ps: '(3010,009A)', tag_name: "Tomotherapeutic Leaf Initial Closed Durations", tag_key: 'TomotherapeuticLeafInitialClosedDurations', tag_vr: [:FD], tag_vm: ["1-n"], tag_str: '(3010,009A)', tag_sym: :tomotherapeutic_leaf_initial_closed_durations, tag_ndm: '3010009A', tag_ary: [0x3010,0x009A], tag_multiple: false, tag_note: ''},
4490
4731
  { tag_ps: '(4000,0010)', tag_name: "Arbitrary", tag_key: 'Arbitrary', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(4000,0010)', tag_sym: :arbitrary, tag_ndm: '40000010', tag_ary: [0x4000,0x0010], tag_multiple: false, tag_note: 'RET'},
4491
4732
  { tag_ps: '(4000,4000)', tag_name: "Text Comments", tag_key: 'TextComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(4000,4000)', tag_sym: :text_comments, tag_ndm: '40004000', tag_ary: [0x4000,0x4000], tag_multiple: false, tag_note: 'RET'},
4492
4733
  { tag_ps: '(4008,0040)', tag_name: "Results ID", tag_key: 'ResultsID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(4008,0040)', tag_sym: :results_id, tag_ndm: '40080040', tag_ary: [0x4008,0x0040], tag_multiple: false, tag_note: 'RET (2004)'},