mirror of
https://github.com/gwm17/Mask.git
synced 2025-04-11 02:28:51 -04:00
14 lines
314 B
C++
14 lines
314 B
C++
#include "RootPlotter.h"
|
|
#include <iostream>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if(argc != 3)
|
|
{
|
|
std::cerr<<"Root plotter requires two commandline arguments: path to input file and path to outputfile"<<std::endl;
|
|
return 1;
|
|
}
|
|
|
|
RootPlotter plotter;
|
|
plotter.Run(argv[1], argv[2]);
|
|
} |