We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8280dc9 commit 162af63Copy full SHA for 162af63
1 file changed
Framework/AODMerger/src/aodMerger.cxx
@@ -123,8 +123,8 @@ int main(int argc, char* argv[])
123
printf("Processing input file: %s\n", line.Data());
124
125
auto inputFile = TFile::Open(line);
126
- if (!inputFile) {
127
- 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());
128
if (skipNonExistingFiles) {
129
continue;
130
} else {
0 commit comments