CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 scoutingAlphaTVarAnalyzer = cms.EDAnalyzer("AlphaTVarAnalyzer",
8  modulePath=cms.untracked.string("AlphaT"),
9  alphaTVarCollectionName=cms.untracked.InputTag("scoutingAlphaTVariables")
10  )
11 
12 
13 #this file contains the sequence for data scouting using the AlphaT analysis
14 scoutingAlphaTDQMSequence = cms.Sequence(
15  scoutingAlphaTVariables*
16  scoutingAlphaTVarAnalyzer
17  )