Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:50

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 
0004 GEMValidationCommonParameters = cms.PSet(
0005     detailPlot = cms.bool(False),
0006     pidList = cms.untracked.vint32(13, -13,    # muons
0007                                    11, -11,    # electrons
0008                                    22,         # gamma
0009                                    2112, 2212, # neutron, proton
0010                                    211, -211,  # charged pions
0011                                    321, -321), # charged kaons
0012     # ZR occupancy plots
0013     ZROccRange = cms.untracked.vdouble(
0014     #   xlow, xup, ylow, yup
0015         525, 555, 66, 160, # station 0
0016         564, 574, 110, 290, # station 1
0017         792, 802, 120, 390), # station 2
0018     ZROccNumBins = cms.untracked.vint32(
0019     # nbinsx, nbinsy
0020         30, 100, # station0
0021         200, 150, # station1
0022         200, 250), # station2
0023     XYOccNumBins = cms.untracked.int32(720),
0024     EtaOccRange = cms.untracked.vdouble(
0025         1.95, 2.85, # station 0
0026         1.55, 2.15, # station 1
0027         1.55, 2.45), # station 2
0028 )