File indexing completed on 2022-10-14 01:44:15
0001
0002
0003
0004
0005 import FWCore.ParameterSet.Config as cms
0006 import FWCore.Utilities.FileUtils as FileUtils
0007 process = cms.Process("L1HybridTrack")
0008
0009
0010
0011
0012
0013 process.load('Configuration.StandardSequences.Services_cff')
0014 process.load('FWCore.MessageService.MessageLogger_cfi')
0015 process.load('Configuration.EventContent.EventContent_cff')
0016 process.load('Configuration.StandardSequences.MagneticField_cff')
0017
0018 process.load('Configuration.Geometry.GeometryExtended2026D76Reco_cff')
0019 process.load('Configuration.Geometry.GeometryExtended2026D76_cff')
0020
0021 process.load('Configuration.StandardSequences.EndOfProcess_cff')
0022 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0023
0024 from Configuration.AlCa.GlobalTag import GlobalTag
0025 process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:upgradePLS3', '')
0026
0027 process.load('L1Trigger.TrackTrigger.TrackTrigger_cff')
0028
0029
0030
0031
0032
0033 process.maxEvents = cms.untracked.PSet(input = cms.untracked.int32(10))
0034 Source_Files = cms.untracked.vstring(
0035 "/store/relval/CMSSW_11_3_0_pre6/RelValTTbar_14TeV/GEN-SIM-DIGI-RAW/PU_113X_mcRun4_realistic_v6_2026D76PU200-v1/00000/00026541-6200-4eed-b6f8-d3a1fd720e9c.root"
0036 )
0037 process.source = cms.Source("PoolSource", fileNames = Source_Files)
0038
0039
0040
0041
0042
0043 process.load( 'L1Trigger.TrackerDTC.ProducerED_cff' )
0044 process.dtc = cms.Path( process.TrackerDTCProducer )
0045
0046
0047
0048
0049
0050 process.load("L1Trigger.TrackFindingTracklet.L1HybridEmulationTracks_cff")
0051
0052
0053 process.TTTracksEmulation = cms.Path(process.L1THybridTracks)
0054 process.TTTracksEmulationWithTruth = cms.Path(process.L1THybridTracksWithAssociators)
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064
0065
0066
0067
0068 process.out = cms.OutputModule( "PoolOutputModule",
0069 fileName = cms.untracked.string("L1Tracks.root"),
0070 fastCloning = cms.untracked.bool( False ),
0071 outputCommands = cms.untracked.vstring('drop *',
0072 'keep *_TTTrack*_Level1TTTracks_*',
0073 )
0074 )
0075 process.FEVToutput_step = cms.EndPath(process.out)
0076
0077
0078
0079
0080
0081 process.schedule = cms.Schedule(process.dtc,process.TTTracksEmulationWithTruth,process.FEVToutput_step)