10 |
// |
// |
11 |
#include <TSystem.h> |
#include <TSystem.h> |
12 |
#include <iostream> |
#include <iostream> |
13 |
|
#include <sstream> |
14 |
|
#include <cstdlib> |
15 |
#include <sys/types.h> |
#include <sys/types.h> |
16 |
#include <unistd.h> |
#include <unistd.h> |
17 |
#include <stdio.h> |
#include <stdio.h> |
18 |
// |
// |
19 |
extern void FCaloQLOOK(TString, int, int, TString, TString); |
extern void FCaloQLOOK(TString, int, int, TString, TString, Bool_t, Bool_t); |
20 |
extern void info(); |
extern void info(); |
21 |
|
extern void stringcopy(TString& , const TString& , Int_t , Int_t ); |
22 |
using namespace std; |
using namespace std; |
23 |
// |
// |
24 |
void usage(){ |
void usage(){ |
31 |
printf( " -toev to_event last event to analyze [default = 0] \n"); |
printf( " -toev to_event last event to analyze [default = 0] \n"); |
32 |
printf( " -oudDir output_dir path of the output directory [default = ./] (with or without final '/') \n"); |
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"); |
printf( " -format format format for output file (without . )[default = png] \n"); |
34 |
|
printf( " -interactive shows figures on the screen [default = non-interactive] \n"); |
35 |
|
printf( " -wait wait for canvas to be closed before going on [default = don't wait] \n"); |
36 |
printf("\nExamples: "); |
printf("\nExamples: "); |
37 |
printf("\n\nFCaloQLOOK /home/pamela/filesfromyoda/dw_050301_00100.root \n"); |
printf("\n\nFCaloQLOOK /home/pamela/filesfromyoda/dw_050301_00100.root \n"); |
38 |
printf("\nFCaloQLOOK -v -name /home/pamela/filesfromyoda/dw_050301_00100.root \n"); |
printf("\nFCaloQLOOK -v -name /home/pamela/filesfromyoda/dw_050301_00100.root \n"); |
41 |
|
|
42 |
int main(int numinp, char *inps[]){ |
int main(int numinp, char *inps[]){ |
43 |
TString name; |
TString name; |
44 |
TString outdir = ""; |
TString outdir = "./"; |
45 |
TString format = "png"; |
TString format = "png"; |
46 |
int fromev = 0; |
int fromev = 0; |
47 |
int toev = 0; |
int toev = 0; |
48 |
int nul = 0; |
int nul = 0; |
49 |
bool beverbose = false; |
bool beverbose = false; |
50 |
|
Bool_t iactive = false; |
51 |
|
Bool_t w4i = false; |
52 |
// |
// |
53 |
if ( numinp > 1 ){ |
if ( numinp > 1 ){ |
54 |
name = (TString)inps[1]; |
name = (TString)inps[1]; |
98 |
}; |
}; |
99 |
toev = atoi(inps[i+1]); |
toev = atoi(inps[i+1]); |
100 |
}; |
}; |
101 |
|
if ( !strcmp(inps[i],"-interactive") ) { |
102 |
|
iactive = true; |
103 |
|
}; |
104 |
|
if ( !strcmp(inps[i],"-wait") ) { |
105 |
|
w4i = true; |
106 |
|
}; |
107 |
if ( !strcmp(inps[i],"-v") || !strcmp(inps[i],"--verbose") ) beverbose = true; |
if ( !strcmp(inps[i],"-v") || !strcmp(inps[i],"--verbose") ) beverbose = true; |
108 |
}; |
}; |
109 |
} else { |
} else { |
114 |
return(0); |
return(0); |
115 |
}; |
}; |
116 |
// |
// |
117 |
|
stringstream figsave; |
118 |
if ( !beverbose ){ |
if ( !beverbose ){ |
119 |
// |
// |
120 |
|
const string fil = gSystem->BaseName(name.Data()); |
121 |
|
Int_t posiz = fil.find(".root"); |
122 |
|
// |
123 |
|
TString file2; |
124 |
|
if ( posiz == -1 ){ |
125 |
|
file2 = gSystem->BaseName(name.Data()); |
126 |
|
} else { |
127 |
|
Int_t posiz2 = 0; |
128 |
|
stringcopy(file2,gSystem->BaseName(name.Data()),posiz2,posiz); |
129 |
|
}; |
130 |
|
const char *figrec = file2; |
131 |
|
// |
132 |
|
const char *outDir = outdir; |
133 |
|
figsave.str(""); |
134 |
|
figsave << outDir << "/" ; |
135 |
|
figsave << figrec << "_CaloQLOOK.txt"; |
136 |
|
// |
137 |
// redirect to /dev/null the stdout and stderr |
// redirect to /dev/null the stdout and stderr |
138 |
// |
// |
139 |
nul = open("/dev/null", O_CREAT | O_RDWR,S_IREAD | S_IWRITE); |
nul = open(figsave.str().c_str(), O_CREAT | O_RDWR,S_IREAD | S_IWRITE | S_IRGRP | S_IWGRP | S_IROTH); |
140 |
dup2(nul,1); |
dup2(nul,1); |
141 |
dup2(nul,2); |
dup2(nul,2); |
142 |
}; |
}; |
143 |
printf("\n Welcome to FCaloQLOOK! \n"); |
printf("\n Welcome to FCaloQLOOK! v1r23 \n"); |
144 |
// |
// |
145 |
FCaloQLOOK(name,fromev,toev,outdir,format); |
FCaloQLOOK(name,fromev,toev,outdir,format,iactive,w4i); |
146 |
// |
// |
147 |
if ( !beverbose ) close(nul); |
if ( !beverbose ) close(nul); |
148 |
// |
// |