CMS 3D CMS Logo

Tracklet_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
3 
4 TTTracksFromTrackletEmulation = cms.EDProducer("L1FPGATrackProducer",
5  TTStubSource = cms.InputTag("TTStubsFromPhase2TrackerDigis","StubAccepted"),
6  readMoreMcTruth = cms.bool(True),
7  MCTruthClusterInputTag = cms.InputTag("TTClusterAssociatorFromPixelDigis", "ClusterAccepted"),
8  MCTruthStubInputTag = cms.InputTag("TTStubAssociatorFromPixelDigis", "StubAccepted"),
9  TrackingParticleInputTag = cms.InputTag("mix", "MergedTrackTruth"),
10  TrackingVertexInputTag = cms.InputTag("mix", "MergedTrackTruth"),
11  BeamSpotSource = cms.InputTag("offlineBeamSpot"),
12  asciiFileName = cms.untracked.string(""),
13  # (if running on CRAB use "../../fitpattern.txt" etc instead)
14  Extended=cms.bool(False),
15  Hnpar=cms.uint32(4),
16  fitPatternFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/fitpattern.txt'),
17  memoryModulesFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/memorymodules_hourglass.dat'),
18  processingModulesFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/processingmodules_hourglass.dat'),
19  wiresFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/wires_hourglass.dat'),
20  DTCLinkFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/calcNumDTCLinks.txt'),
21  DTCLinkLayerDiskFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/dtclinklayerdisk.dat'),
22  moduleCablingFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/modules_T5v3_27SP_nonant_tracklet.dat'),
23  # Quality Flag and Quality params
24  TrackQuality =cms.bool(True),
25  TrackQualityPSet = cms.PSet(TrackQualityParams)
26  )
27 
28 TTTracksFromExtendedTrackletEmulation = TTTracksFromTrackletEmulation.clone(
29  Extended=cms.bool(True),
30  Hnpar=cms.uint32(5),
31  memoryModulesFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/memorymodules_hourglassExtended.dat'),
32  processingModulesFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/processingmodules_hourglassExtended.dat'),
33  wiresFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/wires_hourglassExtended.dat'),
34  # specifying where the TrackletEngineDisplaced(TED)/TripletEngine(TRE) tables are located
35  tableTEDFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/table_TED/table_TED_D1PHIA1_D2PHIA1.txt'),
36  tableTREFile = cms.FileInPath('L1Trigger/TrackFindingTracklet/data/table_TRE/table_TRE_D1AD2A_1.txt'),
37  # Quality Flag and Quality params
38  TrackQuality =cms.bool(False),
39  TrackQualityPSet = cms.PSet(TrackQualityParams)
40  )
41 
TrackQualityParams_cfi