class FCSParse::FCSParam

Class representing a single parameter and its value in a single event.

@author Colin J. Fuller

Attributes

description[RW]
limit[RW]
name[RW]
value[RW]

Public Class Methods

new(name, description, value, limit) click to toggle source

Create a new parameter with specified information

@param name the name of the parameter @param description a longer description of the parameter @param value the value of the parameter @param limit the maximum value that the parameter can take

# File lib/fcsparse/fcsevent.rb, line 49
def initialize(name, description, value, limit)
  
  @name = name
  @description = description
  @value = value
  @limit = limit
  
end