15 |
|
|
16 |
|
printHelp () if $opt{"help"} || !$opt{"prefix"}; |
17 |
|
my $files = processArgs (\@ARGV); |
18 |
< |
my @rootFiles; |
18 |
> |
my %rootFiles; |
19 |
> |
my %weights; |
20 |
|
my @weights; |
21 |
|
my $nGoodJobs = 0; |
22 |
|
my $nBadJobs = 0; |
23 |
+ |
my $nIncompleteJobs = 0; |
24 |
|
my $counting = 0; |
25 |
|
my %exitCodes; |
26 |
+ |
my %signals; |
27 |
+ |
my %partial; |
28 |
|
my %crossSections; |
29 |
+ |
my %dirs; |
30 |
|
my $integratedLuminosity = 10000; |
31 |
|
$integratedLuminosity = $opt{"luminosity"} if $opt{"luminosity"}; |
32 |
|
my $cutFlow = "cutFlow"; |
46 |
|
close (FILE); |
47 |
|
my $fileContents = join ("", @fileContents); |
48 |
|
$fileContents =~ s/\n/ /g; |
49 |
< |
$fileContents =~ s/.*\(return value ([^)]*)\).*/$1/g; |
50 |
< |
$nGoodJobs++; |
51 |
< |
if ($fileContents != 0) |
49 |
> |
$counting = 1; |
50 |
> |
if ($fileContents =~ m/return value/) |
51 |
> |
{ |
52 |
> |
$fileContents =~ s/.*\(return value ([^)]*)\).*/$1/g; |
53 |
> |
$nGoodJobs++; |
54 |
> |
print "WARNING: Nonzero exit code for job $jobNumber. (return value $fileContents)\n" if $fileContents != 0; |
55 |
> |
$exitCodes{$dir}{$jobNumber} = $fileContents; |
56 |
> |
} |
57 |
> |
elsif ($fileContents =~ m/signal/) |
58 |
|
{ |
59 |
+ |
$fileContents =~ s/.*\(signal ([^)]*)\).*/$1/g; |
60 |
|
$nBadJobs++; |
61 |
< |
print "Skipping job $jobNumber. (return value $fileContents)\n"; |
61 |
> |
print "WARNING: Skipping job $jobNumber. (signal $fileContents)\n"; |
62 |
> |
$signals{$dir}{$jobNumber} = $fileContents; |
63 |
> |
} |
64 |
> |
else |
65 |
> |
{ |
66 |
> |
$nIncompleteJobs++; |
67 |
> |
$partial{$dir}{$jobNumber} = 1; |
68 |
|
} |
51 |
– |
$exitCodes{$dir}{$jobNumber} = $fileContents; |
52 |
– |
$counting = 1; |
69 |
|
} |
70 |
|
if ($file =~ m/^.*\/crossSectionInPicobarn\.txt$/) |
71 |
|
{ |
82 |
|
my $dir = $file; |
83 |
|
$dir =~ s/^(.*)\/[^\/]*$/$1/; |
84 |
|
my $badJob = 0; |
85 |
+ |
my $jobNumber; |
86 |
|
if ($file =~ m/^.*_[^_]*\.root$/) |
87 |
|
{ |
88 |
< |
my $jobNumber = $file; |
88 |
> |
$jobNumber = $file; |
89 |
|
$jobNumber =~ s/^.*_([^_]*)\.root$/$1/; |
90 |
< |
$badJob = defined $exitCodes{$dir} && defined $exitCodes{$dir}{$jobNumber} && $exitCodes{$dir}{$jobNumber}; |
90 |
> |
$badJob = (defined $signals{$dir} && defined $signals{$dir}{$jobNumber}) || (defined $partial{$dir} && defined $partial{$dir}{$jobNumber}); |
91 |
|
} |
92 |
|
next if $badJob; |
93 |
|
if ($file =~ m/^.*\.root$/) |
94 |
|
{ |
95 |
< |
push (@rootFiles, $file); |
96 |
< |
push (@weights, 1.0); |
95 |
> |
foreach my $arg (@ARGV) |
96 |
> |
{ |
97 |
> |
if (substr ($file, 0, length ($arg)) eq $arg) |
98 |
> |
{ |
99 |
> |
$dirs{$arg} = $dir; |
100 |
> |
if (countEvents ($file, $cutFlow) < 0) |
101 |
> |
{ |
102 |
> |
$nGoodJobs--; |
103 |
> |
$nBadJobs++; |
104 |
> |
print "WARNING: Skipping job $jobNumber. (bad ROOT file)\n"; |
105 |
> |
last; |
106 |
> |
} |
107 |
> |
push (@{$rootFiles{$arg}}, $file); |
108 |
> |
if ($opt{"weight"}) |
109 |
> |
{ |
110 |
> |
push (@weights, $opt{"weight"}) if !($opt{"weight"} =~ m/,/); |
111 |
> |
push (@weights, 1.0) if $opt{"weight"} =~ m/,/; |
112 |
> |
} |
113 |
> |
push (@weights, $opt{"xsection"} * $integratedLuminosity) if !$opt{"weight"} && $opt{"xsection"}; |
114 |
> |
push (@weights, $crossSections{$dir} * $integratedLuminosity) if !$opt{"weight"} && !$opt{"xsection"} && defined $crossSections{$dir}; |
115 |
> |
push (@weights, 1.0) if !$opt{"weight"} && !$opt{"xsection"} && !(defined $crossSections{$dir}); |
116 |
> |
$weights{$arg} = $weights[-1]; |
117 |
> |
} |
118 |
> |
} |
119 |
|
} |
120 |
|
} |
121 |
< |
if (!@rootFiles) |
121 |
> |
if (!%rootFiles) |
122 |
|
{ |
123 |
|
print "Found no ROOT files to merge!\n"; |
124 |
|
exit; |
125 |
|
} |
126 |
< |
my $rootFiles = join (" ", @rootFiles); |
127 |
< |
my $weights = join (",", @weights); |
128 |
< |
system ("mergeTFileServiceHistograms -i $rootFiles -o $opt{'prefix'}.root -w $weights"); |
129 |
< |
my $nTotalEvents = countEvents ("$opt{'prefix'}.root", $cutFlow); |
130 |
< |
unlink ("$opt{'prefix'}.root"); |
92 |
< |
@weights = (); |
93 |
< |
foreach my $file (@$files) |
126 |
> |
my %nTotalEvents; |
127 |
> |
my $nTotalEvents = 0; |
128 |
> |
my @mergedFiles; |
129 |
> |
my @mergedWeights; |
130 |
> |
foreach my $arg (@ARGV) |
131 |
|
{ |
132 |
< |
next if $file eq "."; |
133 |
< |
next if $file eq ".."; |
134 |
< |
my $dir = $file; |
135 |
< |
$dir =~ s/^(.*)\/[^\/]*$/$1/; |
136 |
< |
my $badJob = 0; |
137 |
< |
if ($file =~ m/^.*_[^_]*\.root$/) |
138 |
< |
{ |
139 |
< |
my $jobNumber = $file; |
140 |
< |
$jobNumber =~ s/^.*_([^_]*)\.root$/$1/; |
141 |
< |
$badJob = defined $exitCodes{$dir} && defined $exitCodes{$dir}{$jobNumber} && $exitCodes{$dir}{$jobNumber}; |
142 |
< |
} |
143 |
< |
next if $badJob; |
144 |
< |
if ($file =~ m/^.*\.root$/) |
145 |
< |
{ |
146 |
< |
push (@weights, $opt{"weight"}) if $opt{"weight"}; |
147 |
< |
push (@weights, ($opt{"xsection"} * $integratedLuminosity) / $nTotalEvents) if !$opt{"weight"} && $opt{"xsection"}; |
148 |
< |
push (@weights, ($crossSections{$dir} * $integratedLuminosity) / $nTotalEvents) if !$opt{"weight"} && !$opt{"xsection"} && defined $crossSections{$dir}; |
149 |
< |
push (@weights, 1.0) if !$opt{"weight"} && !$opt{"xsection"} && !(defined $crossSections{$dir}); |
150 |
< |
} |
132 |
> |
my $rootFiles = join (" ", @{$rootFiles{$arg}}); |
133 |
> |
my $tmpName = $arg . "_" . "$opt{'prefix'}.root"; |
134 |
> |
$tmpName =~ s/\//_/g; |
135 |
> |
system ("mergeTFileServiceHistograms -i $rootFiles -o $tmpName"); |
136 |
> |
my $count = countEvents ($tmpName, $cutFlow); |
137 |
> |
system ("cutFlowLimits $tmpName"); |
138 |
> |
$nTotalEvents{$arg} = $count; |
139 |
> |
$nTotalEvents += $count; |
140 |
> |
$weights{$arg} /= $count if !$opt{"weight"} && $opt{"xsection"}; |
141 |
> |
$weights{$arg} /= $count if !$opt{"weight"} && !$opt{"xsection"} && defined $crossSections{$dirs{$arg}}; |
142 |
> |
push (@mergedFiles, $tmpName); |
143 |
> |
push (@mergedWeights, $weights{$arg}); |
144 |
> |
} |
145 |
> |
my $mergedFiles = join (" ", @mergedFiles); |
146 |
> |
my $mergedWeights = join (",", @mergedWeights); |
147 |
> |
$mergedWeights = $opt{"weight"} if $opt{"weight"} && $opt{"weight"} =~ m/,/; |
148 |
> |
system ("mergeTFileServiceHistograms -i $mergedFiles -o $opt{'prefix'}.root -w $mergedWeights"); |
149 |
> |
foreach my $mergedFile (@mergedFiles) |
150 |
> |
{ |
151 |
> |
unlink ("$mergedFile"); |
152 |
|
} |
153 |
< |
my $weights = join (",", @weights); |
154 |
< |
system ("mergeTFileServiceHistograms -i $rootFiles -o $opt{'prefix'}.root -w $weights"); |
153 |
> |
print "=============================================\n"; |
154 |
> |
my $output = sprintf "Cross-section of samples:\n"; |
155 |
> |
my $printOutput = 0; |
156 |
> |
foreach my $arg (keys %weights) |
157 |
> |
{ |
158 |
> |
my $shortArg = $arg; |
159 |
> |
$shortArg =~ s/^.*\/([^\/]*)$/$1/; |
160 |
> |
$output = sprintf "%s $shortArg: %.5g pb\n", $output, ($crossSections{$dirs{$arg}}); |
161 |
> |
$printOutput = 1 if $weights{$arg} != 1; |
162 |
> |
} |
163 |
> |
print $output if $printOutput; |
164 |
> |
|
165 |
> |
my $output = sprintf "Effective luminosities of samples:\n"; |
166 |
> |
my $printOutput = 0; |
167 |
> |
foreach my $arg (keys %weights) |
168 |
> |
{ |
169 |
> |
my $shortArg = $arg; |
170 |
> |
$shortArg =~ s/^.*\/([^\/]*)$/$1/; |
171 |
> |
$output = sprintf "%s $shortArg: %.5g/fb\n", $output, ($integratedLuminosity / (1000.0 * $weights{$arg})) if $weights{$arg} != 1; |
172 |
> |
$printOutput = 1 if $weights{$arg} != 1; |
173 |
> |
} |
174 |
> |
print $output if $printOutput; |
175 |
> |
|
176 |
> |
$output = sprintf "Weights for target luminosity of %g/fb:\n", ($integratedLuminosity / 1000.0); |
177 |
> |
$printOutput = 0; |
178 |
> |
foreach my $arg (keys %weights) |
179 |
> |
{ |
180 |
> |
my $shortArg = $arg; |
181 |
> |
$shortArg =~ s/^.*\/([^\/]*)$/$1/; |
182 |
> |
$output = sprintf "%s $shortArg: %.5g\n", $output, $weights{$arg} if $weights{$arg} != 1; |
183 |
> |
$printOutput = 1 if $weights{$arg} != 1; |
184 |
> |
} |
185 |
> |
print $output if $printOutput; |
186 |
> |
|
187 |
|
my $goodEvents = countEvents ("$opt{'prefix'}.root", $cutFlow); |
188 |
|
print "$nGoodJobs jobs ran successfully over $nTotalEvents ($goodEvents weighted) events.\n" if $counting; |
189 |
|
print "$nBadJobs jobs failed to run.\n" if $counting; |
190 |
+ |
print "$nIncompleteJobs jobs have not finished.\n" if $counting; |
191 |
+ |
print "=============================================\n"; |
192 |
|
|
193 |
|
sub |
194 |
|
processArgs |
247 |
|
printf "%-29s%s\n", " -p, --prefix PREFIX", "output is named PREFIX.root"; |
248 |
|
printf "%-29s%s\n", " -w, --weight WEIGHT", "scale the output by WEIGHT, overriding the"; |
249 |
|
printf "%-29s%s\n", " ", "automatic weighting using the cross section from"; |
250 |
< |
printf "%-29s%s\n", " ", "the database"; |
250 |
> |
printf "%-29s%s\n", " ", "the database; WEIGHT may be a single number or a"; |
251 |
> |
printf "%-29s%s\n", " ", "comma-separated list, one for each input file"; |
252 |
|
printf "%-29s%s\n", " -x, --xsection XSECTION", "use XSECTION to weight the histograms instead of"; |
253 |
|
printf "%-29s%s\n", " ", "the value in the database"; |
254 |
|
|
281 |
|
my $cutFlow = shift; |
282 |
|
|
283 |
|
my $output = `getEventsFromCutFlow $file $cutFlow`; |
284 |
< |
if ($output =~ m/Did not find a histogram named/) |
284 |
> |
if ($output =~ m/Did not find a histogram named/ || $output =~ m/appears to be empty/ || $output =~ m/Failed to open/) |
285 |
|
{ |
286 |
|
print $output; |
287 |
|
return -1; |