1 import FWCore.ParameterSet.Config
as cms
3 process = cms.Process(
"DTTPAnalyzer")
5 process.load(
"FWCore.MessageService.MessageLogger_cfi")
7 process.load(
"Configuration.StandardSequences.GeometryDB_cff")
8 process.load(
"Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff")
9 process.load(
"Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
10 process.GlobalTag.globaltag =
""
12 process.load(
"CondCore.CondDB.CondDB_cfi")
14 process.load(
"DQMServices.Core.DQM_cfg")
16 process.source = cms.Source(
"PoolSource",
17 fileNames = cms.untracked.vstring()
20 process.maxEvents = cms.untracked.PSet(
21 input = cms.untracked.int32(-1)
24 process.options = cms.untracked.PSet( wantSummary = cms.untracked.bool(
True) )
26 process.dtunpacker = cms.EDProducer(
"DTUnpackingModule",
27 dataType = cms.string(
'DDU'),
28 inputLabel = cms.InputTag(
'source'),
29 fedbyType = cms.bool(
False),
30 useStandardFEDid = cms.bool(
True),
31 dqmOnly = cms.bool(
False),
32 readOutParameters = cms.PSet(
33 debug = cms.untracked.bool(
False),
34 rosParameters = cms.PSet(
35 writeSC = cms.untracked.bool(
True),
36 readingDDU = cms.untracked.bool(
True),
37 performDataIntegrityMonitor = cms.untracked.bool(
False),
38 readDDUIDfromDDU = cms.untracked.bool(
True),
39 debug = cms.untracked.bool(
False),
40 localDAQ = cms.untracked.bool(
False)
42 localDAQ = cms.untracked.bool(
False),
43 performDataIntegrityMonitor = cms.untracked.bool(
False)
47 process.dtTPAnalyzer = cms.EDAnalyzer(
"DTTPAnalyzer",
48 digiLabel = cms.InputTag(
'dtunpacker'),
49 rootFileName = cms.untracked.string(
''),
50 subtractT0 = cms.bool(
True),
51 tTrigMode = cms.string(
'DTTTrigSyncT0Only'),
52 tTrigModeConfig = cms.PSet(debug = cms.untracked.bool(
False))
55 process.p = cms.Path(process.dtunpacker*process.dtTPAnalyzer)