/[PAMELA software]/quicklook/calo/FQLOOK/src/FCaloCHKCALIB.cc
ViewVC logotype

Diff of /quicklook/calo/FQLOOK/src/FCaloCHKCALIB.cc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by mocchiut, Mon Mar 13 09:01:26 2006 UTC revision 1.6 by mocchiut, Tue Aug 11 14:20:05 2009 UTC
# Line 11  Line 11 
11  #include <TSystem.h>  #include <TSystem.h>
12  #include <iostream>  #include <iostream>
13  #include <sys/types.h>  #include <sys/types.h>
14    #include <cstdlib>
15  #include <unistd.h>  #include <unistd.h>
16  #include <stdio.h>  #include <stdio.h>
17  //  //
18  extern void FCaloCHKCALIB(TString,  Long64_t, TString, int, TString);  extern void FCaloCHKCALIB(TString,  Long64_t, TString, int, TString, Bool_t, Bool_t);
19  extern void info();  extern void info();
20  using namespace std;  using namespace std;
21  //  //
22  void usage(){  void usage(){
23    printf("\nUsage:\n\n FCaloCHKCALIB [-v] file calib_number output_directory matra figure_format \n");    printf("\nUsage:\n\n FCaloCHKCALIB [-name] file [OPTIONS] \n");
24    printf("\n -v               be verbose \n");      printf("\n file             must be in the form: /path/to/filesfromyoda/ZZZ_XXX_YYYYY_cln2.root  \n");
25    printf(  " file             must be in the form: /path/to/filesfromyoda/dw_000000_00000/  \n");    printf(  "                  if in the first position \"-name\" can be omitted. \n");  
26    printf(  " calib_number     is an integer (progressive calibration number), 0 = all \n");    printf("\n OPTIONS: \n");  
27    printf(  " output_dir       directory where to store figures \n");    printf("\n -v                  be verbose \n");  
28    printf(  " matra            integer, 1 to print the strip rms in a box plot 0 to skip it\n");    printf(  " -entry entry        calibration entry to analyze [default = 0, all] \n");
29    printf(  " figure format    any format recognized by ROOT (eps,gif,...)\n");    printf(  " -interactive        shows figures on the screen [default = non-interactive] \n");
30    printf("\nExample: \n\nFCaloCHKCALIB /home/pamela/filesfromyoda/dw_050301_00100/ 0 /tmp/ 0 ps \n\n");    printf(  " -wait               wait for canvas to be closed before going on [default = don't wait] \n");
31      printf(  " -matra              draw the strip rms in a box plot [default: do not draw] \n");
32      printf(  " -oudDir output_dir  path of the output directory [default = ./] (with or without final '/') \n");
33      printf(  " -format format      format for output file (without . )[default = png] \n");
34      printf("\nExamples: ");
35      printf("\n\nFCaloCHKCALIB /home/pamela/filesfromyoda/dw_050301_00100.root \n");
36      printf("\nFCaloCHKCALIB -v -name /home/pamela/filesfromyoda/dw_050301_00100.root \n");
37      printf("\nFCaloCHKCALIB /home/pamela/filesfromyoda/DW_050523_01600.root -v -entry 2 -matra -outDir /tmp/ -format gif \n\n");
38  }  }
39  //  //
40  int main(int numinp, char *inps[]){  int main(int numinp, char *inps[]){
41    TString name;    TString name;
42    TString outdir = "";    TString outdir = "./";
43    TString format = "ps";    TString format = "png";
44    int matra = 0;    int matra = 0;
45    Long64_t calibno = 0;    Long64_t calibno = 0;
46    char *pEnd;    char *pEnd;
47    int nul = 0;    int nul = 0;
48    bool beverbose = false;    bool beverbose = false;
49    if ( numinp == 1 ){    Bool_t iactive = false;
50      usage();    Bool_t w4i = false;
51      return(0);      
   };  
52    if ( numinp > 1 ){    if ( numinp > 1 ){
53      if ( !strcmp(inps[1],"--version") ){      name = (TString)inps[1];
54        info();      for ( int i = 0; i < numinp; i++ ){
55        return(0);        
56      };        if ( !strcmp(inps[i],"--version") ){
57      if ( !strcmp(inps[1],"-h") || !strcmp(inps[1],"--help") || numinp>7 ){          info();
58        usage();          return(0);
59        return(0);        };
60      } else {        if ( !strcmp(inps[i],"-h") || !strcmp(inps[i],"--help") ){
61        if ( !strcmp(inps[1],"-v") || !strcmp(inps[1],"--verbose") ){          usage();
62          beverbose = true;          return(0);
63          if ( numinp == 2 ) {        };
64            info();        if ( !strcmp(inps[i],"-name") ) {
65            return(0);              if ( numinp-1 < i+1 ){
66              usage();
67              exit(-3);
68            };
69            name = (TString)inps[i+1];
70          };
71          if ( !strcmp(inps[i],"-outDir") ) {
72            if ( numinp-1 < i+1 ){
73              usage();
74              exit(-3);
75          };          };
76          if ( numinp >= 3 ) name = (TString)inps[2];          outdir = (TString)inps[i+1];
         if ( numinp >= 4 ) calibno = strtoull(inps[3],&pEnd,0);  
         if ( numinp >= 5 ) outdir = (TString)inps[4];  
         if ( numinp >= 6 ) matra = atoi(inps[5]);  
         if ( numinp == 7 ) format = (TString)inps[6];  
       } else {  
         if ( numinp >= 2 ) name = (TString)inps[1];  
         if ( numinp >= 3 ) calibno = strtoull(inps[2],&pEnd,0);  
         if ( numinp >= 4 ) outdir = (TString)inps[3];  
         if ( numinp >= 5 ) matra = atoi(inps[4]);  
         if ( numinp == 6 ) format = (TString)inps[5];  
77        };        };
78          if ( !strcmp(inps[i],"-format") ) {
79            if ( numinp-1 < i+1 ){
80              usage();
81              exit(-3);
82            };
83            format = (TString)inps[i+1];
84          };
85    
86          if ( !strcmp(inps[i],"-entry") ) {
87            if ( numinp-1 < i+1 ){
88              usage();
89              exit(-3);
90            };
91            calibno = strtoull(inps[i+1],&pEnd,0);
92          };
93          if ( !strcmp(inps[i],"-matra") ) {
94            matra = 1;
95          };    
96          if ( !strcmp(inps[i],"-interactive") ) {
97            iactive = true;
98          };    
99          if ( !strcmp(inps[i],"-wait") ) {
100            w4i = true;
101          };    
102          if ( !strcmp(inps[i],"-v") || !strcmp(inps[i],"--verbose") ) beverbose = true;
103      };      };
104      } else {
105        //
106        // no input parameters exit with error, we need at least the run id.
107        //
108        usage();
109        return(0);    
110    };    };
111    //    //
112    if ( !beverbose ){    if ( !beverbose ){
# Line 82  int main(int numinp, char *inps[]){ Line 119  int main(int numinp, char *inps[]){
119    };    };
120    printf("\n Welcome to FCaloCHKCALIB! \n");    printf("\n Welcome to FCaloCHKCALIB! \n");
121    //    //
122    FCaloCHKCALIB(name,calibno,outdir,matra,format);    FCaloCHKCALIB(name,calibno,outdir,matra,format,iactive,w4i);
123    //    //
124    if ( !beverbose ) close(nul);    if ( !beverbose ) close(nul);
125    return(0);    return(0);

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.6

  ViewVC Help
Powered by ViewVC 1.1.23