CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
electronGeneralAnalyzer_cfi.py
Go to the documentation of this file.
1 
2 import FWCore.ParameterSet.Config as cms
3 
4 dqmElectronGeneralAnalysis = cms.EDAnalyzer("ElectronGeneralAnalyzer",
5 
6  Verbosity = cms.untracked.int32(0),
7  FinalStep = cms.string("AtRunEnd"),
8  InputFile = cms.string(""),
9  OutputFile = cms.string(""),
10  InputFolderName = cms.string("Egamma/Electrons/General"),
11  OutputFolderName = cms.string("Egamma/Electrons/General"),
12 
13  ElectronCollection = cms.InputTag("gsfElectrons"),
14  MatchingObjectCollection = cms.InputTag("mergedSuperClusters"),
15  TrackCollection = cms.InputTag("generalTracks"),
16  GsfTrackCollection = cms.InputTag("electronGsfTracks"),
17  VertexCollection = cms.InputTag("offlinePrimaryVertices"),
18  BeamSpot = cms.InputTag("offlineBeamSpot"),
19  TriggerResults = cms.InputTag("TriggerResults::HLT")
20  #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')
21 
22 )
23 
24