#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 MergeFilesTest.cxx.
5 {
6 if(argc<3){
7 std::cout<<"need listFilename outfilename"<<std::endl;
8 return 5;
9 }
10 std::string listFileName=std::string(argv[1]);
13 std::cout<<"Running MergeFiles"<<std::endl;
14 mf.mergeFiles( outFileName, listFileName );
15 std::cout<<"Running MergeLBintervals"<<std::endl;
16 mf.mergeLBintervals( outFileName );
17
18 return 0;
19}