CMS 3D CMS Logo

/data/git/CMSSW_5_3_11_patch5/src/CalibMuon/DTCalibration/python/dtTPAnalyzer_cfg.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 process = cms.Process("DTTPAnalyzer")
00004 
00005 process.load("FWCore.MessageService.MessageLogger_cfi")
00006 
00007 process.load("Configuration.StandardSequences.Geometry_cff")
00008 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
00009 process.GlobalTag.globaltag = ""
00010 
00011 process.load("CondCore.DBCommon.CondDBSetup_cfi")
00012 
00013 process.load("DQMServices.Core.DQM_cfg")
00014 
00015 process.source = cms.source("PoolSource",
00016     fileNames = cms.untracked.vstring()
00017 )
00018 
00019 process.maxEvents = cms.untracked.PSet(
00020     input = cms.untracked.int32(-1)
00021 )
00022 
00023 process.options = cms.untracked.PSet( wantSummary = cms.untracked.bool(True) )
00024 
00025 process.dtunpacker = cms.EDProducer("DTUnpackingModule",
00026     dataType = cms.string('DDU'),
00027     inputLabel = cms.InputTag('source'),
00028     fedbyType = cms.bool(False),
00029     useStandardFEDid = cms.bool(True),
00030     dqmOnly = cms.bool(False),                       
00031     readOutParameters = cms.PSet(
00032         debug = cms.untracked.bool(False),
00033         rosParameters = cms.PSet(
00034             writeSC = cms.untracked.bool(True),
00035             readingDDU = cms.untracked.bool(True),
00036             performDataIntegrityMonitor = cms.untracked.bool(False),
00037             readDDUIDfromDDU = cms.untracked.bool(True),
00038             debug = cms.untracked.bool(False),
00039             localDAQ = cms.untracked.bool(False)
00040         ),
00041         localDAQ = cms.untracked.bool(False),
00042         performDataIntegrityMonitor = cms.untracked.bool(False)
00043     )
00044 )
00045 
00046 process.dtTPAnalyzer = cms.EDAnalyzer("DTTPAnalyzer",
00047     digiLabel = cms.InputTag('dtunpacker'),
00048     rootFileName = cms.untracked.string(''),
00049     subtractT0 = cms.bool(True),
00050     tTrigMode = cms.string('DTTTrigSyncT0Only'),
00051     tTrigModeConfig = cms.PSet(debug = cms.untracked.bool(False))
00052 )
00053 
00054 process.p = cms.Path(process.dtunpacker*process.dtTPAnalyzer)