From 85fef30ea52a7725ec1e35818f6d93498bad705a Mon Sep 17 00:00:00 2001 From: Peter Van Gemmeren <peter.van.gemmeren@cern.ch> Date: Mon, 30 Jan 2017 18:56:29 +0100 Subject: [PATCH] Jira ATEAM-328, get rid of some output (RootFileTools-00-01-61) * Tagging RootFileTools-00-01-61. * src/merge.cxx: Jira ATEAM-328, get rid of some output. --- Database/AthenaPOOL/RootFileTools/src/merge.cxx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Database/AthenaPOOL/RootFileTools/src/merge.cxx b/Database/AthenaPOOL/RootFileTools/src/merge.cxx index 2afe3818d93..cfcd11cddb0 100644 --- a/Database/AthenaPOOL/RootFileTools/src/merge.cxx +++ b/Database/AthenaPOOL/RootFileTools/src/merge.cxx @@ -274,20 +274,11 @@ bool DbDatabaseMerger::empty(const std::string& fid, const std::set<std::string> /// Check if a database exists bool DbDatabaseMerger::exists(const std::string& fid, bool dbg) const { Bool_t result = gSystem->AccessPathName(fid.c_str(), kFileExists); - if ( result == kFALSE ) { - if ( s_dbg ) cout << "file " << fid << " EXISTS!" << endl; - } else if ( dbg ) { - cout << "file " << fid << " DOES NOT EXIST!" << endl; - } return result == kFALSE; } /// Attach to existing output file for further merging DbStatus DbDatabaseMerger::attach(const string& fid) { - if ( !exists(fid) ) { - cout << "+++ Cannot attach output file " << fid << " --- file does not exist." << endl; - return ERROR; - } if ( !m_output ) { m_output = TFile::Open(fid.c_str(),"UPDATE"); if ( !m_output ) { @@ -343,9 +334,6 @@ DbStatus DbDatabaseMerger::create(const string& fid) { if ( m_output ) { cout << "+++ Another output file " << m_output->GetName() << " is already open. Request denied." << endl; return ERROR; - } else if ( exists(fid) ) { - cout << "+++ Cannot create output file " << fid << " --- file already exists." << endl; - return ERROR; } m_output = TFile::Open(fid.c_str(),"RECREATE"); if ( m_output && !m_output->IsZombie() ) { -- GitLab