File indexing completed on 2024-04-06 12:28:54
0001 from RecoTracker.TkSeedGenerator.trackerClusterCheckDefault_cfi import trackerClusterCheckDefault as _trackerClusterCheckDefault
0002 trackerClusterCheck = _trackerClusterCheckDefault.clone()
0003
0004 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
0005 from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker
0006
0007 phase1Pixel.toModify(trackerClusterCheck, doClusterCheck=False)
0008 phase2_tracker.toModify(trackerClusterCheck, doClusterCheck=False)
0009
0010 from Configuration.Eras.Modifier_peripheralPbPb_cff import peripheralPbPb
0011 peripheralPbPb.toModify(trackerClusterCheck,
0012 doClusterCheck=True,
0013 cut = "strip < 400000 && pixel < 40000 && (strip < 60000 + 7.0*pixel) && (pixel < 8000 + 0.14*strip)"
0014 )
0015 from Configuration.Eras.Modifier_pp_on_XeXe_2017_cff import pp_on_XeXe_2017
0016 pp_on_XeXe_2017.toModify(trackerClusterCheck,
0017 doClusterCheck=True,
0018 cut = "strip < 1000000 && pixel < 100000 && (strip < 50000 + 10*pixel) && (pixel < 5000 + strip/2.)",
0019 MaxNumberOfPixelClusters = 100000
0020 )
0021
0022 from Configuration.ProcessModifiers.pp_on_AA_cff import pp_on_AA
0023 pp_on_AA.toModify(trackerClusterCheck,
0024 doClusterCheck=True,
0025 cut = "strip < 1000000 && pixel < 150000 && (strip < 50000 + 10*pixel) && (pixel < 5000 + strip/2.)",
0026 MaxNumberOfPixelClusters = 150000,
0027 MaxNumberOfStripClusters = 500000
0028 )
0029
0030 from Configuration.ProcessModifiers.egamma_lowPt_exclusive_cff import egamma_lowPt_exclusive
0031 egamma_lowPt_exclusive.toModify(trackerClusterCheck,
0032 doClusterCheck=True,
0033 cut = "strip < 1000 && pixel < 300 ",
0034 MaxNumberOfPixelClusters = 300,
0035 MaxNumberOfStripClusters = 1000
0036 )
0037
0038 from Configuration.Eras.Modifier_run3_upc_cff import run3_upc
0039 run3_upc.toModify(trackerClusterCheck,
0040 doClusterCheck=True,
0041 cut = "strip < 30000 && pixel < 10000",
0042 MaxNumberOfPixelClusters = 10000,
0043 MaxNumberOfStripClusters = 30000
0044 )