5 Forbid users from filling an 'all' list with cuts. This has dangerous
6 potential to conflict with the standard lists and any standard tools.
10 from basf2
import set_random_seed, create_path, process
14 set_random_seed(
'1337')
18 goodpath = create_path()
19 goodpath.add_module(
'RootInput', inputFileNames=testinput)
20 goodpath.add_module(
'ParticleLoader', decayStringsWithCuts=[(
'e+:all',
'')])
24 badpath = create_path()
25 badpath.add_module(
'RootInput', inputFileNames=testinput)
26 badpath.add_module(
'ParticleLoader', decayStringsWithCuts=[(
'e+:all',
'p > 3')])