File indexing completed on 2024-07-16 02:43:05
0001
0002
0003
0004
0005
0006 import FWCore.ParameterSet.Config as cms
0007
0008 from Configuration.Eras.Era_Phase2C17I13M9_cff import Phase2C17I13M9
0009
0010 process = cms.Process('PHASE2MUONL1T',Phase2C17I13M9)
0011
0012
0013 process.load('Configuration.StandardSequences.Services_cff')
0014 process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
0015 process.load('FWCore.MessageService.MessageLogger_cfi')
0016 process.load('Configuration.EventContent.EventContent_cff')
0017 process.load('SimGeneral.MixingModule.mixNoPU_cfi')
0018 process.load('Configuration.Geometry.GeometryExtended2026D88Reco_cff')
0019 process.load('Configuration.StandardSequences.MagneticField_cff')
0020 process.load('Configuration.StandardSequences.RawToDigi_cff')
0021 process.load('Configuration.StandardSequences.L1TrackTrigger_cff')
0022 process.load('Configuration.StandardSequences.SimL1Emulator_cff')
0023 process.load('Configuration.StandardSequences.EndOfProcess_cff')
0024 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0025
0026 process.maxEvents = cms.untracked.PSet(
0027 input = cms.untracked.int32(-1),
0028 output = cms.optional.untracked.allowed(cms.int32,cms.PSet)
0029 )
0030
0031
0032 process.source = cms.Source("PoolSource",
0033 fileNames = cms.untracked.vstring(
0034 "file:/uscms_data/d2/lpctrig/benwu/GMTEmulator/TT2L2Nu_PU200_Spring23.root",
0035
0036
0037 ),
0038 secondaryFileNames = cms.untracked.vstring()
0039 )
0040
0041 process.options = cms.untracked.PSet(
0042
0043 IgnoreCompletely = cms.untracked.vstring(),
0044 Rethrow = cms.untracked.vstring(),
0045
0046 accelerators = cms.untracked.vstring('*'),
0047 allowUnscheduled = cms.obsolete.untracked.bool,
0048 canDeleteEarly = cms.untracked.vstring(),
0049 deleteNonConsumedUnscheduledModules = cms.untracked.bool(True),
0050 dumpOptions = cms.untracked.bool(False),
0051 emptyRunLumiMode = cms.obsolete.untracked.string,
0052 eventSetup = cms.untracked.PSet(
0053 forceNumberOfConcurrentIOVs = cms.untracked.PSet(
0054 allowAnyLabel_=cms.required.untracked.uint32
0055 ),
0056 numberOfConcurrentIOVs = cms.untracked.uint32(0)
0057 ),
0058 fileMode = cms.untracked.string('FULLMERGE'),
0059 forceEventSetupCacheClearOnNewRun = cms.untracked.bool(False),
0060 makeTriggerResults = cms.obsolete.untracked.bool,
0061 numberOfConcurrentLuminosityBlocks = cms.untracked.uint32(0),
0062 numberOfConcurrentRuns = cms.untracked.uint32(1),
0063 numberOfStreams = cms.untracked.uint32(0),
0064 numberOfThreads = cms.untracked.uint32(1),
0065 printDependencies = cms.untracked.bool(False),
0066 sizeOfStackForThreadsInKB = cms.optional.untracked.uint32,
0067 throwIfIllegalParameter = cms.untracked.bool(True),
0068 wantSummary = cms.untracked.bool(False)
0069 )
0070
0071
0072 process.configurationMetadata = cms.untracked.PSet(
0073 annotation = cms.untracked.string('step1 nevts:2'),
0074 name = cms.untracked.string('Applications'),
0075 version = cms.untracked.string('$Revision: 1.19 $')
0076 )
0077
0078
0079 process.FEVTDEBUGHLTEventContent.outputCommands = [
0080 'drop *_*_*_*',
0081 'keep *_g4SimHits_Muon*_*',
0082 'keep *_CalibratedDigis_*_MUONL1T',
0083 'keep *_dtTriggerPhase2PrimitiveDigis_*_MUONL1T',
0084 'keep *_l1tStubsGmt_*_MUONL1T',
0085 'keep *_l1tSAMuonsGmt_*_MUONL1T',
0086 'keep *_l1tKMTFMuonsGmt_*_MUONL1T',
0087 'keep *_l1tFwdMuonsGmt_*_MUONL1T',
0088 'keep *_l1tTkMuonsGmt_*_MUONL1T',
0089 'keep *_genParticles_*_*',
0090 'keep *_simCscTriggerPrimitiveDigis_*_*',
0091 'keep *_simDtTriggerPrimitiveDigis_*_*',
0092 'keep *_simMuonRPCDigis_*_*',
0093 'keep *_simMuonDTDigis_*_*',
0094 'keep *_simBmtfDigis_*_*',
0095 'keep *_simEmtfDigis_*_*',
0096 'keep *_simGmtStage2Digis_*_*',
0097 "keep *_gmt*Muons_*_*",
0098 "keep *_gmtStubs_*_*",
0099 "keep *_genParticles_*_*",
0100 "keep *_l1tTTTracksFromTrackletEmulation_Level1TTTracks_*",
0101 "keep *_l1tTkMuons_*_*",
0102 'keep *_simOmtfDigis_*_*',
0103 'keep *_l1tTTTracksFromTrackletEmulation_Level1TTTracks_*'
0104 ]
0105
0106
0107
0108
0109
0110 process.FEVTDEBUGHLToutput = cms.OutputModule("PoolOutputModule",
0111 dataset = cms.untracked.PSet(
0112 dataTier = cms.untracked.string('GEN-SIM-DIGI-RAW-MINIAOD'),
0113 filterName = cms.untracked.string('')
0114 ),
0115 fileName = cms.untracked.string('file:skim.root'),
0116 outputCommands = process.FEVTDEBUGHLTEventContent.outputCommands,
0117 splitLevel = cms.untracked.int32(0)
0118 )
0119
0120
0121
0122
0123 from Configuration.AlCa.GlobalTag import GlobalTag
0124 process.GlobalTag = GlobalTag(process.GlobalTag, '125X_mcRun4_realistic_v2', '')
0125
0126
0127 process.load("L1Trigger.Phase2L1GMT.gmt_cff")
0128 process.L1simulation_step = cms.Path(process.CalibratedDigis*process.dtTriggerPhase2PrimitiveDigis*process.phase2GMT)
0129
0130 process.endjob_step = cms.EndPath(process.endOfProcess)
0131 process.FEVTDEBUGHLToutput_step = cms.EndPath(process.FEVTDEBUGHLToutput)
0132
0133
0134 process.schedule = cms.Schedule(process.L1simulation_step,process.endjob_step,process.FEVTDEBUGHLToutput_step)
0135 from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask
0136 associatePatAlgosToolsTask(process)
0137
0138
0139
0140
0141
0142
0143
0144
0145 from SLHCUpgradeSimulations.Configuration.aging import customise_aging_1000
0146
0147
0148 process = customise_aging_1000(process)
0149
0150
0151 from Configuration.DataProcessing.Utils import addMonitoring
0152
0153
0154 process = addMonitoring(process)
0155
0156
0157 from L1Trigger.Configuration.customisePhase2 import addHcalTriggerPrimitives
0158
0159
0160 process = addHcalTriggerPrimitives(process)
0161
0162
0163 from L1Trigger.Configuration.customisePhase2FEVTDEBUGHLT import customisePhase2FEVTDEBUGHLT
0164
0165
0166 process = customisePhase2FEVTDEBUGHLT(process)
0167
0168
0169 from L1Trigger.Configuration.customisePhase2TTNoMC import customisePhase2TTNoMC
0170
0171
0172 process = customisePhase2TTNoMC(process)
0173
0174
0175
0176
0177
0178
0179 process.source.inputCommands = cms.untracked.vstring("keep *", "drop l1tPFJets_*_*_*")
0180
0181 from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete
0182 process = customiseEarlyDelete(process)
0183