_stepALCAPRODUCER_
Creates and returns the configuration string for the ALCAPRODUCER step
starting from the list of AlcaReco path to be run.
Definition at line 9 of file Utils.py.
00010 :
00011 """
00012 _stepALCAPRODUCER_
00013
00014 Creates and returns the configuration string for the ALCAPRODUCER step
00015 starting from the list of AlcaReco path to be run.
00016
00017 """
00018
00019 step = ''
00020 if len(skims) >0:
00021 step = ',ALCAPRODUCER:'
00022 for skim in skims:
00023 step += (skim+"+")
00024 step = step.rstrip('+')
00025 return step
00026