Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-07 03:06:33

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.Eras.Era_Phase2C17I13M9_cff import Phase2C17I13M9
0004 process = cms.Process('USER',Phase2C17I13M9)
0005 
0006 # import of standard configurations
0007 process.load('Configuration.StandardSequences.Services_cff')
0008 process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
0009 process.load('FWCore.MessageService.MessageLogger_cfi')
0010 process.load('Configuration.EventContent.EventContent_cff')
0011 process.load('SimGeneral.MixingModule.mixNoPU_cfi')
0012 #process.load('SimGeneral.MixingModule.mix_POISSON_average_cfi')
0013 process.load('Configuration.Geometry.GeometryExtended2026D91Reco_cff')
0014 process.load('Configuration.StandardSequences.MagneticField_cff')
0015 process.load('Configuration.StandardSequences.Digi_cff')
0016 process.load('Configuration.StandardSequences.SimL1Emulator_cff')
0017 process.load('Configuration.StandardSequences.L1TrackTrigger_cff')
0018 process.load('Configuration.StandardSequences.DigiToRaw_cff')
0019 process.load('HLTrigger.Configuration.HLT_Fake2_cff')
0020 process.load('Configuration.StandardSequences.RawToDigi_cff')
0021 process.load('Configuration.StandardSequences.L1Reco_cff')
0022 process.load('Configuration.StandardSequences.Reconstruction_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(3)
0028 )
0029 
0030 process.source = cms.Source("PoolSource",
0031     fileNames = cms.untracked.vstring(
0032 "file:/eos/cms/store/relval/CMSSW_13_1_0_pre3/RelValTTbar_14TeV/GEN-SIM-DIGI-RAW/PU_131X_mcRun4_realistic_v2_PDMVRELVALS146-v7/2580000/1320a7f8-658e-48b4-80cd-ace713889f8c.root"
0033     )
0034 )
0035 
0036 
0037 process.options = cms.untracked.PSet(
0038 
0039 )
0040 
0041 # Production Info
0042 process.configurationMetadata = cms.untracked.PSet(
0043     annotation = cms.untracked.string('step2 nevts:10'),
0044     name = cms.untracked.string('Applications'),
0045     version = cms.untracked.string('$Revision: 1.19 $')
0046 )
0047 
0048 # MC vertice analyzer
0049 process.load("Validation.RecoVertex.mcverticesanalyzer_cfi")
0050 process.mcverticesanalyzer.pileupSummaryCollection = cms.InputTag("addPileupInfo","","HLT")
0051 
0052 process.Phase2ITQCoreProducer = cms.EDProducer('Phase2ITQCoreProducer', src = cms.InputTag("generalTracks"), siPixelDigi = cms.InputTag("simSiPixelDigis", "Pixel"))
0053 
0054 # # # -- Trajectory producer
0055 process.load("RecoTracker.TrackProducer.TrackRefitters_cff")
0056 process.TrackRefitter.src = "generalTracks"
0057 process.TrackRefitter.NavigationSchool = ""
0058 
0059 # Additional output definition
0060 
0061 # Other statements
0062 process.mix.digitizers = cms.PSet(process.theDigitizersValid)
0063 # This pset is specific for producing simulated events for the designers of the PROC (InnerTracker)
0064 # They need pixel RecHits where the charge is stored with high-granularity and large dynamic range
0065 
0066 from Configuration.AlCa.GlobalTag import GlobalTag
0067 process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:phase2_realistic_T30', '')
0068 
0069 # Path and EndPath definitions
0070 process.digitisation_step = cms.Path(process.pdigi_valid)
0071 process.L1simulation_step = cms.Path(process.SimL1Emulator)
0072 process.L1TrackTrigger_step = cms.Path(process.L1TrackTrigger)
0073 process.digi2raw_step = cms.Path(process.DigiToRaw)
0074 process.raw2digi_step = cms.Path(process.RawToDigi)
0075 process.L1Reco_step = cms.Path(process.L1Reco)
0076 process.reconstruction_step = cms.Path(process.reconstruction)
0077 process.user_step = cms.Path(process.TrackRefitter * process.Phase2ITQCoreProducer)
0078 process.endjob_step = cms.EndPath(process.endOfProcess)
0079 
0080 # Schedule definition
0081 process.schedule = cms.Schedule(process.digitisation_step,process.L1simulation_step,process.L1TrackTrigger_step,process.digi2raw_step)
0082 process.schedule.extend([process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.user_step,process.endjob_step])
0083 
0084 # Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule
0085 from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands
0086 process = customiseLogErrorHarvesterUsingOutputCommands(process)
0087 # Add early deletion of temporary data products to reduce peak memory need
0088 from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete
0089 process = customiseEarlyDelete(process)
0090 
0091 # End adding early deletion
0092 process.TFileService = cms.Service('TFileService',
0093     fileName = cms.string("pixelbitstream.root")
0094 )
0095