#include "DataQualityUtils/MonitoringFile.h"
#include <iostream>
#include <string>
Go to the source code of this file.
|
| int | main (int argc, char *argv[]) |
◆ main()
| int main |
( |
int | argc, |
|
|
char * | argv[] ) |
Definition at line 5 of file HanResultsTest.cxx.
5 {
6 if(argc<6){
7 std::cout<<"need ResultsDir, inputFile, hanconfig.hcfg ,min10_config.hcfg,min30_config.hcfg"<<std::endl;
8 return 5;
9 }
10 std::string outDir=std::string(argv[1]);
11 std::string
inFile(argv[2]);
12 std::string
conf(argv[3]);
13 std::string conf10(argv[4]);
14 std::string conf30(argv[5]);
16 std::cout<<"Running GetHanResults"<<std::endl;
17 mf.getHanResults(outDir,inFile,conf,conf10,conf30 );
18 return 0;
19}