ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DTDPGAnalysis/python/DTTTreGenerator_cfi.py
Revision: 1.5
Committed: Mon May 28 14:29:07 2012 UTC (12 years, 11 months ago) by guiducci
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +2 -0 lines
Log Message:
RPC rec hit variables added

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 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 dtTrigSimDCCLabel = cms.InputTag("simDtTriggerPrimitiveDigis"),
10 dtTrigDDULabel = cms.InputTag("dtunpacker"),
11 staMuLabel = cms.InputTag("muons"),
12 gmtLabel = cms.InputTag("gtDigis"),
13 gtLabel = cms.InputTag("gtDigis"),
14 rpcRecHitLabel = cms.InputTag("rpcRecHits"),
15 dtDigiSize = cms.int32(300),
16 dtSegmentSize = cms.int32(50),
17 cscSegmentSize = cms.int32(50),
18 dtTrigDCCSize = cms.int32(50),
19 dtTrigDCCThSize = cms.int32(50),
20 dtTrigSimDCCSize = cms.int32(50),
21 dtTrigSimDCCThSize = cms.int32(50),
22 dtTrigDDUSize = cms.int32(50),
23 gmtSize = cms.int32(50),
24 STAMuSize = cms.int32(20),
25 rpcRecHitSize = cms.int32(300),
26 PrimaryVertexTag = cms.InputTag("offlinePrimaryVertices"),
27 TriggerTag = cms.InputTag("TriggerResults::HLT"),
28 beamSpotTag = cms.InputTag("offlineBeamSpot"),
29 scalersResults = cms.InputTag("scalersRawToDigi"),
30 runOnRaw = cms.bool(True),
31 runOnSimulation = cms.bool(False)
32 )