logParser run failed.
logParser run failed due to the unprotected parameter "nEventsPerJob_fromJO". See the error message bellow
'''
- Number of input LHE events: 65000 Traceback (most recent call last): File "./scripts/logParser.py", line 782, in main() File "./scripts/logParser.py", line 683, in main if expected_EVNT_out > 2 * nEventsPerJob_fromJO: TypeError: unsupported operand type(s) for *: 'int' and 'NoneType' '''
In line https://gitlab.cern.ch/atlas-physics/pmg/mcjoboptions/-/blob/master/scripts/logParser.py?ref_type=heads#L683 The variable "nEventsPerJob_fromJO" is used but it can be None type when the neventsPerjob is not specified in JO file. You could just you "nEventsPerJob" variable since it is already overwritten by "nEventsPerJob_fromJO" or set to 10000 if "nEventsPerJob_fromJO" is None. see line: https://gitlab.cern.ch/atlas-physics/pmg/mcjoboptions/-/blame/master/scripts/logParser.py#L518
For test, you can download a log.generate file here: https://cernbox.cern.ch/s/U86AjY5bTjTACwy
Cheers, Ablet