CMS 3D CMS Logo

hgcalValidationTPG_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
3 from L1Trigger.L1THGCal.egammaIdentification import egamma_identification_drnn_cone
4 
5 hgcalTrigPrimValidation = DQMEDAnalyzer(
6  "HGCalTriggerValidator",
7  TriggerCells = cms.InputTag('hgcalConcentratorProducer:HGCalConcentratorProcessorSelection'),
8  Clusters = cms.InputTag('hgcalBackEndLayer1Producer:HGCalBackendLayer1Processor2DClustering'),
9  Multiclusters = cms.InputTag('hgcalBackEndLayer2Producer:HGCalBackendLayer2Processor3DClustering'),
10  Towers = cms.InputTag('hgcalTowerProducer:HGCalTowerProcessor'),
11  EGIdentification = egamma_identification_drnn_cone.clone()
12  )
13