Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 gmttree = cms.EDAnalyzer("L1MuGMTTree",
0004     GeneratorInputTag = cms.InputTag("none"),
0005     SimulationInputTag = cms.InputTag("none"),
0006     GTInputTag = cms.InputTag("none"),
0007     GTEvmInputTag = cms.InputTag("none"),
0008     GMTInputTag = cms.InputTag("l1GmtEmulDigis"),
0009 
0010     PhysVal = cms.bool(True),
0011     OutputFile = cms.untracked.string('gmttree.root')
0012 )
0013 
0014 
0015