CbmRoot
Loading...
Searching...
No Matches
services/qa/main.cxx
Go to the documentation of this file.
1/* Copyright (C) 2025 GSI/VECC, Darmstadt/Kolkata
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Souvik Chattopadhyay[committer], Sergei Zharko */
4
5#include "Application.h"
7
8#include <iostream>
9
10int main(int argc, char* argv[])
11{
12 try {
13 // Parse command-line arguments
14 ApplicationParameter opt(argc, argv);
15
16 // Create the Application instance
17 Application app(opt);
18
19 // Execute the comparison process with a default option
20 //app.exec("E");
21
22 // Return the process result
23 //return result;
24 }
25 catch (const std::exception& e) {
26 std::cerr << "Error: " << e.what() << std::endl;
27 return EXIT_FAILURE;
28 }
29}
Class to parse and store command-line arguments.
Main class of the "cbmreco_fairrun" application.
int main(int argc, char *argv[])