ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DTDPGAnalysis/python/DTTTreGenerator_cfi.py
Revision: 1.1
Committed: Mon Nov 15 14:01:14 2010 UTC (14 years, 5 months ago) by pellicci
Content type: text/x-python
Branch: MAIN
Log Message:
adding ntuple cfi

File Contents

# User Rev Content
1 pellicci 1.1 import FWCore.ParameterSet.Config as cms
2    
3     process.myDTNtuple = cms.EDAnalyzer('TTreeGenerator',
4     outputFile =cms.string("DTTree.root"),
5     dtDigiLabel = cms.InputTag("muonDTDigis"),
6     dtSegmentLabel = cms.InputTag("dt4DSegments"),
7     cscSegmentLabel = cms.InputTag("cscSegments"),
8     dtTrigDCCLabel = cms.InputTag("dttfunpacker"),
9     dtTrigDDULabel = cms.InputTag("dtunpacker"),
10     staMuLabel = cms.InputTag("muons"),
11     gmtLabel = cms.InputTag("gtDigis"),
12     gtLabel = cms.InputTag("gtDigis"),
13     dtDigiSize = cms.int32(300),
14     dtSegmentSize = cms.int32(50),
15     cscSegmentSize = cms.int32(50),
16     dtTrigDCCSize = cms.int32(50),
17     dtTrigDCCThSize = cms.int32(50),
18     dtTrigDDUSize = cms.int32(50),
19     gmtSize = cms.int32(50),
20     STAMuSize = cms.int32(20),
21     PrimaryVertexTag = cms.InputTag("offlinePrimaryVertices"),
22     TriggerTag = cms.InputTag("TriggerResults::HLT"),
23     beamSpotTag = cms.InputTag("offlineBeamSpot"),
24     runOnRaw = cms.bool(True),
25     runOnSimulation = cms.bool(False)
26     )