CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTResidualCalibration.py
Go to the documentation of this file.
1 from tools import loadCmsProcess,loadCrabCfg,loadCrabDefault,addCrabInputFile,writeCfg,prependPaths
2 from addPoolDBESSource import addPoolDBESSource
3 from CrabTask import *
4 import os
5 
7  def __init__(self, run, dir, input_db, config):
8  self.pset_name = 'dtResidualCalibration_cfg.py'
9  self.outputfile = 'residuals.root'
10  self.config = config
11  self.dir = dir
12  self.inputdb = input_db
13 
14  self.pset_template = 'CalibMuon.DTCalibration.dtResidualCalibration_cfg'
15  if hasattr(self.config,'runOnCosmics') and self.config.runOnCosmics:
16  self.pset_template = 'CalibMuon.DTCalibration.dtResidualCalibration_cosmics_cfg'
17 
18  self.process = None
19  self.crab_cfg = None
20  self.initProcess()
21  self.initCrab()
22  self.task = CrabTask(self.dir,self.crab_cfg)
23 
24  def initProcess(self):
26  self.process.GlobalTag.globaltag = self.config.globaltag
27  self.process.dtResidualCalibration.rootFileName = self.outputfile
28  # Update Event Setup
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
34  addPoolDBESSource(process = self.process,
35  moduleName = moduleName,record = record,tag = tag,
36  connect = connect)
37 
38  if hasattr(self.config,'inputVDriftDB') and self.config.inputVDriftDB:
39  addPoolDBESSource(process = self.process,
40  moduleName = 'vDriftDB',record = 'DTMtimeRcd',tag = 'vDrift',
41  connect = 'sqlite_file:%s' % os.path.basename(self.config.inputVDriftDB))
42 
43  if hasattr(self.config,'inputT0DB') and self.config.inputT0DB:
44  addPoolDBESSource(process = self.process,
45  moduleName = 't0DB',record = 'DTT0Rcd',tag = 't0',
46  connect = 'sqlite_file:%s' % os.path.basename(self.config.inputT0DB))
47 
48  if(self.inputdb):
49  label = ''
50  if hasattr(self.config,'runOnCosmics') and self.config.runOnCosmics: label = 'cosmics'
51  addPoolDBESSource(process = self.process,
52  moduleName = 'calibDB',record = 'DTTtrigRcd',tag = 'ttrig',label = label,
53  connect = 'sqlite_file:%s' % os.path.basename(self.inputdb))
54 
55  # Update sequences
56  if hasattr(self.config,'runOnRAW') and self.config.runOnRAW:
57  if hasattr(self.config,'runOnMC') and self.config.runOnMC:
58  getattr(self.process,self.config.digilabel).inputLabel = 'rawDataCollector'
59  prependPaths(self.process,self.config.digilabel)
60 
61  if hasattr(self.config,'preselection') and self.config.preselection:
62  pathsequence = self.config.preselection.split(':')[0]
63  seqname = self.config.preselection.split(':')[1]
64  self.process.load(pathsequence)
65  prependPaths(self.process,seqname)
66 
67  def initCrab(self):
68  crab_cfg_parser = loadCrabCfg()
69  loadCrabDefault(crab_cfg_parser,self.config)
70  crab_cfg_parser.set('CMSSW','pset',self.pset_name)
71  crab_cfg_parser.set('CMSSW','output_file',self.outputfile)
72  crab_cfg_parser.remove_option('USER','additional_input_files')
73  if self.inputdb:
74  addCrabInputFile(crab_cfg_parser,self.inputdb)
75 
76  if hasattr(self.config,'inputVDriftDB') and self.config.inputVDriftDB:
77  addCrabInputFile(crab_cfg_parser,self.config.inputVDriftDB)
78 
79  if hasattr(self.config,'inputT0DB') and self.config.inputT0DB:
80  addCrabInputFile(crab_cfg_parser,self.config.inputT0DB)
81 
82  self.crab_cfg = crab_cfg_parser
83 
84  def writeCfg(self):
85  writeCfg(self.process,self.dir,self.pset_name)
86  #writeCfgPkl(self.process,self.dir,self.pset_name)
87 
88  def run(self):
89  self.project = self.task.run()
90  return self.project
def addCrabInputFile
Definition: tools.py:183
def loadCrabDefault
Definition: tools.py:195
def loadCmsProcess
Definition: tools.py:144
def loadCrabCfg
Definition: tools.py:178
if(dp >Float(M_PI)) dp-
def prependPaths
Definition: tools.py:154