Module: Dcc::Si::Base::ExpandedMU
- Included in:
- V1::ExpandedMU, V2::ExpandedMU
- Defined in:
- lib/dcc/si/base/expanded_mu.rb
Overview
si:expandedMUType — expanded measurement uncertainty (k × σ).
Class Method Summary collapse
Class Method Details
.included(klass) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/dcc/si/base/expanded_mu.rb', line 8 def self.included(klass) klass.class_eval do attribute :value_expanded_mu, :string attribute :coverage_factor, :string attribute :coverage_probability, :string attribute :distribution, :string xml do namespace ::Dcc::Namespace::Si element "expandedMU" ordered map_element "valueExpandedMU", to: :value_expanded_mu map_element "coverageFactor", to: :coverage_factor map_element "coverageProbability", to: :coverage_probability map_element "distribution", to: :distribution end end end |