class RubyProf::CallTree

def children_time

The time spent in child methods resulting from the parent method calling the target method
def children_time
  self.total_time - self.self_time - self.wait_time
end