1 |
battilan |
1.1 |
from EventFilter.DTTFRawToDigi.dttfunpacker_cfi import *
|
2 |
|
|
|
3 |
|
|
dtunpacker = cms.EDFilter("DTUnpackingModule",
|
4 |
|
|
dataType = cms.string('DDU'),
|
5 |
|
|
useStandardFEDid = cms.untracked.bool(True),
|
6 |
|
|
fedbyType = cms.untracked.bool(True),
|
7 |
|
|
readOutParameters = cms.PSet(debug = cms.untracked.bool(False),
|
8 |
|
|
rosParameters = cms.PSet(writeSC = cms.untracked.bool(True),
|
9 |
|
|
readingDDU = cms.untracked.bool(True),
|
10 |
|
|
performDataIntegrityMonitor = cms.untracked.bool(True),
|
11 |
|
|
readDDUIDfromDDU = cms.untracked.bool(True),
|
12 |
|
|
debug = cms.untracked.bool(False),
|
13 |
|
|
localDAQ = cms.untracked.bool(False)
|
14 |
|
|
),
|
15 |
|
|
localDAQ = cms.untracked.bool(False),
|
16 |
|
|
performDataIntegrityMonitor = cms.untracked.bool(True)
|
17 |
|
|
)
|
18 |
|
|
)
|
19 |
|
|
|
20 |
|
|
|
21 |
|
|
from Geometry.DTGeometry.dtGeometry_cfi import *
|
22 |
|
|
from Geometry.MuonNumbering.muonNumberingInitialization_cfi import *
|
23 |
|
|
from Configuration.StandardSequences.Geometry_cff import *
|
24 |
|
|
|
25 |
|
|
from RecoLocalMuon.DTRecHit.dt1DRecHits_LinearDrift_CosmicData_cfi import *
|
26 |
|
|
dt1DRecHits.dtDigiLabel = 'dtunpacker'
|
27 |
|
|
DTLinearDriftAlgo_CosmicData.recAlgoConfig.tTrigModeConfig.kFactor = -1.0
|
28 |
|
|
|
29 |
|
|
from RecoLocalMuon.DTSegment.dt2DSegments_CombPatternReco2D_LinearDrift_CosmicData_cfi import *
|
30 |
|
|
DTLinearDriftAlgo_CosmicData.recAlgoConfig.hitResolution = 0.05
|
31 |
|
|
DTCombinatorialPatternReco2DAlgo_LinearDrift_CosmicData.Reco2DAlgoConfig.segmCleanerMode = 2
|
32 |
|
|
|
33 |
|
|
from RecoLocalMuon.DTSegment.dt4DSegments_CombPatternReco4D_LinearDrift_CosmicData_cfi import *
|
34 |
|
|
DTCombinatorialPatternReco2DAlgo_LinearDrift_CosmicData.Reco2DAlgoConfig.MaxAllowedHits = 30
|
35 |
|
|
DTCombinatorialPatternReco4DAlgo_LinearDrift_CosmicData.Reco4DAlgoConfig.segmCleanerMode = 2
|
36 |
|
|
|
37 |
|
|
|
38 |
|
|
from CondCore.DBCommon.CondDBSetup_cfi import *
|
39 |
|
|
|
40 |
|
|
GlobalPositionSource = cms.ESSource("PoolDBESSource",
|
41 |
|
|
CondDBSetup,
|
42 |
|
|
toGet = cms.VPSet(cms.PSet(record = cms.string('GlobalPositionRcd'),
|
43 |
|
|
tag = cms.string('IdealGeometry')
|
44 |
|
|
),
|
45 |
|
|
cms.PSet(record = cms.string('DTAlignmentRcd'),
|
46 |
|
|
tag = cms.string('DTIdealGeometry200_mc')
|
47 |
|
|
),
|
48 |
|
|
cms.PSet(record = cms.string('DTAlignmentErrorRcd'),
|
49 |
|
|
tag = cms.string('DTIdealGeometryErrors200_mc')
|
50 |
|
|
)
|
51 |
|
|
),
|
52 |
|
|
connect = cms.string('frontier://cms_conditions_data/CMS_COND_21X_ALIGNMENT')
|
53 |
|
|
)
|
54 |
|
|
|
55 |
|
|
roMapping = cms.ESSource("PoolDBESSource",
|
56 |
|
|
CondDBSetup,
|
57 |
|
|
timetype = cms.string('runnumber'),
|
58 |
|
|
toGet = cms.VPSet(cms.PSet(record = cms.string('DTReadOutMappingRcd'),
|
59 |
|
|
tag = cms.string('map_CRUZET')
|
60 |
|
|
),
|
61 |
|
|
cms.PSet(record = cms.string('DTT0Rcd'),
|
62 |
|
|
tag = cms.string('t0_CRUZET_hlt')
|
63 |
|
|
),
|
64 |
|
|
cms.PSet(record = cms.string('DTTtrigRcd'),
|
65 |
|
|
tag = cms.string('ttrig_CRAFT_081017_2109_offline')
|
66 |
|
|
),
|
67 |
|
|
cms.PSet(record = cms.string('DTStatusFlagRcd'),
|
68 |
|
|
tag = cms.string('noise_CRUZET_hlt')
|
69 |
|
|
)
|
70 |
|
|
),
|
71 |
|
|
connect = cms.string('frontier://Frontier/CMS_COND_21X_DT'),
|
72 |
|
|
authenticationMethod = cms.untracked.uint32(0)
|
73 |
|
|
)
|
74 |
|
|
|
75 |
|
|
|
76 |
|
|
unpackers = cms.Sequence(dtunpacker + dttfunpacker)
|
77 |
|
|
reco = cms.Sequence(dt1DRecHits + dt4DSegments)
|