Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:06

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 import RecoMuon.MuonRechitClusterProducer.cscRechitClusterProducer_cfi as CSCcluster 
0004 import RecoMuon.MuonRechitClusterProducer.dtRechitClusterProducer_cfi as DTcluster
0005 
0006 ca4CSCrechitClusters= CSCcluster.cscRechitClusterProducer.clone(
0007     recHitLabel = "csc2DRecHits",
0008     nRechitMin  = 50,
0009     rParam      = 0.4,
0010     nStationThres = 10, 
0011 ) 
0012 ca4DTrechitClusters = DTcluster.dtRechitClusterProducer.clone(
0013     recHitLabel = "dt1DRecHits",
0014     nRechitMin  = 50,
0015     rParam      = 0.4,
0016     nStationThres = 10, 
0017 ) 
0018