/[PAMELA software]/quicklook/tracker/flight/src/FTrkScanQLook_EXPERT.cc
ViewVC logotype

Contents of /quicklook/tracker/flight/src/FTrkScanQLook_EXPERT.cc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations) (download)
Mon Jun 5 08:38:00 2006 UTC (18 years, 6 months ago) by pam-fi
Branch: MAIN
Changes since 1.2: +0 -1 lines
*** empty log message ***

1 /**
2 * FTrkScanQLook_EXPERT.cc
3 *
4 * autor: D.Fedele
5 * version 2.0
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: output directory [default = ./] \n");
28 printf("\t -format: format of the output file (without .) [default = pdf] \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 }
89 }
90
91
92 if ( !beverbose ){
93 //
94 // redirect to /dev/null the stdout and stderr
95 //
96 nul = open("/dev/null", O_CREAT | O_RDWR,S_IREAD | S_IWRITE);
97 dup2(nul,1);
98 dup2(nul,2);
99 };
100 printf("\n Welcome to FTrkScanQLook! \n\n");
101 //
102 FTrkScanQLook_EXPERT(FILE,OUTDIR,2,0,FORMAT);
103 //
104 if ( !beverbose ) close(nul);
105 return(0);
106 }

  ViewVC Help
Powered by ViewVC 1.1.23