예제 #1
0
파일: __init__.py 프로젝트: elaird/supy
 def fileName(self, index=None):
     return "/".join([supy.whereami(), configuration.localpath(), "%d.root" % index])
예제 #2
0
파일: skimOptions.py 프로젝트: elaird/supy
def fileName():
    return "%s/%s/skim.root" % (supy.whereami(), configuration.localpath())
예제 #3
0
파일: integers.py 프로젝트: cshimmin/supy
    def listOfSampleDictionaries(self) :
        localDict = supy.samples.SampleHolder()
        filePath = "%s/%s/integers.root"%(supy.whereami(),configuration.localpath())
	localDict.add('integers','["%s"]'%filePath, lumi=0.009)
        return [localDict]
예제 #4
0
파일: skimEff.py 프로젝트: cshimmin/supy
def fileName(min, max):
    dir = "%s/%s" % (supy.whereami(), configuration.localpath())
    return '%s/skim_%s.root' % (dir, stem(min, max))
예제 #5
0
파일: maketree.py 프로젝트: cshimmin/supy
def filePath() :
    return "%s/%s/typetree.root"%(supy.whereami(),configuration.localpath())