Skip to content
Snippets Groups Projects
Commit ea3f2999 authored by Scott Snyder's avatar Scott Snyder Committed by Adam Edward Barton
Browse files

RootAuxDynIO: Fix renaming with rntuple.

RootAuxDynIO: Fix renaming with rntuple.

Fix xAOD input renaming for rntuples.
parent 4dec114c
No related branches found
No related tags found
17 merge requests!78241Draft: FPGATrackSim: GenScan code refactor,!78236Draft: Switching Streams https://its.cern.ch/jira/browse/ATR-27417,!78056AFP monitoring: new synchronization and cleaning,!78041AFP monitoring: new synchronization and cleaning,!77990Updating TRT chip masks for L1TRT trigger simulation - ATR-28372,!77731Draft: Updates to ZDC reconstruction,!77728Draft: updates to ZDC reconstruction,!77522Draft: sTGC Pad Trigger Emulator,!76725ZdcNtuple: Fix cppcheck warning.,!76611L1CaloFEXByteStream: Fix out-of-bounds array accesses.,!76475Punchthrough AF3 implementation in FastG4,!76474Punchthrough AF3 implementation in FastG4,!76343Draft: MooTrackBuilder: Recalibrate NSW hits in refine method,!75729New implementation of ZDC nonlinear FADC correction.,!75703Draft: Update to HI han config for HLT jets,!75420RootAuxDynIO: Fix renaming with rntuple.,!75127Draft: Seeder types rebase2 grid fix
......@@ -119,6 +119,9 @@ namespace RootAuxDynIO
if( m_storeFieldName.rfind( field_type, 0 ) != std::string::npos ) {
m_key = m_storeFieldName.substr( field_type.size()+1 );
}
else if( m_storeFieldName.ends_with( "Aux:" ) ) {
m_key = m_storeFieldName.substr( 0, m_storeFieldName.size() - 4 );
}
ATH_MSG_VERBOSE("field name=" << m_storeFieldName << " field_prefix=" << field_prefix << " key=" << m_key);
TClass *tc = TClass::GetClass( field_type.c_str() );
if( tc ) {
......@@ -197,15 +200,7 @@ namespace RootAuxDynIO
return fieldInfo;
}
bool isFieldFound = false;
if( !fieldInfo.fieldName.empty() ) {
const string field_prefix = RootAuxDynIO::auxFieldName("", m_storeFieldName);
const string attr_infile = fieldInfo.fieldName.substr(field_prefix.size());
isFieldFound = (attr_infile == fieldInfo.attribName);
}
if( !isFieldFound ) {
if( fieldInfo.fieldName.empty() ) {
// mark initialized here so it remembers this field was not found
fieldInfo.status = FieldInfo::NotFound;
return fieldInfo;
......
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