CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DQM/DataScouting/python/alphaTScouting_cff.py

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 #this file contains the sequence for data scouting using the AlphaT analysis
00014 scoutingAlphaTDQMSequence = cms.Sequence(
00015                                         scoutingAlphaTVariables*
00016                                         scoutingAlphaTVarAnalyzer
00017                                         )