25 parser.add_argument('--trpDetails', type=bool, default=False, help='Include details read from TRP like pileup and deadtime in the metadata - to be used for P1 data')
26 parser.add_argument('--amiTag', help='AMI tag used for data reprocessing')
27 parser.add_argument('--partition', default='ATLAS', help='Used partition (needed to read OKS details)')
28 parser.add_argument('--underflowThreshold', default=0.5, help='Threshold of underflow percent value to save warning in metadata tree.')
29 parser.add_argument('--overflowThreshold', default=0.1, help='Threshold of underflow percent value to save warning in metadata tree.')
30 parser.add_argument('--dumpAlgorithmSummary', action='store_true', help='Print algorithm\'s mean time of execution to the log file')
31 parser.add_argument('--onlyMetadata', type=bool, default=False, help='Only save metadata (csv tables will not be produced)')
32 parser.add_argument('--maxRanges', type=int, default=5, help="Maximum number of ranges to process. Use -1 to process all.")
33 parser.add_argument('--skipRanges', type=int, default=-1, help="Skip n first ranges. Use -1 to process all.")