Skip to content
Snippets Groups Projects

Minor TEvent fixes

Merged Tadej Novak requested to merge tadej/athena:asg/tevent into master
2 files
+ 4
4
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -305,8 +305,8 @@ namespace xAOD {
@@ -305,8 +305,8 @@ namespace xAOD {
// Get the type:
// Get the type:
::TClass* cl =
::TClass* cl =
::TClass::GetClass( ef_itr->second.className().c_str() );
::TClass::GetClass( ef_itr->second.className().c_str() );
const std::type_info* ti = cl->GetTypeInfo();
const std::type_info* ti = ( cl ? cl->GetTypeInfo() : nullptr );
if( ( ! cl->IsLoaded() ) || ( ! ti ) ) {
if( ( ! cl ) || ( ! cl->IsLoaded() ) || ( ! ti ) ) {
Warning( "xAOD::TEvent::dump",
Warning( "xAOD::TEvent::dump",
"Unknown type (%s) found in the event format",
"Unknown type (%s) found in the event format",
ef_itr->second.className().c_str() );
ef_itr->second.className().c_str() );
@@ -424,7 +424,7 @@ namespace xAOD {
@@ -424,7 +424,7 @@ namespace xAOD {
}
}
// Check if the EventFormat branch is available:
// Check if the EventFormat branch is available:
static const std::string eventFormatBranchName =
const std::string eventFormatBranchName =
Utils::getFirstBranchMatch( m_inMetaTree, "EventFormat");
Utils::getFirstBranchMatch( m_inMetaTree, "EventFormat");
if( ! m_inMetaTree->GetBranch( eventFormatBranchName.c_str() ) ) {
if( ! m_inMetaTree->GetBranch( eventFormatBranchName.c_str() ) ) {
// This can happen when the file was produced by an Athena job that
// This can happen when the file was produced by an Athena job that
Loading