We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a73c085 commit ab5034dCopy full SHA for ab5034d
Framework/AODMerger/src/aodMerger.cxx
@@ -128,8 +128,8 @@ int main(int argc, char* argv[])
128
printf("Processing input file: %s\n", line.Data());
129
130
auto inputFile = TFile::Open(line);
131
- if (!inputFile) {
132
- printf("Error: Could not open input file %s.\n", line.Data());
+ if (!inputFile || inputFile->IsZombie()) {
+ printf("Error: %s input file %s.\n", !inputFile ? "Could not open" : "Zombie", line.Data());
133
if (skipNonExistingFiles) {
134
continue;
135
} else {
0 commit comments