00001 import FWCore.ParameterSet.Config as cms 00002 00003 # 00004 # standard parameter-set entries for module 00005 # 00006 # RoadSeachCloudCleaner 00007 # 00008 # located in 00009 # 00010 # RecoTracker/RoadSearchCloudCleaner 00011 # 00012 # 00013 # sequence dependency: 00014 # 00015 # - RawRoadSearchClouds: include "RecoTracker/RoadSearchCloudMaker/data/RoadSearchCloudMaker.cfi 00016 # 00017 # 00018 # service dependency: 00019 # 00020 # 00021 # function: 00022 # 00023 # merges RoadSearchClouds according to hit overlap 00024 cleanRoadSearchClouds = cms.EDProducer("RoadSearchCloudCleaner", 00025 # maximal number of RecHits per RoadSearchCloud 00026 MaxRecHitsInCloud = cms.int32(100), 00027 # minimal fraction of hits which has to lap between RawRoadSearchClouds to be merged 00028 MergingFraction = cms.double(0.7), 00029 # module label of RoadSearchCloudMaker 00030 RawCloudProducer = cms.string('rawRoadSearchClouds') 00031 ) 00032 00033