CMS 3D CMS Logo

gemcscParams.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # GEM coincidence pad processors
4 copadParamGE11 = cms.PSet(
5  verbosity = cms.uint32(0),
6  maxDeltaPad = cms.uint32(8),
7  maxDeltaRoll = cms.uint32(1),
8  maxDeltaBX = cms.uint32(0)
9 )
10 
11 copadParamGE21 = copadParamGE11.clone()
12 
13 gemcscPSets = cms.PSet(
14  copadParamGE11 = copadParamGE11.clone(),
15  copadParamGE21 = copadParamGE21.clone(),
16 )