test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
diMuonHistograms_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 diMuonHistos = cms.EDAnalyzer("DiMuonHistograms",
6  MuonCollection = cms.InputTag("muons"),
7  VertexLabel = cms.InputTag("offlinePrimaryVertices"),
8  BeamSpotLabel = cms.InputTag("offlineBeamSpot"),
9 
10  etaBin = cms.int32(400),
11  etaBBin = cms.int32(400),
12  etaEBin = cms.int32(200),
13 
14  etaBinLM = cms.int32(0),
15  etaBBinLM = cms.int32(0),
16  etaEBinLM = cms.int32(0),
17 
18  etaBMin = cms.double(0.),
19  etaBMax = cms.double(1.1),
20  etaECMin = cms.double(0.9),
21  etaECMax = cms.double(2.4),
22 
23  LowMassMin = cms.double(2.0),
24  LowMassMax = cms.double(55.0),
25  HighMassMin = cms.double(55.0),
26  HighMassMax = cms.double(155.0)
27  )
28 
29 from Configuration.StandardSequences.Eras import eras
30 eras.pA_2016.toModify(diMuonHistos,
31  etaBin = 350,
32  etaBBin = 350,
33  etaEBin = 350,
34 
35  LowMassMin = 2.0,
36  LowMassMax = 51.0,
37  HighMassMin = 55.0,
38  HighMassMax = 125.0
39  )