File indexing completed on 2023-03-17 10:45:06
0001 import FWCore.ParameterSet.Config as cms
0002
0003 dtTriggerPhase2PrimitiveDigis = cms.EDProducer('DTTrigPhase2Prod',
0004 digiTag = cms.InputTag('CalibratedDigis'),
0005 trigger_with_sl = cms.int32(4),
0006 timeTolerance = cms.int32(999999),
0007 tanPhiTh = cms.double(1),
0008 tanPhiThw2max = cms.double(1.3),
0009 tanPhiThw2min = cms.double(0.5),
0010 tanPhiThw1max = cms.double(0.9),
0011 tanPhiThw1min = cms.double(0.2),
0012 tanPhiThw0 = cms.double(0.5),
0013 chi2Th = cms.double(0.01),
0014 chi2corTh = cms.double(0.1),
0015 useBX_correlation = cms.bool(False),
0016 dT0_correlate_TP = cms.double(25),
0017 dBX_correlate_TP = cms.int32(0),
0018 dTanPsi_correlate_TP = cms.double(99999),
0019 clean_chi2_correlation = cms.bool(True),
0020 allow_confirmation = cms.bool(True),
0021 minx_match_2digis = cms.double(1),
0022 scenario = cms.int32(0),
0023 df_extended = cms.int32(0),
0024 max_primitives = cms.int32(999),
0025 ttrig_filename = cms.FileInPath('L1Trigger/DTTriggerPhase2/data/wire_rawId_ttrig.txt'),
0026 z_filename = cms.FileInPath('L1Trigger/DTTriggerPhase2/data/wire_rawId_z.txt'),
0027 shift_filename = cms.FileInPath('L1Trigger/DTTriggerPhase2/data/wire_rawId_x.txt'),
0028 shift_theta_filename = cms.FileInPath('L1Trigger/DTTriggerPhase2/data/theta_shift.txt'),
0029 global_coords_filename = cms.FileInPath('L1Trigger/DTTriggerPhase2/data/global_coord_perp_x_phi0.txt'),
0030 algo = cms.int32(0),
0031 minHits4Fit = cms.int32(3),
0032 splitPathPerSL = cms.bool(True),
0033 debug = cms.untracked.bool(False),
0034 dump = cms.untracked.bool(False),
0035 rpcRecHits = cms.InputTag('rpcRecHits'),
0036 useRPC = cms.bool(False),
0037 bx_window = cms.int32(1),
0038 phi_window = cms.double(50),
0039 max_quality_to_overwrite_t0 = cms.int32(9),
0040 storeAllRPCHits = cms.bool(False),
0041 activateBuffer = cms.bool(False),
0042 superCelltimewidth = cms.double(400),
0043 superCellspacewidth = cms.int32(20),
0044 HoughGrouping = cms.PSet(
0045 debug = cms.untracked.bool(False),
0046 angletan = cms.double(0.3),
0047 anglebinwidth = cms.double(1),
0048 posbinwidth = cms.double(2.1),
0049 maxdeltaAngDeg = cms.double(10),
0050 maxdeltaPos = cms.double(10),
0051 UpperNumber = cms.int32(6),
0052 LowerNumber = cms.int32(4),
0053 MaxDistanceToWire = cms.double(0.03),
0054 minNLayerHits = cms.int32(6),
0055 minSingleSLHitsMax = cms.int32(3),
0056 minSingleSLHitsMin = cms.int32(3),
0057 allowUncorrelatedPatterns = cms.bool(True),
0058 minUncorrelatedHits = cms.int32(3)
0059 ),
0060 PseudoBayesPattern = cms.PSet(
0061 pattern_filename = cms.FileInPath('L1Trigger/DTTriggerPhase2/data/PseudoBayesPatterns_uncorrelated_v0.root'),
0062 debug = cms.untracked.bool(False),
0063 minNLayerHits = cms.int32(3),
0064 minSingleSLHitsMax = cms.int32(3),
0065 minSingleSLHitsMin = cms.int32(0),
0066 allowedVariance = cms.int32(1),
0067 allowDuplicates = cms.bool(False),
0068 setLateralities = cms.bool(True),
0069 allowUncorrelatedPatterns = cms.bool(True),
0070 minUncorrelatedHits = cms.int32(3),
0071 saveOnPlace = cms.bool(True),
0072 maxPathsPerMatch = cms.int32(256)
0073 ),
0074 mightGet = cms.optional.untracked.vstring
0075 )