process.L1simulation_step, process.digi2raw_step, process.L1Reco_step, process.reconstruction_step) process.schedule.extend(process.HLTSchedule) process.schedule.extend([process.endjob_step, process.AODSIMoutput_step]) # filter all path with the production filter sequence for path in process.paths: getattr(process, path)._seq = process.ProductionFilterSequence * getattr( process, path)._seq # customisation of the process. # Automatic addition of the customisation function from SimGeneral.DataMixingModule.customiseForPremixingInput from SimGeneral.DataMixingModule.customiseForPremixingInput import customiseForPreMixingInput #call to customisation function customiseForPreMixingInput imported from SimGeneral.DataMixingModule.customiseForPremixingInput process = customiseForPreMixingInput(process) # Automatic addition of the customisation function from ttH.TauMCGeneration.customGenFilter from ttH.TauMCGeneration.customGenFilter import customizeForGenFilteringWithFakes #call to customisation function customizeForGenFilteringWithFakes imported from ttH.TauMCGeneration.customGenFilter process = customizeForGenFilteringWithFakes(process) # Automatic addition of the customisation function from HLTrigger.Configuration.customizeHLTforMC from HLTrigger.Configuration.customizeHLTforMC import customizeHLTforFastSim #call to customisation function customizeHLTforFastSim imported from HLTrigger.Configuration.customizeHLTforMC process = customizeHLTforFastSim(process) # End of customisation functions
#process.AODSIMoutput_step = cms.EndPath(process.AODSIMoutput) # Schedule definition #process.schedule = cms.Schedule(process.reconstruction_befmix_step,process.digitisation_step,process.L1simulation_step,process.digi2raw_step,process.L1Reco_step,process.reconstruction_step) #process.schedule.extend(process.HLTSchedule) #process.schedule.extend([process.endjob_step,process.AODSIMoutput_step]) process.schedule = cms.Schedule(process.reconstruction_befmix_step,process.digitisation_step,process.L1simulation_step,process.digi2raw_step,process.raw2digi_step,process.reco_step1,process.reco_step2,process.endjob_step) # customisation of the process. # Automatic addition of the customisation function from SimGeneral.DataMixingModule.customiseForPremixingInput from SimGeneral.DataMixingModule.customiseForPremixingInput import customiseForPreMixingInput #call to customisation function customiseForPreMixingInput imported from SimGeneral.DataMixingModule.customiseForPremixingInput process = customiseForPreMixingInput(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 HLTrigger.Configuration.customizeHLTforMC #from HLTrigger.Configuration.customizeHLTforMC import customizeHLTforFastSim #call to customisation function customizeHLTforFastSim imported from HLTrigger.Configuration.customizeHLTforMC #process = customizeHLTforFastSim(process) # End of customisation functions