44def addMyArgs(parser):
45
46 parser.defineArgGroup('EvtGenFromEVNT_tf', 'EVNT merge job specific options')
47 parser.add_argument('--inputEVNTFile', nargs='+',
48 type=trfArgClasses.argFactory(trfArgClasses.argPOOLFile, io='input', runarg=True, type='evnt'),
49 help='Input EVNT file', group='EvtGenFromEVNT_tf')
50 parser.add_argument('--outputEVNT_MRGFile', '--outputEVNTFile',
51 type=trfArgClasses.argFactory(trfArgClasses.argPOOLFile, io='output', runarg=True, type='evnt'),
52 help='Output EVNT file', group='EvtGenFromEVNT_tf')
53
54
55
56