CMS 3D CMS Logo

rechitCluster_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 import RecoMuon.MuonRechitClusterProducer.cscRechitClusterProducer_cfi as CSCcluster
4 import RecoMuon.MuonRechitClusterProducer.dtRechitClusterProducer_cfi as DTcluster
5 
6 ca4CSCrechitClusters= CSCcluster.cscRechitClusterProducer.clone(
7  recHitLabel = "csc2DRecHits",
8  nRechitMin = 50,
9  rParam = 0.4,
10  nStationThres = 10,
11 )
12 ca4DTrechitClusters = DTcluster.dtRechitClusterProducer.clone(
13  recHitLabel = "dt1DRecHits",
14  nRechitMin = 50,
15  rParam = 0.4,
16  nStationThres = 10,
17 )
18