Example #1
0
 def fileName(self, index=None):
     return "/".join([supy.whereami(), configuration.localpath(), "%d.root" % index])
Example #2
0
def fileName():
    return "%s/%s/skim.root" % (supy.whereami(), configuration.localpath())
Example #3
0
    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]
Example #4
0
def fileName(min, max):
    dir = "%s/%s" % (supy.whereami(), configuration.localpath())
    return '%s/skim_%s.root' % (dir, stem(min, max))
Example #5
0
def filePath() :
    return "%s/%s/typetree.root"%(supy.whereami(),configuration.localpath())