32 def addArguments(self):
33 """
34 This function allows to add arguments for parser_args() function
35 """
36
37
38 groupDPLReader = self.parserDplAodReader.add_argument_group(title = "Data processor options: internal-dpl-aod-reader")
39 groupDPLReader.add_argument("--aod", help = "Add your AOD File with path", action = "store", type = str)
40 groupDPLReader.add_argument(
41 "--aod-memory-rate-limit", help = "Rate limit AOD processing based on memory", action = "store", type = str
42 )
43 groupDPLReader.add_argument(
44 "cfgFileName", metavar = "Config.json", default = "config.json", help = "config JSON file name (mandatory)"
45 )
46