CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CleanRoadSearchClouds_cfi.py
Go to the documentation of this file.
2 
3 #
4 # standard parameter-set entries for module
5 #
6 # RoadSeachCloudCleaner
7 #
8 # located in
9 #
10 # RecoTracker/RoadSearchCloudCleaner
11 #
12 #
13 # sequence dependency:
14 #
15 # - RawRoadSearchClouds: include "RecoTracker/RoadSearchCloudMaker/data/RoadSearchCloudMaker.cfi
16 #
17 #
18 # service dependency:
19 #
20 #
21 # function:
22 #
23 # merges RoadSearchClouds according to hit overlap
24 cleanRoadSearchClouds = cms.EDProducer("RoadSearchCloudCleaner",
25  # maximal number of RecHits per RoadSearchCloud
26  MaxRecHitsInCloud = cms.int32(100),
27  # minimal fraction of hits which has to lap between RawRoadSearchClouds to be merged
28  MergingFraction = cms.double(0.7),
29  # module label of RoadSearchCloudMaker
30  RawCloudProducer = cms.string('rawRoadSearchClouds')
31 )
32 
33