Class: LogCurveInfo
- Inherits:
-
Object
- Object
- LogCurveInfo
- Defined in:
- lib/las_file.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#mnemonic ⇒ Object
Returns the value of attribute mnemonic.
-
#unit ⇒ Object
Returns the value of attribute unit.
Instance Method Summary collapse
-
#initialize(mnemonic, unit = nil, description = nil) ⇒ LogCurveInfo
constructor
A new instance of LogCurveInfo.
Constructor Details
#initialize(mnemonic, unit = nil, description = nil) ⇒ LogCurveInfo
Returns a new instance of LogCurveInfo.
6 7 8 |
# File 'lib/las_file.rb', line 6 def initialize(mnemonic, unit = nil, description = nil) @mnemonic = mnemonic; @unit = unit; @description = description end |
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
5 6 7 |
# File 'lib/las_file.rb', line 5 def description @description end |
#mnemonic ⇒ Object
Returns the value of attribute mnemonic.
5 6 7 |
# File 'lib/las_file.rb', line 5 def mnemonic @mnemonic end |
#unit ⇒ Object
Returns the value of attribute unit.
5 6 7 |
# File 'lib/las_file.rb', line 5 def unit @unit end |