Go to the source code of this file.
Namespaces | |
fetchall_from_DQM_v2 | |
Functions | |
def | fetchall_from_DQM_v2.auth_wget |
Variables | |
tuple | fetchall_from_DQM_v2.all_files = file_list_re.findall(filedir_html) |
string | fetchall_from_DQM_v2.base_url = 'https://cmsweb.cern.ch/dqm/relval/data/browse/ROOT/' |
tuple | fetchall_from_DQM_v2.file_list_re = re.compile(r"<a href='[-./\w]*'>([-./\w]*)<") |
list | fetchall_from_DQM_v2.file_res = [re.compile(r) for r in options.regexp.split(',') + [options.release]] |
Fetch the files, using multi-processing. More... | |
tuple | fetchall_from_DQM_v2.filedir_html = auth_wget(filedir_url) |
string | fetchall_from_DQM_v2.filedir_url = base_url+relvaldir+'/' |
string | fetchall_from_DQM_v2.help = 'Fetch data relvals.' |
tuple | fetchall_from_DQM_v2.parser = OptionParser(usage='usage: %prog [options]') |
Define options. More... | |
tuple | fetchall_from_DQM_v2.pool = Pool(options.mthreads) |
tuple | fetchall_from_DQM_v2.release = re.findall('(CMSSW_\d*_\d*_)\d*(?:_[\w\d]*)?', options.release) |
list | fetchall_from_DQM_v2.releasedir = release[0] |
string | fetchall_from_DQM_v2.relvaldir = "RelVal" |
Parse sys.argv. More... | |
list | fetchall_from_DQM_v2.selected_files = [f for f in all_files if all([r.search(f) for r in file_res])] |