process.mix.maxBunch = cms.int32(3)
process.mix.input.fileNames = cms.untracked.vstring(['/store/relval/CMSSW_6_2_0_SLHC26_patch4/RelValMinBias_TuneZ2star_14TeV/GEN-SIM/PH2_1K_FB_V6_HLLHCBS-v1/00000/06C1EE58-E178-E511-AA98-0025905A48D6.root', '/store/relval/CMSSW_6_2_0_SLHC26_patch4/RelValMinBias_TuneZ2star_14TeV/GEN-SIM/PH2_1K_FB_V6_HLLHCBS-v1/00000/0A1749E7-DF78-E511-9540-0025905A60D2.root', '/store/relval/CMSSW_6_2_0_SLHC26_patch4/RelValMinBias_TuneZ2star_14TeV/GEN-SIM/PH2_1K_FB_V6_HLLHCBS-v1/00000/0A8EE1A3-E178-E511-A0A8-0025905964A2.root', '/store/relval/CMSSW_6_2_0_SLHC26_patch4/RelValMinBias_TuneZ2star_14TeV/GEN-SIM/PH2_1K_FB_V6_HLLHCBS-v1/00000/0C9EE226-E778-E511-9C8A-0025905B859E.root', '/store/relval/CMSSW_6_2_0_SLHC26_patch4/RelValMinBias_TuneZ2star_14TeV/GEN-SIM/PH2_1K_FB_V6_HLLHCBS-v1/00000/0EFF697A-E078-E511-8997-0025905A497A.root', '/store/relval/CMSSW_6_2_0_SLHC26_patch4/RelValMinBias_TuneZ2star_14TeV/GEN-SIM/PH2_1K_FB_V6_HLLHCBS-v1/00000/8E4A142B-E778-E511-8B72-0025905A6138.root', '/store/relval/CMSSW_6_2_0_SLHC26_patch4/RelValMinBias_TuneZ2star_14TeV/GEN-SIM/PH2_1K_FB_V6_HLLHCBS-v1/00000/BCA33BEE-E378-E511-A63A-0025905964B6.root', '/store/relval/CMSSW_6_2_0_SLHC26_patch4/RelValMinBias_TuneZ2star_14TeV/GEN-SIM/PH2_1K_FB_V6_HLLHCBS-v1/00000/BE421FA9-E578-E511-A04B-0025905A60B4.root', '/store/relval/CMSSW_6_2_0_SLHC26_patch4/RelValMinBias_TuneZ2star_14TeV/GEN-SIM/PH2_1K_FB_V6_HLLHCBS-v1/00000/D4C8C3B5-E378-E511-99AE-0025905A48D6.root', '/store/relval/CMSSW_6_2_0_SLHC26_patch4/RelValMinBias_TuneZ2star_14TeV/GEN-SIM/PH2_1K_FB_V6_HLLHCBS-v1/00000/E06DB90C-E178-E511-8E11-0025905B8572.root'])
from Configuration.AlCa.GlobalTag import GlobalTag
process.GlobalTag = GlobalTag(process.GlobalTag, 'PH2_1K_FB_V6::All', '')

# Path and EndPath definitions
process.raw2digi_step = cms.Path(process.RawToDigi)
process.L1Reco_step = cms.Path(process.L1Reco)
process.reconstruction_step = cms.Path(process.reconstruction)
process.endjob_step = cms.EndPath(process.endOfProcess)
process.RECOSIMoutput_step = cms.EndPath(process.RECOSIMoutput)

# Schedule definition
process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.endjob_step,process.RECOSIMoutput_step)

# customisation of the process.

# Automatic addition of the customisation function from RecoParticleFlow.PandoraTranslator.customizeHGCalPandora_cff
from RecoParticleFlow.PandoraTranslator.customizeHGCalPandora_cff import cust_2023HGCalPandoraMuon 

#call to customisation function cust_2023HGCalPandoraMuon imported from RecoParticleFlow.PandoraTranslator.customizeHGCalPandora_cff
process = cust_2023HGCalPandoraMuon(process)

for i in range (0, len (process.XMLIdealGeometryESSource.geomXMLFiles)):
    xmlFile = process.XMLIdealGeometryESSource.geomXMLFiles[i]
    if not xmlFile.endswith ("trackerStructureTopology.xml"):
        continue
    process.XMLIdealGeometryESSource.geomXMLFiles[i] = "VFPix/MonteCarlo/data/trackerStructureTopology_80x47.xml"

# End of customisation functions
# Path and EndPath definitions
process.endjob_step = cms.EndPath(process.endOfProcess)
process.RECOSIMoutput_step = cms.EndPath(process.RECOSIMoutput)

# Schedule definition
process.schedule = cms.Schedule()
process.schedule.extend(process.HLTSchedule)
process.schedule.extend([process.endjob_step,process.RECOSIMoutput_step])

# customisation of the process.

# Automatic addition of the customisation function from RecoParticleFlow.PandoraTranslator.customizeHGCalPandora_cff
from RecoParticleFlow.PandoraTranslator.customizeHGCalPandora_cff import cust_2023HGCalPandoraMuon 

#call to customisation function cust_2023HGCalPandoraMuon imported from RecoParticleFlow.PandoraTranslator.customizeHGCalPandora_cff
process = cust_2023HGCalPandoraMuon(process)

# Automatic addition of the customisation function from HLTrigger.Configuration.customizeHLTforMC
from HLTrigger.Configuration.customizeHLTforMC import customizeHLTforMC 

#call to customisation function customizeHLTforMC imported from HLTrigger.Configuration.customizeHLTforMC
process = customizeHLTforMC(process)

# Automatic addition of the customisation function from Configuration.DataProcessing.Utils
from Configuration.DataProcessing.Utils import addMonitoring 

#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils
process = addMonitoring(process)

# Automatic addition of the customisation function from L1Trigger.L1IntegratedMuonTrigger.phase2DescopingScenarios
from L1Trigger.L1IntegratedMuonTrigger.phase2DescopingScenarios import descope235MCHF