1 |
/** |
2 |
* FTrkScanQLook_EXPERT.cc |
3 |
* |
4 |
* autor: D.Fedele |
5 |
* version v1r05 |
6 |
* Parameters: |
7 |
* file - the path to the root file to analyze |
8 |
* outDir - total path of output file |
9 |
* event - the number of the single event to analyze |
10 |
* DSPprint - the number of a particular DSP to draw (0 don't draw) |
11 |
* format - extension of output file (pdf,ps,gif,jpg) |
12 |
* |
13 |
*/ |
14 |
#include <TString.h> |
15 |
#include <fcntl.h> |
16 |
#include <unistd.h> |
17 |
|
18 |
extern void FTrkScanQLook_EXPERT(TString file, TString outdir, Int_t event, Int_t DSPprint, TString format); |
19 |
extern void info(); |
20 |
|
21 |
void usage(){ |
22 |
printf("\nUsage:\n\n FTrkScanQLook_EXPERT file [OPTIONS] \n\n"); |
23 |
printf("\t --help: print this help and exit \n"); |
24 |
printf("\t file: path of the root file to analyze (give at least this parameter) \n"); |
25 |
printf("\nOPTIONS:\n"); |
26 |
printf("\t -v be verbose \n"); |
27 |
printf("\t -outDir: path of the output directory [default = ./] (with or without final '/')\n"); |
28 |
printf("\t -format: format of the output file (without .) [default = pdf] (accepted formats: pdf, ps, png, jpg, gif)\n"); |
29 |
printf("\nExamples:\n\tFTrkScanQLook_EXPERT /home/pamela/filesfromyoda/DW_xxxxxx_yyyy.root \n\n"); |
30 |
printf("\tFTrkScanQLook_EXPERT /home/pamela/filesfromyoda/DW_xxxxxx_yyyy.root -v -outDir ~/tmp/\n\n"); |
31 |
} |
32 |
|
33 |
int main(int argc, char* argv[]){ |
34 |
|
35 |
TString FILE,OUTDIR="./",FORMAT="pdf"; |
36 |
bool beverbose = false; |
37 |
int nul = 0; |
38 |
|
39 |
if(argc>1){ |
40 |
if(argc<3){ |
41 |
printf("\n\tYou have to insert at least the file to analyze \n"); |
42 |
usage(); |
43 |
return(0); |
44 |
} |
45 |
if ( !strcmp(argv[1],"--version") ){ |
46 |
info(); |
47 |
return(0); |
48 |
}; |
49 |
if (!strcmp(argv[1], "-h") || !strcmp(argv[1], "--help") || argc>7){ |
50 |
usage(); |
51 |
return(0); |
52 |
} |
53 |
if ( (!strcmp(argv[1],"-v") || !strcmp(argv[1],"--verbose"))&& argc == 2 ){ |
54 |
info(); |
55 |
return(0); |
56 |
} |
57 |
else { |
58 |
|
59 |
FILE = argv[1]; |
60 |
for(int i=2; i<argc;i++){ |
61 |
|
62 |
if ( !strcmp(argv[i],"-v") || !strcmp(argv[i],"--verbose") ) |
63 |
beverbose = true; |
64 |
|
65 |
if (!strcmp(argv[i], "-outDir")){ |
66 |
if (++i >= argc || !strcmp(argv[i],"-v") || !strcmp(argv[i], "-format")){ |
67 |
printf( "\n-outDir needs arguments. \n"); |
68 |
usage(); |
69 |
return(0); |
70 |
} |
71 |
else{ |
72 |
OUTDIR = argv[i]; |
73 |
continue; |
74 |
} |
75 |
} |
76 |
if (!strcmp(argv[i], "-format")){ |
77 |
if (++i >= argc || !strcmp(argv[i],"-v") || !strcmp(argv[i], "-outDir")){ |
78 |
printf( "\n-format needs arguments. \n"); |
79 |
usage(); |
80 |
return(0); |
81 |
} |
82 |
else{ |
83 |
FORMAT = argv[i]; |
84 |
continue; |
85 |
} |
86 |
} |
87 |
|
88 |
if( strcmp(argv[i], "-format") && strcmp(argv[i], "-outDir") && strcmp(argv[i],"-v") && strcmp(argv[i],"--verbose")){ |
89 |
printf( "\n------>Warning: WRONG OPTIONS!\n"); |
90 |
usage(); |
91 |
return(0); |
92 |
} |
93 |
} |
94 |
} |
95 |
} |
96 |
|
97 |
|
98 |
if ( !beverbose ){ |
99 |
// |
100 |
// redirect to /dev/null the stdout and stderr |
101 |
// |
102 |
nul = open("/dev/null", O_CREAT | O_RDWR,S_IREAD | S_IWRITE); |
103 |
dup2(nul,1); |
104 |
dup2(nul,2); |
105 |
}; |
106 |
printf("\n Welcome to FTrkScanQLook! \n\n"); |
107 |
// |
108 |
FTrkScanQLook_EXPERT(FILE,OUTDIR,2,0,FORMAT); |
109 |
// |
110 |
if ( !beverbose ) close(nul); |
111 |
return(0); |
112 |
} |