From 32e291401ec3d185f898358cdb93abc32fdd56d5 Mon Sep 17 00:00:00 2001 From: Giovanni Franzoni Date: Thu, 3 Jul 2014 20:21:35 +0200 Subject: [PATCH] handle lhe input according to Alan's https://hypernews.cern.ch/HyperNews/CMS/get/dataopsrequests/5132/1.html --- Configuration/PyReleaseValidation/python/MatrixInjector.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Configuration/PyReleaseValidation/python/MatrixInjector.py b/Configuration/PyReleaseValidation/python/MatrixInjector.py index 04abe9c79aeb6..d08b7dd522711 100644 --- a/Configuration/PyReleaseValidation/python/MatrixInjector.py +++ b/Configuration/PyReleaseValidation/python/MatrixInjector.py @@ -218,6 +218,8 @@ def prepare(self,mReader, directories, mode='init'): chainDict['nowmTasklist'][-1]['EventsPerJob'] = ns[1] if 'FASTSIM' in s[2][index] or '--fast' in s[2][index]: thisLabel+='_FastSim' + if 'lhe' in s[2][index] or '--fast' in s[2][index]: + chainDict['nowmTasklist'][-1]['LheInputFiles'] =True elif nextHasDSInput: chainDict['nowmTasklist'].append(copy.deepcopy(self.defaultInput))