forked from cms-sw/cmssw
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sven Dildick
committed
Mar 13, 2014
1 parent
72bbe60
commit b23167b
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |