CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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  TriggerResults = cms.InputTag("TriggerResults::HLT")
21  #HltPaths = cms.vstring('HLT_Ele10_SW_L1R','HLT_Ele15_SW_L1R','HLT_Ele15_SW_EleId_L1R','HLT_Ele15_SW_LooseTrackIso_L1R','HLT_Ele15_SC15_SW_LooseTrackIso_L1R','HLT_Ele15_SC15_SW_EleId_L1R','HLT_Ele20_SW_L1R','HLT_Ele20_SC15_SW_L1R','HLT_Ele25_SW_L1R','HLT_Ele25_SW_EleId_LooseTrackIso_L1R','HLT_DoubleEle10_SW_L1R')
22 
23 )
24 
25 from Configuration.Eras.Modifier_phase2_hgcal_cff import phase2_hgcal
26 phase2_hgcal.toModify( dqmElectronGeneralAnalysis, ElectronCollection = cms.InputTag("ecalDrivenGsfElectrons") )