1 |
battilan |
1.1 |
from EventFilter.DTTFRawToDigi.dttfunpacker_cfi import *
|
2 |
|
|
|
3 |
battilan |
1.9 |
dtunpacker = cms.EDProducer("DTUnpackingModule",
|
4 |
|
|
dataType = cms.string('DDU'),
|
5 |
|
|
inputLabel = cms.InputTag('source'), ## needed for new versions, at least >356
|
6 |
|
|
###useStandardFEDid = cms.untracked.bool(True),
|
7 |
|
|
useStandardFEDid = cms.bool(True),
|
8 |
|
|
###fedbyType = cms.untracked.bool(True),
|
9 |
|
|
fedbyType = cms.bool(False), ## tracked for new versions, at least >356, and also false ????
|
10 |
|
|
dqmOnly = cms.bool(False), ## needed for new versions, at least >356
|
11 |
|
|
readOutParameters = cms.PSet(debug = cms.untracked.bool(False),
|
12 |
battilan |
1.1 |
rosParameters = cms.PSet(writeSC = cms.untracked.bool(True),
|
13 |
|
|
readingDDU = cms.untracked.bool(True),
|
14 |
|
|
performDataIntegrityMonitor = cms.untracked.bool(True),
|
15 |
|
|
readDDUIDfromDDU = cms.untracked.bool(True),
|
16 |
|
|
debug = cms.untracked.bool(False),
|
17 |
|
|
localDAQ = cms.untracked.bool(False)
|
18 |
|
|
),
|
19 |
|
|
localDAQ = cms.untracked.bool(False),
|
20 |
|
|
performDataIntegrityMonitor = cms.untracked.bool(True)
|
21 |
|
|
)
|
22 |
battilan |
1.9 |
)
|
23 |
battilan |
1.1 |
|
24 |
|
|
|
25 |
|
|
from Configuration.StandardSequences.Geometry_cff import *
|
26 |
battilan |
1.2 |
from RecoLocalMuon.Configuration.RecoLocalMuonCosmics_cff import *
|
27 |
battilan |
1.1 |
dt1DRecHits.dtDigiLabel = 'dtunpacker'
|
28 |
|
|
|
29 |
battilan |
1.9 |
|
30 |
battilan |
1.2 |
from RecoMuon.Configuration.RecoMuonCosmics_cff import *
|
31 |
cerminar |
1.3 |
from RecoVertex.BeamSpotProducer.BeamSpot_cff import *
|
32 |
battilan |
1.2 |
from TrackPropagation.SteppingHelixPropagator.SteppingHelixPropagator_cfi import *
|
33 |
cerminar |
1.3 |
|
34 |
battilan |
1.2 |
cosmicMuonsBarrelOnly.TrajectoryBuilderParameters.EnableRPCMeasurement = False
|
35 |
battilan |
1.1 |
|
36 |
|
|
from CondCore.DBCommon.CondDBSetup_cfi import *
|
37 |
|
|
|
38 |
battilan |
1.9 |
from Configuration.StandardSequences.FrontierConditions_GlobalTag_cff import *
|
39 |
|
|
####GlobalTag.globaltag = 'GR09_31X_V4P::All' ## During CRAFT
|
40 |
|
|
####GlobalTag.globaltag = 'CRAFT09_R_V3::All' ## For reprocessing with 327 (Sep09)
|
41 |
|
|
####GlobalTag.globaltag = 'GR09_P_V7::All' ## For prompt reco on all PD's except Cosmics
|
42 |
|
|
###GlobalTag.globaltag = 'GR10_P_V2::All' ## For prompt reco on all PD's except Cosmics
|
43 |
|
|
###GlobalTag.globaltag = 'GR10_P_V5::All' ## For prompt reco on all PD's except Cosmics
|
44 |
|
|
##GlobalTag.globaltag = 'GR10_P_V6::All' ## For prompt reco on all PD's except Cosmics
|
45 |
|
|
GlobalTag.globaltag = 'GR10_P_V9::All' ## For prompt reco on all PD's except Cosmics
|
46 |
battilan |
1.1 |
|
47 |
|
|
unpackers = cms.Sequence(dtunpacker + dttfunpacker)
|
48 |
battilan |
1.2 |
reco = cms.Sequence(dt1DRecHits * dt2DSegments * dt4DSegments)
|
49 |
|
|
globalreco = cms.Sequence(CosmicMuonSeedBarrelOnly * offlineBeamSpot * cosmicMuonsBarrelOnly)
|
50 |
cerminar |
1.3 |
|
51 |
|
|
#######################################################################################
|
52 |
|
|
# DT DPG DQM modules follow
|
53 |
|
|
|
54 |
|
|
from UserCode.DTDPGAnalysis.DTOfflineAnalyzer_cfi import *
|
55 |
|
|
from UserCode.DTDPGAnalysis.STAOfflineAnalyzer_cfi import *
|
56 |
|
|
from UserCode.DTDPGAnalysis.DTEffOfflineAnalyzer_cfi import *
|
57 |
|
|
|
58 |
|
|
|
59 |
|
|
from DQMServices.Components.MEtoEDMConverter_cfi import *
|
60 |
|
|
from DQMServices.Core.DQM_cfg import *
|
61 |
|
|
|
62 |
|
|
from DQM.DTMonitorModule.dtDataIntegrityTask_cfi import *
|
63 |
|
|
|
64 |
|
|
from DQM.DTMonitorModule.dtDigiTask_cfi import *
|
65 |
|
|
dtDigiMonitor.readDB = True
|
66 |
|
|
dtDigiMonitor.doNoiseOccupancies = True
|
67 |
|
|
dtDigiMonitor.doInTimeOccupancies = True
|
68 |
|
|
|
69 |
|
|
from DQM.DTMonitorModule.dtTriggerTask_cfi import *
|
70 |
|
|
dtTriggerMonitor.process_dcc = True
|
71 |
|
|
dtTriggerMonitor.dcc_label = 'dttfunpacker'
|
72 |
|
|
dtTriggerMonitor.process_seg = True
|
73 |
|
|
|
74 |
|
|
from DQM.DTMonitorModule.dtEfficiencyTask_cfi import *
|
75 |
|
|
from DQM.DTMonitorModule.dtChamberEfficiencyTask_cfi import *
|
76 |
|
|
from DQM.DTMonitorModule.dtResolutionTask_cfi import *
|
77 |
|
|
|
78 |
|
|
from DQM.DTMonitorModule.dtSegmentTask_cfi import *
|
79 |
|
|
dtSegmentAnalysisMonitor.detailedAnalysis = True
|
80 |
|
|
|
81 |
battilan |
1.6 |
dummyProducer = cms.EDProducer("ThingWithMergeProducer")
|
82 |
cerminar |
1.3 |
|
83 |
battilan |
1.6 |
|
84 |
|
|
sources = cms.Sequence( dummyProducer + dtDigiMonitor + dtTriggerMonitor + dtEfficiencyMonitor + dtChamberEfficiencyMonitor + dtSegmentAnalysisMonitor + dtResolutionAnalysisMonitor)
|
85 |
cerminar |
1.3 |
|
86 |
|
|
analysis = cms.Sequence(DTOfflineAnalyzer + DTEffOfflineAnalyzer + STAOfflineAnalyzer)
|
87 |
|
|
|