1 |
battilan |
1.1 |
import FWCore.ParameterSet.Config as cms
|
2 |
|
|
|
3 |
|
|
DTOfflineAnalyzer = cms.EDAnalyzer("DTOfflineAnalyzer",
|
4 |
|
|
LCT_DT = cms.bool(True),
|
5 |
|
|
recHits2DLabel = cms.string('dt2DSegments'),
|
6 |
|
|
rootFileName = cms.untracked.string('DTAnalyzerTest.root'),
|
7 |
|
|
SALabel = cms.string('cosmicMuonsBarrelOnly'),
|
8 |
|
|
tTrigModeConfig = cms.untracked.PSet(
|
9 |
|
|
vPropWire = cms.double(24.4),
|
10 |
|
|
doTOFCorrection = cms.bool(False),
|
11 |
marycruz |
1.3 |
##tofCorrType = cms.int32(2), ## old
|
12 |
battilan |
1.1 |
tofCorrType = cms.int32(2),
|
13 |
marycruz |
1.3 |
##kFactor = cms.double(-1.3),
|
14 |
battilan |
1.1 |
wirePropCorrType = cms.int32(0),
|
15 |
|
|
doWirePropCorrection = cms.bool(False),
|
16 |
|
|
doT0Correction = cms.bool(True),
|
17 |
battilan |
1.2 |
tTrigLabel = cms.string(''),
|
18 |
battilan |
1.1 |
debug = cms.untracked.bool(False)
|
19 |
|
|
),
|
20 |
|
|
tTrigMode = cms.untracked.string('DTTTrigSyncFromDB'),
|
21 |
|
|
doHits = cms.bool(True),
|
22 |
|
|
PropagatorName = cms.string('SteppingHelixPropagator'),
|
23 |
|
|
recHits4DLabel = cms.string('dt4DSegments'),
|
24 |
marycruz |
1.3 |
doWheel0 = cms.bool(True),
|
25 |
battilan |
1.1 |
doWheel1 = cms.bool(True),
|
26 |
|
|
doWheel2 = cms.bool(True),
|
27 |
marycruz |
1.3 |
doWheelm2 = cms.bool(True),
|
28 |
|
|
doWheelm1 = cms.bool(True),
|
29 |
battilan |
1.1 |
doTrig = cms.bool(True),
|
30 |
|
|
doSegs = cms.bool(True),
|
31 |
|
|
doSA = cms.bool(True),
|
32 |
|
|
doTBox = cms.bool(False),
|
33 |
marycruz |
1.3 |
doTBoxWhm2 = cms.bool(False),
|
34 |
|
|
doTBoxWhm1 = cms.bool(False),
|
35 |
|
|
doTBoxWh0 = cms.bool(False),
|
36 |
|
|
doTBoxWh1 = cms.bool(False),
|
37 |
|
|
doTBoxWh2 = cms.bool(False),
|
38 |
|
|
doTBoxSector = cms.int32(0),
|
39 |
|
|
doTBoxChamber= cms.int32(0),
|
40 |
|
|
doTBoxSuperLayer= cms.int32(0),
|
41 |
|
|
doTBoxLayer = cms.int32(0),
|
42 |
battilan |
1.1 |
isMC = cms.bool(True),
|
43 |
|
|
# bool isMC = false
|
44 |
|
|
LCT_RPC = cms.bool(True),
|
45 |
|
|
DTLocalTriggerLabel = cms.string('dtunpacker'),
|
46 |
|
|
LCT_CSC = cms.bool(True),
|
47 |
|
|
debug = cms.untracked.bool(False),
|
48 |
|
|
recHits1DLabel = cms.string('dt1DRecHits')
|
49 |
|
|
)
|