ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DTDPGAnalysis/python/DTEffOfflineAnalyzer_RECO_cfi.py
Revision: 1.1
Committed: Wed Dec 15 11:56:50 2010 UTC (14 years, 4 months ago) by battilan
Content type: text/x-python
Branch: MAIN
CVS Tags: V00-01-00, V00-00-15, HEAD
Log Message:
PromptOffline back to CVS First Version from Mary-Cruz

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 DTEffOfflineAnalyzer = cms.EDAnalyzer("DTEffOfflineAnalyzer",
4 ##LCT_RPC = cms.bool(True),
5 ##DTLocalTriggerLabel = cms.string('dtunpacker'),
6 DTLocalTriggerLabel = cms.string('muonDTDigis'), ## RECO
7 recHits2DLabel = cms.string('dt2DSegments'),
8 LCT_CSC = cms.bool(True),
9 minHitsSegment = cms.int32(5),
10 minCloseDist = cms.double(20.0),
11 LCT_DT = cms.bool(True),
12 recHits4DLabel = cms.string('dt4DSegments'),
13 debug = cms.untracked.bool(False),
14 rootFileName = cms.untracked.string('DTEffAnalyzer.root'),
15 isMC = cms.bool(True),
16 recHits1DLabel = cms.string('dt1DRecHits'),
17 minChi2NormSegment = cms.double(20.0)
18 )