示例#1
0
文件: __init__.py 项目: elaird/supy
 def fileName(self, index=None):
     return "/".join([supy.whereami(), configuration.localpath(), "%d.root" % index])
示例#2
0
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())