ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DTDPGAnalysis/python/STAOfflineAnalyzer_cfi.py
Revision: 1.1
Committed: Wed Oct 29 15:02:38 2008 UTC (16 years, 6 months ago) by battilan
Content type: text/x-python
Branch: MAIN
CVS Tags: V00-01-00, V00-00-15, V00-00-14, V00-00-13, V00-00-12, V00-00-11, V00-00-10, V00-00-09, V00-00-08, V00-00-07, V00-00-06, V00-00-05, V00-00-04, V00-00-03, V00-00-02, V00-00-01, V00-00-00
Log Message:
added DT Analysis cf* and included global reco in common

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 STAOfflineAnalyzer = cms.EDAnalyzer("STAOfflineAnalyzer",
4 LCT_RPC = cms.bool(True),
5 DTLocalTriggerLabel = cms.string('dtunpacker'),
6 recHits2DLabel = cms.string('dt2DSegments'),
7 LCT_CSC = cms.bool(True),
8 doSA = cms.bool(True),
9 PropagatorName = cms.string('SteppingHelixPropagator'),
10 LCT_DT = cms.bool(True),
11 recHits4DLabel = cms.string('dt4DSegments'),
12 debug = cms.untracked.bool(False),
13 rootFileName = cms.untracked.string('DTAnalyzerSTA.root'),
14 SALabel = cms.string('cosmicMuonsBarrelOnly'),
15 isMC = cms.bool(True),
16 tTrigModeConfig = cms.untracked.PSet(
17 vPropWire = cms.double(24.4),
18 doTOFCorrection = cms.bool(False),
19 tofCorrType = cms.int32(2),
20 kFactor = cms.double(-1.3),
21 wirePropCorrType = cms.int32(0),
22 doWirePropCorrection = cms.bool(False),
23 doT0Correction = cms.bool(True),
24 debug = cms.untracked.bool(False)
25 ),
26 tTrigMode = cms.untracked.string('DTTTrigSyncFromDB'),
27 recHits1DLabel = cms.string('dt1DRecHits')
28 )