CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
MuonGEMCommonParameters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 GEMValidationCommonParameters = cms.PSet(
5  detailPlot = cms.bool(False),
6  pidList = cms.untracked.vint32(13, -13, # muons
7  11, -11, # electrons
8  22, # gamma
9  2112, 2212, # neutron, proton
10  211, -211, # charged pions
11  321, -321), # charged kaons
12  # ZR occupancy plots
13  ZROccRange = cms.untracked.vdouble(
14  # xlow, xup, ylow, yup
15  525, 555, 66, 160, # station 0
16  564, 574, 110, 290, # station 1
17  792, 802, 120, 390), # station 2
18  ZROccNumBins = cms.untracked.vint32(
19  # nbinsx, nbinsy
20  30, 100, # station0
21  200, 150, # station1
22  200, 250), # station2
23  XYOccNumBins = cms.untracked.int32(720),
24  EtaOccRange = cms.untracked.vdouble(
25  1.95, 2.85, # station 0
26  1.55, 2.15, # station 1
27  1.55, 2.45), # station 2
28 )