CMS 3D CMS Logo

Public Member Functions | Public Attributes

DTDQMValidation::DTDQMValidation Class Reference

List of all members.

Public Member Functions

def __init__
def initCrab
def initProcess
def run
def writeCfg

Public Attributes

 config
 crab_cfg
 dir
 outputfile
 process
 project
 pset_name
 pset_template
 task

Detailed Description

Definition at line 6 of file DTDQMValidation.py.


Constructor & Destructor Documentation

def DTDQMValidation::DTDQMValidation::__init__ (   self,
  run,
  dir,
  config 
)

Definition at line 8 of file DTDQMValidation.py.

00009                                         :
00010         self.outputfile = 'DQM.root'
00011         self.config = config
00012         self.dir = dir
00013         #self.inputdb = input_db
00014 
00015         self.pset_name = 'dtDQM_cfg.py'
00016         self.pset_template = 'CalibMuon.DTCalibration.dtDQMAlca_cfg'
00017         if hasattr(self.config,'runOnCosmics') and self.config.runOnCosmics:
00018             self.pset_template = 'CalibMuon.DTCalibration.dtDQMAlca_cosmics_cfg'
00019 
00020         self.process = None  
00021         self.crab_cfg = None
00022         self.initProcess()
00023         self.initCrab()
00024         self.task = CrabTask(self.dir,self.crab_cfg)


Member Function Documentation

def DTDQMValidation::DTDQMValidation::initCrab (   self)

Definition at line 66 of file DTDQMValidation.py.

00067                       :
00068         crab_cfg_parser = loadCrabCfg()
00069         loadCrabDefault(crab_cfg_parser,self.config)
00070         crab_cfg_parser.set('CMSSW','pset',self.pset_name)
00071         crab_cfg_parser.set('CMSSW','output_file',self.outputfile)
00072         crab_cfg_parser.remove_option('USER','additional_input_files')
00073         #if self.inputdb:
00074         #    addCrabInputFile(crab_cfg_parser,self.inputdb)
00075         if hasattr(self.config,'inputTTrigDB') and self.config.inputTTrigDB:
00076             addCrabInputFile(crab_cfg_parser,self.config.inputTTrigDB)
00077 
00078         if hasattr(self.config,'inputVDriftDB') and self.config.inputVDriftDB:
00079             addCrabInputFile(crab_cfg_parser,self.config.inputVDriftDB)
00080 
00081         if hasattr(self.config,'inputT0DB') and self.config.inputT0DB:
00082             addCrabInputFile(crab_cfg_parser,self.config.inputT0DB)
00083 
00084         self.crab_cfg = crab_cfg_parser

def DTDQMValidation::DTDQMValidation::initProcess (   self)

Definition at line 25 of file DTDQMValidation.py.

00026                          :
00027         self.process = loadCmsProcess(self.pset_template)
00028         self.process.GlobalTag.globaltag = self.config.globaltag
00029 
00030         if hasattr(self.config,'inputDBTag') and self.config.inputDBTag:
00031             tag = self.config.inputDBTag
00032             record = self.config.inputDBRcd
00033             connect = self.config.connectStrDBTag
00034             moduleName = 'customDB%s' % record 
00035             addPoolDBESSource(process = self.process,
00036                               moduleName = moduleName,record = record,tag = tag,
00037                               connect = connect)
00038 
00039         if hasattr(self.config,'inputTTrigDB') and self.config.inputTTrigDB:
00040             label = ''
00041             if hasattr(self.config,'runOnCosmics') and self.config.runOnCosmics: label = 'cosmics'
00042             addPoolDBESSource(process = self.process,
00043                               moduleName = 'tTrigDB',record = 'DTTtrigRcd',tag = 'ttrig',label = label,
00044                               connect = 'sqlite_file:%s' % os.path.basename(self.config.inputTTrigDB))
00045 
00046         if hasattr(self.config,'inputVDriftDB') and self.config.inputVDriftDB:
00047             addPoolDBESSource(process = self.process,
00048                               moduleName = 'vDriftDB',record = 'DTMtimeRcd',tag = 'vDrift',
00049                               connect = 'sqlite_file:%s' % os.path.basename(self.config.inputVDriftDB))
00050 
00051         if hasattr(self.config,'inputT0DB') and self.config.inputT0DB:
00052             addPoolDBESSource(process = self.process,
00053                               moduleName = 't0DB',record = 'DTT0Rcd',tag = 't0',
00054                               connect = 'sqlite_file:%s' % os.path.basename(self.config.inputT0DB))
00055 
00056         if hasattr(self.config,'runOnRAW') and self.config.runOnRAW:
00057             if hasattr(self.config,'runOnMC') and self.config.runOnMC:
00058                 getattr(self.process,self.config.digilabel).inputLabel = 'rawDataCollector' 
00059             prependPaths(self.process,self.config.digilabel)
00060  
00061         if hasattr(self.config,'preselection') and self.config.preselection:
00062             pathsequence = self.config.preselection.split(':')[0]
00063             seqname = self.config.preselection.split(':')[1]
00064             self.process.load(pathsequence)
00065             prependPaths(self.process,seqname)

def DTDQMValidation::DTDQMValidation::run (   self)

Definition at line 89 of file DTDQMValidation.py.

00090                  :
00091         self.project = self.task.run()
00092         return self.project
def DTDQMValidation::DTDQMValidation::writeCfg (   self)

Definition at line 85 of file DTDQMValidation.py.

00086                       :
00087         writeCfg(self.process,self.dir,self.pset_name)
00088         #writeCfgPkl(self.process,self.dir,self.pset_name)


Member Data Documentation

Definition at line 8 of file DTDQMValidation.py.

Definition at line 8 of file DTDQMValidation.py.

Definition at line 8 of file DTDQMValidation.py.

Definition at line 8 of file DTDQMValidation.py.

Definition at line 8 of file DTDQMValidation.py.

Definition at line 89 of file DTDQMValidation.py.

Definition at line 8 of file DTDQMValidation.py.

Definition at line 8 of file DTDQMValidation.py.

Definition at line 8 of file DTDQMValidation.py.