class Flog

def calculate_total_scores

def calculate_total_scores
  return if @totals
  @total_score = 0
  @totals = Hash.new(0)
  calls.each do |meth, tally|
    score = score_method(tally)
    @totals[meth] = score
    @total_score += score
  end
end