36 def addArguments(self):
37 """
38 This function allows to add arguments for parser_args() function
39 """
40
41
42 booleanSelections = ["true", "false"]
43
44
45 groupTrackPropagation = self.parserTrackPropagation.add_argument_group(title = "Data processor options: track-propagation")
46 groupTrackPropagation.add_argument(
47 "--isCovariance", help = "track-propagation : If false, Process without covariance, If true Process with covariance",
48 action = "store", type = str.lower, choices = (booleanSelections),
49 ).completer = ChoicesCompleter(booleanSelections)
50