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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.6 - (show annotations) (download)
Tue Aug 11 14:20:05 2009 UTC (15 years, 4 months ago) by mocchiut
Branch: MAIN
Changes since 1.5: +1 -0 lines
Compilation warnings with gcc >= 4.3 fixed

1 //
2 // CaloCHKCALIB.cc -- standalone program to call the CaloCHKCALIB macro.
3 // by Emiliano Mocchiutti
4 //
5 // Version 1.00 (2005/08/16)
6 //
7 // Changelog:
8 //
9 // 0.00 - 1.00 : working.
10 //
11 #include <TSystem.h>
12 #include <iostream>
13 #include <sys/types.h>
14 #include <cstdlib>
15 #include <unistd.h>
16 #include <stdio.h>
17 //
18 extern void FCaloCHKCALIB(TString, Long64_t, TString, int, TString, Bool_t, Bool_t);
19 extern void info();
20 using namespace std;
21 //
22 void usage(){
23 printf("\nUsage:\n\n FCaloCHKCALIB [-name] file [OPTIONS] \n");
24 printf("\n file must be in the form: /path/to/filesfromyoda/ZZZ_XXX_YYYYY_cln2.root \n");
25 printf( " if in the first position \"-name\" can be omitted. \n");
26 printf("\n OPTIONS: \n");
27 printf("\n -v be verbose \n");
28 printf( " -entry entry calibration entry to analyze [default = 0, all] \n");
29 printf( " -interactive shows figures on the screen [default = non-interactive] \n");
30 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[]){
41 TString name;
42 TString outdir = "./";
43 TString format = "png";
44 int matra = 0;
45 Long64_t calibno = 0;
46 char *pEnd;
47 int nul = 0;
48 bool beverbose = false;
49 Bool_t iactive = false;
50 Bool_t w4i = false;
51
52 if ( numinp > 1 ){
53 name = (TString)inps[1];
54 for ( int i = 0; i < numinp; i++ ){
55
56 if ( !strcmp(inps[i],"--version") ){
57 info();
58 return(0);
59 };
60 if ( !strcmp(inps[i],"-h") || !strcmp(inps[i],"--help") ){
61 usage();
62 return(0);
63 };
64 if ( !strcmp(inps[i],"-name") ) {
65 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 outdir = (TString)inps[i+1];
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 ){
113 //
114 // redirect to /dev/null the stdout and stderr
115 //
116 nul = open("/dev/null", O_CREAT | O_RDWR,S_IREAD | S_IWRITE);
117 dup2(nul,1);
118 dup2(nul,2);
119 };
120 printf("\n Welcome to FCaloCHKCALIB! \n");
121 //
122 FCaloCHKCALIB(name,calibno,outdir,matra,format,iactive,w4i);
123 //
124 if ( !beverbose ) close(nul);
125 return(0);
126 }

  ViewVC Help
Powered by ViewVC 1.1.23