def get_group_names(self):
     s = HDFStore(self.path)
     names = [str(x) for x in s.groups()]
     s.close()
     return names