CMS 3D CMS Logo

FastJetStep_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from RecoHGCal.TICL.TICLSeedingRegions_cff import ticlSeedingGlobal, ticlSeedingGlobalHFNose
4 from RecoHGCal.TICL.trackstersProducer_cfi import trackstersProducer as _trackstersProducer
5 from RecoHGCal.TICL.filteredLayerClustersProducer_cfi import filteredLayerClustersProducer as _filteredLayerClustersProducer
6 from RecoHGCal.TICL.multiClustersFromTrackstersProducer_cfi import multiClustersFromTrackstersProducer as _multiClustersFromTrackstersProducer
7 
8 # CLUSTER FILTERING/MASKING
9 
10 filteredLayerClustersFastJet = _filteredLayerClustersProducer.clone(
11  clusterFilter = "ClusterFilterByAlgoAndSize",
12  min_cluster_size = 3, # inclusive
13  algo_number = 8,
14  iteration_label = "FastJet"
15 )
16 
17 # PATTERN RECOGNITION
18 
19 ticlTrackstersFastJet = _trackstersProducer.clone(
20  filtered_mask = "filteredLayerClustersFastJet:FastJet",
21  seeding_regions = "ticlSeedingGlobal",
22  itername = "FastJet",
23  patternRecognitionBy = "FastJet",
24  pluginPatternRecognitionByFastJet = dict (
25  algo_verbosity = 2
26  )
27 )
28 
29 ticlFastJetStepTask = cms.Task(ticlSeedingGlobal
30  ,filteredLayerClustersFastJet
31  ,ticlTrackstersFastJet)
32