Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-06-13 03:24:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoHGCal.TICL.TICLSeedingRegions_cff import ticlSeedingGlobal, ticlSeedingGlobalHFNose
0004 from RecoHGCal.TICL.trackstersProducer_cfi import trackstersProducer as _trackstersProducer
0005 from RecoHGCal.TICL.filteredLayerClustersProducer_cfi import filteredLayerClustersProducer as _filteredLayerClustersProducer
0006 
0007 # CLUSTER FILTERING/MASKING
0008 
0009 filteredLayerClustersFastJet = _filteredLayerClustersProducer.clone(
0010     clusterFilter = "ClusterFilterByAlgoAndSize",
0011     min_cluster_size = 3, # inclusive
0012     iteration_label = "FastJet"
0013 )
0014 
0015 # PATTERN RECOGNITION
0016 
0017 ticlTrackstersFastJet = _trackstersProducer.clone(
0018     filtered_mask = "filteredLayerClustersFastJet:FastJet",
0019     seeding_regions = "ticlSeedingGlobal",
0020     itername = "FastJet",
0021     patternRecognitionBy = "FastJet",
0022     pluginPatternRecognitionByFastJet = dict (
0023         algo_verbosity = 2
0024     )
0025 )
0026 
0027 from Configuration.ProcessModifiers.ticl_v5_cff import ticl_v5
0028 ticl_v5.toModify(ticlTrackstersFastJet.pluginPatternRecognitionByFastJet, computeLocalTime = cms.bool(True))
0029 
0030 
0031 ticlFastJetStepTask = cms.Task(ticlSeedingGlobal
0032     ,filteredLayerClustersFastJet
0033     ,ticlTrackstersFastJet)
0034