CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
gemcscSegments_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 gemcscSegments = cms.EDProducer("GEMCSCSegmentProducer",
4  # define input
5  inputObjectsGEM = cms.InputTag("gemRecHits"),
6  inputObjectsCSC = cms.InputTag("cscSegments"),
7  # inputObjectsGEM = cms.InputTag("gemRecHits","","RECO"),
8  # inputObjectsCSC = cms.InputTag("cscSegments","","RECO"),
9  algo_name = cms.string("GEMCSCSegAlgoRR"),
10  algo_psets = cms.PSet(
11  GEMCSCDebug = cms.untracked.bool(True),
12  minHitsPerSegment = cms.uint32(2),
13  preClustering = cms.bool(True),
14  dXclusBoxMax = cms.double(1.),
15  dYclusBoxMax = cms.double(5.),
16  preClusteringUseChaining = cms.bool(True),
17  dPhiChainBoxMax = cms.double(1.0),
18  # dPhiChainBoxMax = cms.double(0.02),
19  # dPhiChainBoxMax = cms.double(0.01),
20  # dPhiChainBoxMax = cms.double(0.005),
21  # dPhiChainBoxMax = cms.double(0.0025),
22  # dPhiChainBoxMax = cms.double(0.001),
23  # dPhiChainBoxMax = cms.double(0.),
24  # dThetaChainBoxMax = cms.double(1.),
25  dThetaChainBoxMax = cms.double(0.02),
26  dRChainBoxMax = cms.double(0.5),
27  maxRecHitsInCluster = cms.int32(6)
28  )
29 )