DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
ers_config.cxx File Reference
#include <ers/ers.hpp>
#include <string.h>
Include dependency graph for ers_config.cxx:

Go to the source code of this file.

Functions

void print_description ()
void print_usage ()
int main (int argc, char **argv)

Function Documentation

◆ main()

int main ( int argc,
char ** argv )

Definition at line 41 of file ers_config.cxx.

42{
43 if ( argc > 1 )
44 {
45 if ( !strcmp( argv[1], "--help" )
46 || !strcmp( argv[1], "-h" ) )
47 {
49 }
50 else
51 {
53 }
54 }
55 else
56 {
57 std::cout << ers::StreamManager::instance();
58 }
59 return 0;
60}
static StreamManager & instance()
return the singleton
void print_description()
void print_usage()

◆ print_description()

void print_description ( )

Definition at line 28 of file ers_config.cxx.

29{
30 std::cout << "Description:" << std::endl;
31 std::cout << "\tPrints ERS streams configuration in the current shell." << std::endl;
32}

◆ print_usage()

void print_usage ( )

Definition at line 34 of file ers_config.cxx.

35{
36 std::cout << "Usage: ers_pc [-h]|[--help]" << std::endl;
37 std::cout << "Options/Arguments:" << std::endl;
38 std::cout << "\t[-h]|[--help]\tprints this help screen." << std::endl;
39}