CMS 3D CMS Logo

gmttree_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 gmttree = cms.EDAnalyzer("L1MuGMTTree",
4  GeneratorInputTag = cms.InputTag("none"),
5  SimulationInputTag = cms.InputTag("none"),
6  GTInputTag = cms.InputTag("none"),
7  GTEvmInputTag = cms.InputTag("none"),
8  GMTInputTag = cms.InputTag("l1GmtEmulDigis"),
9 
10  PhysVal = cms.bool(True),
11  OutputFile = cms.untracked.string('gmttree.root')
12 )
13 
14 
15