1 from tools
import loadCmsProcess,loadCrabCfg,loadCrabDefault,addCrabInputFile,writeCfg,prependPaths
2 from addPoolDBESSource
import addPoolDBESSource
16 if hasattr(self.
config,
'runOnCosmics')
and self.config.runOnCosmics:
17 self.
pset_template =
'CalibMuon.DTCalibration.dtDQMAlca_cosmics_cfg' 27 self.process.GlobalTag.globaltag = self.config.globaltag
29 if hasattr(self.
config,
'inputDBTag')
and self.config.inputDBTag:
30 tag = self.config.inputDBTag
31 record = self.config.inputDBRcd
32 connect = self.config.connectStrDBTag
33 moduleName =
'customDB%s' % record
35 moduleName = moduleName,record = record,tag = tag,
38 if hasattr(self.
config,
'inputTTrigDB')
and self.config.inputTTrigDB:
40 if hasattr(self.
config,
'runOnCosmics')
and self.config.runOnCosmics: label =
'cosmics' 42 moduleName =
'tTrigDB',record =
'DTTtrigRcd',tag =
'ttrig',label = label,
43 connect =
'sqlite_file:%s' % os.path.basename(self.config.inputTTrigDB))
45 if hasattr(self.
config,
'inputVDriftDB')
and self.config.inputVDriftDB:
47 moduleName =
'vDriftDB',record =
'DTMtimeRcd',tag =
'vDrift',
48 connect =
'sqlite_file:%s' % os.path.basename(self.config.inputVDriftDB))
50 if hasattr(self.
config,
'inputT0DB')
and self.config.inputT0DB:
52 moduleName =
't0DB',record =
'DTT0Rcd',tag =
't0',
53 connect =
'sqlite_file:%s' % os.path.basename(self.config.inputT0DB))
55 if hasattr(self.
config,
'runOnRAW')
and self.config.runOnRAW:
56 if hasattr(self.
config,
'runOnMC')
and self.config.runOnMC:
57 getattr(self.
process,self.config.digilabel).inputLabel =
'rawDataCollector' 60 if hasattr(self.
config,
'preselection')
and self.config.preselection:
61 pathsequence = self.config.preselection.split(
':')[0]
62 seqname = self.config.preselection.split(
':')[1]
63 self.process.load(pathsequence)
69 crab_cfg_parser.set(
'CMSSW',
'pset',self.
pset_name)
70 crab_cfg_parser.set(
'CMSSW',
'output_file',self.
outputfile)
71 crab_cfg_parser.remove_option(
'USER',
'additional_input_files')
74 if hasattr(self.
config,
'inputTTrigDB')
and self.config.inputTTrigDB:
77 if hasattr(self.
config,
'inputVDriftDB')
and self.config.inputVDriftDB:
80 if hasattr(self.
config,
'inputT0DB')
and self.config.inputT0DB:
def __init__(self, run, dir, config)