Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 scoutingAlphaTVariables = cms.EDProducer("AlphaTVarProducer",
00004 inputJetTag = cms.InputTag("hltCaloJetIDPassed"),
00005 )
00006
00007 scoutingAlphaTVarAnalyzer = cms.EDAnalyzer("AlphaTVarAnalyzer",
00008 modulePath=cms.untracked.string("AlphaT"),
00009 alphaTVarCollectionName=cms.untracked.InputTag("scoutingAlphaTVariables")
00010 )
00011
00012
00013
00014 scoutingAlphaTDQMSequence = cms.Sequence(
00015 scoutingAlphaTVariables*
00016 scoutingAlphaTVarAnalyzer
00017 )