CMS 3D CMS Logo

cscRecHitPSet.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 cscRecHitPSet = cms.PSet(
4  cscRecHit = cms.PSet(
5  verbose = cms.int32(0),
6  inputTag = cms.InputTag("csc2DRecHits"),
7  minBX = cms.int32(-1),
8  maxBX = cms.int32(1),
9  ),
10  cscSegment = cms.PSet(
11  verbose = cms.int32(0),
12  inputTag = cms.InputTag("cscSegments"),
13  minBX = cms.int32(-1),
14  maxBX = cms.int32(1),
15  )
16 )