Class: CMORizer::Step::AUTO_INSERT_TIME_BOUNDS

Inherits:
IndividualBaseStep show all
Defined in:
lib/step.rb

Instance Attribute Summary

Attributes inherited from BaseStep

#forbid_inplace, #initial_prefix, #needs_to_run, #resultpath

Instance Method Summary collapse

Methods inherited from IndividualBaseStep

#can_process?

Methods inherited from BaseStep

#add_input, #create_outpath, #initialize, #set_info, #truncate_string

Constructor Details

This class inherits a constructor from CMORizer::Step::BaseStep

Instance Method Details

#file_commandsObject



324
325
326
327
328
329
330
331
# File 'lib/step.rb', line 324

def file_commands
  in_freq = Frequency.for_name(@fesom_variable_frequency)
  cmds = []
  if in_freq.time_method == TimeMethods::MEAN
    cmds << INSERT_TIME_BOUNDS_cmd.new
  end      
  cmds
end