ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DTDPGAnalysis/python/DTEffOfflineAnalyzer_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, HEAD
Log Message:
added DT Analysis cf* and included global reco in common

File Contents

# User Rev Content
1 battilan 1.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     recHits2DLabel = cms.string('dt2DSegments'),
7     LCT_CSC = cms.bool(True),
8     minHitsSegment = cms.int32(5),
9     minCloseDist = cms.double(20.0),
10     LCT_DT = cms.bool(True),
11     recHits4DLabel = cms.string('dt4DSegments'),
12     debug = cms.untracked.bool(False),
13     rootFileName = cms.untracked.string('DTEffAnalyzer.root'),
14     isMC = cms.bool(True),
15     recHits1DLabel = cms.string('dt1DRecHits'),
16     minChi2NormSegment = cms.double(20.0)
17     )