Skip to content

Commit

Permalink
Create rpcCustoms.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Dildick committed Mar 13, 2014
1 parent 72bbe60 commit b23167b
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions SLHCUpgradeSimulations/Configuration/python/rpcCustoms.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import FWCore.ParameterSet.Config as cms

def customise(process):
if hasattr(process,'digitisation_step'):
process=customise_Digi(process)
if hasattr(process,'L1simulation_step'):
process=customise_L1Emulator(process)
if hasattr(process,'DigiToRaw'):
process=customise_DigiToRaw(process)
if hasattr(process,'RawToDigi'):
process=customise_RawToDigi(process)
if hasattr(process,'reconstruction'):
process=customise_Reco(process)
if hasattr(process,'dqmoffline_step'):
process=customise_DQM(process)
if hasattr(process,'dqmHarvesting'):
process=customise_harvesting(process)
if hasattr(process,'validation_step'):
process=customise_Validation(process)
return process

def customise_Digi(process):
return process

def customise_L1Emulator(process):
return process

def customise_DigiToRaw(process):
return process

def customise_RawToDigi(process):
return process

def customise_Reco(process):
return process

def customise_DQM(process):
return process

def customise_Validation(process):
return process

def customise_harvesting(process):
return (process)

0 comments on commit b23167b

Please sign in to comment.