1 |
mocchiut |
1.1 |
// |
2 |
|
|
// FCaloQLOOK.cc -- standalone program to call the FCaloQLOOK macro. |
3 |
|
|
// by Emiliano Mocchiutti |
4 |
|
|
// |
5 |
|
|
// Version 1.00 (2005/02/28) |
6 |
|
|
// |
7 |
|
|
// Changelog: |
8 |
|
|
// |
9 |
|
|
// 0.00 - 1.00 : working. |
10 |
|
|
// |
11 |
mocchiut |
1.2 |
#include <TSystem.h> |
12 |
mocchiut |
1.1 |
#include <iostream> |
13 |
mocchiut |
1.6 |
#include <sstream> |
14 |
mocchiut |
1.12 |
#include <cstdlib> |
15 |
mocchiut |
1.2 |
#include <sys/types.h> |
16 |
|
|
#include <unistd.h> |
17 |
|
|
#include <stdio.h> |
18 |
mocchiut |
1.1 |
// |
19 |
mocchiut |
1.5 |
extern void FCaloQLOOK(TString, int, int, TString, TString, Bool_t, Bool_t); |
20 |
mocchiut |
1.1 |
extern void info(); |
21 |
mocchiut |
1.6 |
extern void stringcopy(TString& , const TString& , Int_t , Int_t ); |
22 |
mocchiut |
1.1 |
using namespace std; |
23 |
|
|
// |
24 |
mocchiut |
1.2 |
void usage(){ |
25 |
mocchiut |
1.3 |
printf("\nUsage:\n\n FCaloQLOOK [-name] file [OPTIONS] \n"); |
26 |
|
|
printf("\n file must be in the form: /path/to/filesfromyoda/ZZZ_XXX_YYYYY_cln2.root \n"); |
27 |
|
|
printf( " if in the first position \"-name\" can be omitted. \n"); |
28 |
|
|
printf("\n OPTIONS: \n"); |
29 |
|
|
printf("\n -v be verbose \n"); |
30 |
|
|
printf( " -fromev from_event first event to analyze [default = 0] \n"); |
31 |
|
|
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"); |
33 |
mocchiut |
1.4 |
printf( " -format format format for output file (without . )[default = png] \n"); |
34 |
mocchiut |
1.6 |
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 |
mocchiut |
1.3 |
printf("\nExamples: "); |
37 |
|
|
printf("\n\nFCaloQLOOK /home/pamela/filesfromyoda/dw_050301_00100.root \n"); |
38 |
|
|
printf("\nFCaloQLOOK -v -name /home/pamela/filesfromyoda/dw_050301_00100.root \n"); |
39 |
|
|
printf("\nFCaloQLOOK /home/pamela/filesfromyoda/DW_050523_01600.root -v -fromev 0 -toev 0 -outDir /tmp/ -format gif \n\n"); |
40 |
mocchiut |
1.2 |
} |
41 |
|
|
|
42 |
mocchiut |
1.1 |
int main(int numinp, char *inps[]){ |
43 |
|
|
TString name; |
44 |
mocchiut |
1.6 |
TString outdir = "./"; |
45 |
mocchiut |
1.4 |
TString format = "png"; |
46 |
mocchiut |
1.2 |
int fromev = 0; |
47 |
|
|
int toev = 0; |
48 |
|
|
int nul = 0; |
49 |
|
|
bool beverbose = false; |
50 |
mocchiut |
1.5 |
Bool_t iactive = false; |
51 |
|
|
Bool_t w4i = false; |
52 |
mocchiut |
1.3 |
// |
53 |
mocchiut |
1.2 |
if ( numinp > 1 ){ |
54 |
mocchiut |
1.3 |
name = (TString)inps[1]; |
55 |
|
|
for ( int i = 0; i < numinp; i++ ){ |
56 |
|
|
|
57 |
|
|
if ( !strcmp(inps[i],"--version") ){ |
58 |
|
|
info(); |
59 |
|
|
return(0); |
60 |
|
|
}; |
61 |
|
|
if ( !strcmp(inps[i],"-h") || !strcmp(inps[i],"--help") ){ |
62 |
|
|
usage(); |
63 |
|
|
return(0); |
64 |
|
|
}; |
65 |
|
|
if ( !strcmp(inps[i],"-name") ) { |
66 |
|
|
if ( numinp-1 < i+1 ){ |
67 |
|
|
usage(); |
68 |
|
|
exit(-3); |
69 |
|
|
}; |
70 |
|
|
name = (TString)inps[i+1]; |
71 |
|
|
}; |
72 |
|
|
if ( !strcmp(inps[i],"-outDir") ) { |
73 |
|
|
if ( numinp-1 < i+1 ){ |
74 |
|
|
usage(); |
75 |
|
|
exit(-3); |
76 |
|
|
}; |
77 |
|
|
outdir = (TString)inps[i+1]; |
78 |
|
|
}; |
79 |
|
|
if ( !strcmp(inps[i],"-format") ) { |
80 |
|
|
if ( numinp-1 < i+1 ){ |
81 |
|
|
usage(); |
82 |
|
|
exit(-3); |
83 |
|
|
}; |
84 |
|
|
format = (TString)inps[i+1]; |
85 |
|
|
}; |
86 |
|
|
|
87 |
|
|
if ( !strcmp(inps[i],"-fromev") ) { |
88 |
|
|
if ( numinp-1 < i+1 ){ |
89 |
|
|
usage(); |
90 |
|
|
exit(-3); |
91 |
mocchiut |
1.2 |
}; |
92 |
mocchiut |
1.3 |
fromev = atoi(inps[i+1]); |
93 |
mocchiut |
1.1 |
}; |
94 |
mocchiut |
1.3 |
if ( !strcmp(inps[i],"-toev") ) { |
95 |
|
|
if ( numinp-1 < i+1 ){ |
96 |
|
|
usage(); |
97 |
|
|
exit(-3); |
98 |
|
|
}; |
99 |
|
|
toev = atoi(inps[i+1]); |
100 |
|
|
}; |
101 |
mocchiut |
1.5 |
if ( !strcmp(inps[i],"-interactive") ) { |
102 |
|
|
iactive = true; |
103 |
|
|
}; |
104 |
|
|
if ( !strcmp(inps[i],"-wait") ) { |
105 |
|
|
w4i = true; |
106 |
|
|
}; |
107 |
mocchiut |
1.3 |
if ( !strcmp(inps[i],"-v") || !strcmp(inps[i],"--verbose") ) beverbose = true; |
108 |
mocchiut |
1.1 |
}; |
109 |
mocchiut |
1.3 |
} else { |
110 |
|
|
// |
111 |
|
|
// no input parameters exit with error, we need at least the run id. |
112 |
|
|
// |
113 |
|
|
usage(); |
114 |
|
|
return(0); |
115 |
mocchiut |
1.2 |
}; |
116 |
|
|
// |
117 |
mocchiut |
1.7 |
stringstream figsave; |
118 |
mocchiut |
1.2 |
if ( !beverbose ){ |
119 |
|
|
// |
120 |
mocchiut |
1.6 |
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 |
mocchiut |
1.2 |
// redirect to /dev/null the stdout and stderr |
138 |
mocchiut |
1.1 |
// |
139 |
mocchiut |
1.7 |
nul = open(figsave.str().c_str(), O_CREAT | O_RDWR,S_IREAD | S_IWRITE | S_IRGRP | S_IWGRP | S_IROTH); |
140 |
mocchiut |
1.2 |
dup2(nul,1); |
141 |
|
|
dup2(nul,2); |
142 |
mocchiut |
1.1 |
}; |
143 |
mocchiut |
1.11 |
printf("\n Welcome to FCaloQLOOK! v1r23 \n"); |
144 |
mocchiut |
1.1 |
// |
145 |
mocchiut |
1.5 |
FCaloQLOOK(name,fromev,toev,outdir,format,iactive,w4i); |
146 |
mocchiut |
1.2 |
// |
147 |
|
|
if ( !beverbose ) close(nul); |
148 |
mocchiut |
1.1 |
// |
149 |
|
|
return(0); |
150 |
|
|
} |