Project
Loading...
Searching...
No Matches
ProgOptions.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
12#ifndef O2_MCH_DEVIO_DIGITS_PROG_OPTIONS_H
13#define O2_MCH_DEVIO_DIGITS_PROG_OPTIONS_H
14
15/* Command line option names that are used by at least two
16 * executables (workflow or not).
17 */
18
19constexpr const char* OPTNAME_MAX_NOF_TFS = "max-nof-tfs";
20constexpr const char* OPTHELP_MAX_NOF_TFS = "max number of timeframes to process";
21
22constexpr const char* OPTNAME_FIRST_TF = "first-tf";
23constexpr const char* OPTHELP_FIRST_TF = "first timeframe to process";
24
25constexpr const char* OPTNAME_PRINT_DIGITS = "print-digits";
26constexpr const char* OPTHELP_PRINT_DIGITS = "print digits";
27
28constexpr const char* OPTNAME_PRINT_TFS = "print-tfs";
29constexpr const char* OPTHELP_PRINT_TFS = "print number of digits and rofs per tf";
30
31#endif
constexpr const char * OPTHELP_MAX_NOF_TFS
Definition ProgOptions.h:20
constexpr const char * OPTHELP_FIRST_TF
Definition ProgOptions.h:23
constexpr const char * OPTNAME_PRINT_DIGITS
Definition ProgOptions.h:25
constexpr const char * OPTNAME_PRINT_TFS
Definition ProgOptions.h:28
constexpr const char * OPTHELP_PRINT_TFS
Definition ProgOptions.h:29
constexpr const char * OPTHELP_PRINT_DIGITS
Definition ProgOptions.h:26
constexpr const char * OPTNAME_MAX_NOF_TFS
Definition ProgOptions.h:19
constexpr const char * OPTNAME_FIRST_TF
Definition ProgOptions.h:22