CMS 3D CMS Logo

electronGeneralAnalyzer_cfi.py
Go to the documentation of this file.
1 
2 import FWCore.ParameterSet.Config as cms
3 
4 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
5 dqmElectronGeneralAnalysis = DQMEDAnalyzer('ElectronGeneralAnalyzer',
6 
7  Verbosity = cms.untracked.int32(0),
8  FinalStep = cms.string("AtJobEnd"),
9  InputFile = cms.string(""),
10  OutputFile = cms.string(""),
11  InputFolderName = cms.string("Egamma/Electrons/General"),
12  OutputFolderName = cms.string("Egamma/Electrons/General"),
13 
14  ElectronCollection = cms.InputTag("gedGsfElectrons"),
15  MatchingObjectCollection = cms.InputTag("mergedSuperClusters"),
16  TrackCollection = cms.InputTag("generalTracks"),
17  GsfTrackCollection = cms.InputTag("electronGsfTracks"),
18  VertexCollection = cms.InputTag("offlinePrimaryVertices"),
19  BeamSpot = cms.InputTag("offlineBeamSpot"),
20 )
21 
22 from Configuration.Eras.Modifier_phase2_hgcal_cff import phase2_hgcal
23 phase2_hgcal.toModify( dqmElectronGeneralAnalysis, ElectronCollection = cms.InputTag("ecalDrivenGsfElectrons") )