parser.add_argument('-R','--roc',help="If given, ROC curves will be plotted into the given pdf file.")
parser.add_argument('-D','--det',help="If given, DET curves will be plotted into the given pdf file.")
parser.add_argument('-C','--cmc',help="If given, CMC curves will be plotted into the given pdf file.")
parser.add_argument('--parser',default='4column',choices=('4column','5column'),help="The style of the resulting score files. The default fits to the usual output of FaceRecLib score files.")
parser.add_argument('--parser',default='4column',choices=('4column','5column'),help="The style of the resulting score files. The default fits to the usual output of score files.")
parser.add_argument('-s','--score-development',nargs='*',required=True,help='The score file in 4 or 5 column format to train the fusion parameters.')
parser.add_argument('-t','--score-evaluation',nargs='*',required=True,help='The score file in 4 or 5 column format to calibrate.')
parser.add_argument('-f','--score-fused-development-file',required=True,help='The calibrated development score file in 4 or 5 column format to calibrate.')
parser.add_argument('-g','--score-fused-evaluation-file',required=True,help='The calibrated evaluation score file in 4 or 5 column format to calibrate.')
parser.add_argument('-p','--parser',default='4column',choices=('4column','5column'),help='The type of the score file.')
parser.add_argument('-d','--dev-files',required=True,nargs='+',help="A list of score files of the development set.")
parser.add_argument('-e','--eval-files',nargs='+',help="A list of score files of the evaluation set; if given it must be the same number of files as the --dev-files.")
parser.add_argument('-f','--score-fused-dev-file',required=True,help='The calibrated development score file in 4 or 5 column format to calibrate.')
parser.add_argument('-g','--score-fused-eval-file',help='The calibrated evaluation score file in 4 or 5 column format to calibrate.')
parser.add_argument('-p','--parser',default='4column',choices=('4column','5column'),help="The style of the resulting score files. The default fits to the usual output of score files.")