Example #1
0
 def __init__(self, resultdir):
     resultshelf = os.path.join(resultdir, ssc.DENSCOMP_RESULT_FILE)
     self._results = sc.retrive_from_shelf(resultshelf)
Example #2
0
 def __init__(self, workdirs):
     self._result = {}
     for workdir in workdirs:
         resultshelf = os.path.join(workdir, ssc.WAVECOMP_RESULT_FILE)
         curres = sc.retrive_from_shelf(resultshelf)
         self._result.update(curres)
Example #3
0
 def __init__(self, workdir):
     self._result_db = sc.retrive_from_shelf(
         os.path.join(workdir, ssc.TWOCNT_RESULT_FILE))