CMS 3D CMS Logo

alphaTScouting_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 scoutingAlphaTVariables = cms.EDProducer("AlphaTVarProducer",
4  inputJetTag = cms.InputTag("hltCaloJetIDPassed"),
5 )
6 
7 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
8 scoutingAlphaTVarAnalyzer = DQMEDAnalyzer('AlphaTVarAnalyzer',
9  modulePath=cms.untracked.string("AlphaT"),
10  alphaTVarCollectionName=cms.untracked.InputTag("scoutingAlphaTVariables")
11  )
12 
13 
14 #this file contains the sequence for data scouting using the AlphaT analysis
15 scoutingAlphaTDQMSequence = cms.Sequence(
16  scoutingAlphaTVariables*
17  scoutingAlphaTVarAnalyzer
18  )