--- calo/flight/CaloHK/src/CaloHK.cpp 2009/08/11 14:21:05 1.2 +++ calo/flight/CaloHK/src/CaloHK.cpp 2014/01/23 11:23:50 1.3 @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include @@ -27,10 +28,10 @@ printf( " if in the first position \"-name\" can be omitted. \n"); printf("\n OPTIONS: \n"); printf("\n -v be verbose \n"); - printf( " -entry entry calibration entry to analyze [default = 0, all] \n"); + // printf( " -entry entry calibration entry to analyze [default = 0, all] \n"); printf( " -interactive shows figures on the screen [default = non-interactive] \n"); printf( " -wait wait for canvas to be closed before going on [default = don't wait] \n"); - printf( " -matra draw the strip rms in a box plot [default: do not draw] \n"); + // printf( " -matra draw the strip rms in a box plot [default: do not draw] \n"); printf( " -oudDir output_dir path of the output directory [default = ./] (with or without final '/') \n"); printf( " -format format format for output file (without . )[default = png] \n"); printf("\nExamples: "); @@ -44,9 +45,9 @@ TString name; TString outdir = "./"; TString format = "png"; - int matra = 0; - Long64_t calibno = 0; - char *pEnd; + // int matra = 0; + // Long64_t calibno = 0; + // char *pEnd; int nul = 0; bool beverbose = false; Bool_t iactive = false; @@ -86,7 +87,7 @@ format = (TString)inps[i+1]; }; - if ( !strcmp(inps[i],"-entry") ) { + /* if ( !strcmp(inps[i],"-entry") ) { if ( numinp-1 < i+1 ){ usage(); exit(-3); @@ -95,7 +96,7 @@ }; if ( !strcmp(inps[i],"-matra") ) { matra = 1; - }; + };*/ if ( !strcmp(inps[i],"-interactive") ) { iactive = true; };