ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DTDPGAnalysis/python/DTTTreGenerator_cfi.py
Revision: 1.3
Committed: Wed Mar 23 16:24:41 2011 UTC (14 years, 1 month ago) by pellicci
Content type: text/x-python
Branch: MAIN
CVS Tags: V00-01-00
Changes since 1.2: +1 -0 lines
Log Message:
small changes

File Contents

# User Rev Content
1 pellicci 1.1 import FWCore.ParameterSet.Config as cms
2    
3 pellicci 1.2 myDTNtuple = cms.EDAnalyzer('TTreeGenerator',
4 pellicci 1.1 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 pellicci 1.3 scalersResults = cms.InputTag("scalersRawToDigi"),
25 pellicci 1.1 runOnRaw = cms.bool(True),
26     runOnSimulation = cms.bool(False)
27     )