CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
gemEfficiencyAnalyzerCosmics_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 RecoMuon.TrackingTools.MuonServiceProxy_cff import MuonServiceProxy
4 from DQMOffline.Muon.gemEfficiencyAnalyzerCosmicsDefault_cfi import gemEfficiencyAnalyzerCosmicsDefault as _gemEfficiencyAnalyzerCosmicsDefault
6 
7 gemEfficiencyAnalyzerCosmics = _gemEfficiencyAnalyzerCosmicsDefault.clone(
8  ServiceParameters = MuonServiceProxy.ServiceParameters.clone(),
9  muonTag = 'muons',
10  name = 'Cosmic 2-Leg STA Muon',
11  folder = 'GEM/Efficiency/type1',
12 )
13 
14 gemEfficiencyAnalyzerCosmicsOneLeg = _gemEfficiencyAnalyzerCosmicsDefault.clone(
15  ServiceParameters = MuonServiceProxy.ServiceParameters.clone(),
16  muonTag = 'muons1Leg',
17  name = 'Cosmic 1-Leg STA Muon',
18  folder = 'GEM/Efficiency/type2',
19 )
20 
21 from Configuration.Eras.Modifier_phase2_GEM_cff import phase2_GEM
22 phase2_GEM.toModify(gemEfficiencyAnalyzerCosmics,
23  etaNbins = 15,
24  etaUp = 3.0,
25  monitorGE21 = True,
26  monitorGE0 = True,
27 )
28 
29 phase2_GEM.toModify(gemEfficiencyAnalyzerCosmicsOneLeg,
30  etaNbins = 15,
31  etaUp = 3.0,
32  monitorGE21 = True,
33  monitorGE0 = True,
34 )