Skip to content
Snippets Groups Projects
Commit a3422ebd authored by Andreas Salzburger's avatar Andreas Salzburger
Browse files

introducing ROOT file check and exception throwing in case ...

parent 40d8b085
No related branches found
No related tags found
No related merge requests found
......@@ -111,6 +111,10 @@ FW::Root::RootTrackParametersWriter<T>::RootTrackParametersWriter(
, m_outputTree(nullptr)
{
m_outputFile = TFile::Open(m_cfg.filePath.c_str(), m_cfg.fileMode.c_str());
if (!m_outputFile) {
throw std::ios_base::failure("Could not open '" + m_cfg.filePath);
}
m_outputFile->cd();
m_outputTree
= new TTree(m_cfg.treeName.c_str(), "TTree from TrackParametersWriter");
......@@ -154,10 +158,8 @@ template <class T>
FW::ProcessCode
FW::Root::RootTrackParametersWriter<T>::endRun()
{
if (m_outputFile) {
m_outputFile->cd();
m_outputTree->Write();
m_outputFile->Close();
}
m_outputFile->cd();
m_outputTree->Write();
m_outputFile->Close();
return FW::ProcessCode::SUCCESS;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment