diff --git a/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.cxx b/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.cxx index 40c6c5a7bd79898c85390d3afcb9966becf2c50b..04fc9af9ba9abeec1ccab6971958057066e82010 100644 --- a/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.cxx +++ b/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.cxx @@ -56,16 +56,19 @@ StatusCode TriggerEDMSerialiserTool::initialize() { xAOD::AuxSelection sel; if ( typeKeyAux.find('.') != std::string::npos ) { - ATH_MSG_DEBUG( "with aux content: " ); std::string allVars = typeKeyAux.substr( typeKeyAux.find('.')+1 ); - std::set<std::string> variableNames; - boost::split( variableNames, allVars, [](const char c){ return c == '.'; } ); - for ( auto el: variableNames ) - ATH_MSG_DEBUG( " " << el ); - sel.selectAux( variableNames ); + if (allVars != "") { + ATH_MSG_DEBUG( "with aux content: " ); + std::set<std::string> variableNames; + boost::split( variableNames, allVars, [](const char c){ return c == '.'; } ); + for ( auto el: variableNames ) { + ATH_MSG_DEBUG( " \"" << el << "\"" ); + } + sel.selectAux( variableNames ); + } } - const bool isAux = key.find("Aux") != std::string::npos; + const bool isAux = (key.find("Aux") != std::string::npos); if (moduleIdVec.empty()) { ATH_MSG_ERROR( "No HLT result module IDs given for " << typeKeyAux ); @@ -85,7 +88,6 @@ StatusCode TriggerEDMSerialiserTool::initialize() { return StatusCode::SUCCESS; } - StatusCode TriggerEDMSerialiserTool::makeHeader(const Address& address, std::vector<uint32_t>& buffer ) const { buffer.push_back(0); // fragment size placeholder buffer.push_back( address.clid ); // type info via CLID @@ -114,7 +116,7 @@ StatusCode TriggerEDMSerialiserTool::fillPayload( const void* data, size_t sz, s return StatusCode::SUCCESS; } -StatusCode TriggerEDMSerialiserTool::fillDynAux( const Address& address, DataObject* dObj, std::vector<uint32_t>& buffer ) const { +StatusCode TriggerEDMSerialiserTool::fillDynAux( const Address& address, DataObject* dObj, std::vector<uint32_t>& buffer, size_t& nDynWritten) const { // TODO, check if we can cache this informion after it is filled once ATH_MSG_DEBUG("About to start streaming aux data of " << address.key ); DataBucketBase* dObjAux = dynamic_cast<DataBucketBase*>(dObj); @@ -125,6 +127,7 @@ StatusCode TriggerEDMSerialiserTool::fillDynAux( const Address& address, DataObj ATH_MSG_DEBUG( "Can't obtain AuxContainerBase of " << address.key << " no dynamic variables presumably" ); return StatusCode::SUCCESS; } + // ATH_MSG_DEBUG( "dump aux store" ); // SGdebug::dump_aux_vars( *auxStore ); @@ -142,7 +145,6 @@ StatusCode TriggerEDMSerialiserTool::fillDynAux( const Address& address, DataObj const std::string name = SG::AuxTypeRegistry::instance().getName(auxVarID); ATH_MSG_DEBUG("Streaming " << name << " of type " << typeName ); - CLID clid; if ( m_clidSvc->getIDOfTypeName(typeName, clid).isFailure() ) { ATH_MSG_ERROR( "Can not obtain CLID of: " << typeName ); @@ -170,18 +172,16 @@ StatusCode TriggerEDMSerialiserTool::fillDynAux( const Address& address, DataObj fragment[0] = fragment.size(); if ( mem ) delete [] static_cast<const char*>( mem ); - - ATH_MSG_DEBUG("Fragment size " << fragment.size() ); - - buffer.insert( buffer.end(), fragment.begin(), fragment.end() ); - + + buffer.insert( buffer.end(), fragment.begin(), fragment.end() ); + ++nDynWritten; + } return StatusCode::SUCCESS; } - StatusCode TriggerEDMSerialiserTool::fill( HLT::HLTResultMT& resultToFill ) const { // Leave this check until there is a justified case for appending data to an existing result @@ -200,7 +200,6 @@ StatusCode TriggerEDMSerialiserTool::fill( HLT::HLTResultMT& resultToFill ) cons continue; } - const void* rawptr = SG::fromStorable( dObj, address.clid, nullptr, msgLvl(MSG::DEBUG) ); if ( rawptr == nullptr ) { ATH_MSG_DEBUG( "Data Object with key " << address.key << @@ -209,7 +208,6 @@ StatusCode TriggerEDMSerialiserTool::fill( HLT::HLTResultMT& resultToFill ) cons } ATH_MSG_DEBUG("Obtained raw pointer " << rawptr ); - RootType classDesc = RootType::ByName( address.type ); size_t sz=0; void* mem = m_serializerSvc->serialize( rawptr, classDesc, sz ); @@ -228,11 +226,17 @@ StatusCode TriggerEDMSerialiserTool::fill( HLT::HLTResultMT& resultToFill ) cons if ( mem ) delete [] static_cast<const char*>( mem ); - ATH_MSG_DEBUG("Fragment size " << fragment.size() ); + const size_t baseSize = fragment.size()*sizeof(uint32_t); + ATH_MSG_DEBUG(address.typeKey << " Fragment size :" << baseSize << " bytes" ); if ( address.isAux ) { - ATH_CHECK( fillDynAux( address, dObj, fragment ) ); - ATH_MSG_DEBUG("Fragment size with Aux data " << fragment.size() ); + size_t nDynWritten = 0; + ATH_CHECK( fillDynAux( address, dObj, fragment, nDynWritten ) ); + if (nDynWritten > 0) { + const size_t decoratedSize = fragment.size()*sizeof(uint32_t); + ATH_MSG_DEBUG(" Fragment size including " << decoratedSize - baseSize << + " bytes from " << nDynWritten << "x DynAux: " << decoratedSize << " bytes" ); + } } fragment[0] = fragment.size(); diff --git a/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.h b/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.h index 1a5184bff8ccb3bda9f5942c1db63eef3e3d639d..d82a8c003a1c54249808290f46c8072d16a32938 100644 --- a/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.h +++ b/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.h @@ -1,9 +1,8 @@ /* Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ -#ifndef TRIGOUTPUTHANDLING_TriggerEDMSerialiserTool_H -#define TRIGOUTPUTHANDLING_TriggerEDMSerialiserTool_H - +#ifndef TRIGOUTPUTHANDLING_TRIGGEREDMSERIALISERTOOL_H +#define TRIGOUTPUTHANDLING_TRIGGEREDMSERIALISERTOOL_H #include <string> #include "AthenaBaseComps/AthAlgTool.h" @@ -19,7 +18,7 @@ * @class TriggerEDMSerialiserTool is tool responsible for creation of HLT Result filled with streamed EDM collections **/ -class DataObject; +class DataObject; //!< Forward declaration class TriggerEDMSerialiserTool: public extends<AthAlgTool, HLTResultMTMakerTool> { @@ -44,7 +43,9 @@ class TriggerEDMSerialiserTool: public extends<AthAlgTool, HLTResultMTMakerTool> "the main result, other IDs are used for data scouting." }; - // internal structure to keep configuration organised conveniently + /// @class Address + /// Internal structure to keep configuration organised conveniently + /// struct Address { std::string typeKey; std::string type; @@ -52,14 +53,16 @@ class TriggerEDMSerialiserTool: public extends<AthAlgTool, HLTResultMTMakerTool> std::string key; std::vector<uint16_t> moduleIdVec; bool isAux = false; - xAOD::AuxSelection sel = {}; // xAOD dynamic varaibles selection + xAOD::AuxSelection sel = {}; //!< xAOD dynamic varaibles selection }; + + std::vector< Address > m_toSerialize; //!< Postprocessed configuration info - std::vector< Address > m_toSerialize; // postprocessed configuration info - - ServiceHandle<IClassIDSvc> m_clidSvc{ this, "ClassIDSvc", "ClassIDSvc", "Service to translate class name to CLID" }; - ServiceHandle<IAthenaSerializeSvc> m_serializerSvc{ this, "Serializer", "AthenaRootSerializeSvc", "Service that translates transient to persistent respresenation" }; + ServiceHandle<IClassIDSvc> m_clidSvc{ this, "ClassIDSvc", "ClassIDSvc", + "Service to translate class name to CLID" }; + ServiceHandle<IAthenaSerializeSvc> m_serializerSvc{ this, "Serializer", "AthenaRootSerializeSvc", + "Service that translates transient to persistent respresenation" }; /** * Given the ID if the collection (in address arg) insert basic streaming info into the buffer. @@ -73,12 +76,11 @@ class TriggerEDMSerialiserTool: public extends<AthAlgTool, HLTResultMTMakerTool> */ StatusCode fillPayload( const void* data, size_t sz, std::vector<uint32_t>& buffer ) const; - /** * Adds dynamic variables to the payload */ - StatusCode fillDynAux( const Address& address, DataObject* dObject, std::vector<uint32_t>& buffer ) const; + StatusCode fillDynAux( const Address& address, DataObject* dObject, std::vector<uint32_t>& buffer, size_t& nDynWritten ) const; }; -#endif //> !TRIGOUTPUTHANDLING_TriggerEDMSerialiserTool_H +#endif //> !TRIGOUTPUTHANDLING_TRIGGEREDMSERIALISERTOOL_H diff --git a/Trigger/TrigSteer/TrigOutputHandling/test/void_record_test.cxx b/Trigger/TrigSteer/TrigOutputHandling/test/void_record_test.cxx index 8f78b891fda1d6cf4695111af0fd48957a89179a..592bbc9e5e4a025d64ab8da1c004a0b46b11b4f7 100644 --- a/Trigger/TrigSteer/TrigOutputHandling/test/void_record_test.cxx +++ b/Trigger/TrigSteer/TrigOutputHandling/test/void_record_test.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include <iostream> #include "TestTools/expect.h" @@ -15,6 +15,8 @@ int main() { using namespace std; + using TrigCompositeUtils::DecisionID; + ISvcLocator* pSvcLoc; if (!Athena_test::initGaudi("test.txt", pSvcLoc)) { cerr << "ERROR This test can not be run" << endl; @@ -31,14 +33,27 @@ int main() { return -1; } + std::vector<DecisionID> decisions = {2, 4, 6}; + xAOD::TrigCompositeContainer* testContainer = new xAOD::TrigCompositeContainer(); xAOD::TrigCompositeAuxContainer* aux = new xAOD::TrigCompositeAuxContainer(); testContainer->setStore( aux ); + // Note: idetail and fdetail are dynamic decorations. + // The decoration must be set on all objects within the container + testContainer->push_back( new xAOD::TrigComposite() ); + testContainer->back()->setDetail( "idetail", 7 ); + testContainer->back()->setDetail( "fdetail", 2.5f ); + testContainer->back()->setDetail( "decisions", decisions ); + testContainer->push_back( new xAOD::TrigComposite() ); - testContainer->at(0)->setDetail( "idetail", 7 ); - testContainer->at(1)->setDetail( "fdetail", 2.5f ); + testContainer->back()->setDetail( "idetail", 8 ); + testContainer->back()->setDetail( "fdetail", 3.5f ); + testContainer->back()->setDetail( "decisions", decisions ); + testContainer->back()->setObjectLink( "link", ElementLink<xAOD::TrigCompositeContainer>( 123, 456, testContainer->at(0) ) ); + // Note the SG part of this link is junk data, but the third parameter is real. Meaning it will pass a isValid sanity check + void * rawContainerPtr = static_cast<void*>( testContainer ); void * rawStorePtr = static_cast<void*>( aux ); @@ -48,28 +63,44 @@ int main() { log << MSG::INFO << containerRT.Name() << endmsg; BareDataBucket containerDataBucket( rawContainerPtr, ClassID_traits<xAOD::TrigCompositeContainer>::ID(), containerRT ); - RootType storeRT = RootType::ByName( "xAOD::TrigCompositeAuxContainer_v1" ); + RootType storeRT = RootType::ByName( "xAOD::TrigCompositeAuxContainer_v2" ); log << MSG::INFO << storeRT.Name() << endmsg; BareDataBucket storeDataBucket( rawStorePtr, ClassID_traits<xAOD::TrigCompositeAuxContainer>::ID(), storeRT ); + log << MSG::INFO << "recordObject done" << endmsg; pStore->recordObject( SG::DataObjectSharedPtr<BareDataBucket>( &containerDataBucket ), "test", false, false ); pStore->recordObject( SG::DataObjectSharedPtr<BareDataBucket>( &storeDataBucket ), "testAux.", false, false ); log << MSG::INFO << "recordObject done" << endmsg; - VALUE( pStore->accessData( ClassID_traits<xAOD::TrigCompositeContainer>::ID(), "test" ) ) NOT_EXPECTED ( nullptr ); VALUE( pStore->accessData( ClassID_traits<xAOD::TrigCompositeAuxContainer>::ID(), "testAux." ) ) NOT_EXPECTED ( nullptr ); - log << MSG::INFO << "objects in store, trying to read them back via rertieve" << endmsg; + log << MSG::INFO << "objects in store, trying to read them back via retrieve" << endmsg; const xAOD::TrigCompositeContainer* containerBack = 0; pStore->retrieve( containerBack, "test" ); + log << MSG::INFO << "Check retrieve" << endmsg; VALUE ( containerBack ) NOT_EXPECTED ( nullptr ); + log << MSG::INFO << "Check size" << endmsg; VALUE( containerBack->size() ) EXPECTED ( 2 ); + log << MSG::INFO << "Check [0] int32_t" << endmsg; VALUE( containerBack->at(0)->getDetail<int32_t>( "idetail" ) ) EXPECTED ( 7 ); - VALUE( containerBack->at(1)->getDetail<float>( "fdetail" ) ) EXPECTED ( 2.5f ); + log << MSG::INFO << "Check [0] float" << endmsg; + VALUE( containerBack->at(0)->getDetail<float>( "fdetail" ) ) EXPECTED ( 2.5f ); + log << MSG::INFO << "Check [0] std::vector<DecisionID>" << endmsg; + VALUE( containerBack->at(0)->getDetail<std::vector<DecisionID>>( "decisions" )[0] ) EXPECTED ( decisions[0] ); + VALUE( containerBack->at(0)->getDetail<std::vector<DecisionID>>( "decisions" )[1] ) EXPECTED ( decisions[1] ); + VALUE( containerBack->at(0)->getDetail<std::vector<DecisionID>>( "decisions" )[2] ) EXPECTED ( decisions[2] ); + log << MSG::INFO << "Check [1] int32_t" << endmsg; + VALUE( containerBack->at(1)->getDetail<int32_t>( "idetail" ) ) EXPECTED ( 8 ); + log << MSG::INFO << "Check [1] float" << endmsg; + VALUE( containerBack->at(1)->getDetail<float>( "fdetail" ) ) EXPECTED ( 3.5f ); + log << MSG::INFO << "Check [1] link" << endmsg; + ElementLink<xAOD::TrigCompositeContainer> link = containerBack->at(1)->objectLink<xAOD::TrigCompositeContainer>("link"); + VALUE( link.key() ) EXPECTED ( 123 ); + VALUE( link.index() ) EXPECTED ( 456 ); log << MSG::INFO << "Container read back is identical" << endmsg; return 0; diff --git a/Trigger/TrigValidation/TrigUpgradeTest/CMakeLists.txt b/Trigger/TrigValidation/TrigUpgradeTest/CMakeLists.txt index bd36de2e3bd59a11f29957539b9ed133dc923a24..54d8c8d0d79920d65de0b5da23538f230d087b4b 100644 --- a/Trigger/TrigValidation/TrigUpgradeTest/CMakeLists.txt +++ b/Trigger/TrigValidation/TrigUpgradeTest/CMakeLists.txt @@ -68,7 +68,7 @@ file( MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/unitTestRun_egammaRunData ) atlas_add_test( egammaRunData SCRIPT test/test_egamma_run_data.sh PROPERTIES TIMEOUT 1000 - EXTRA_PATTERNS "-s TrigSignatureMoniMT.*HLT_.*|payload after inserting" + EXTRA_PATTERNS "-s TrigSignatureMoniMT.*HLT_.*|Fragment size" PROPERTIES WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/unitTestRun_egammaRunData ) diff --git a/Trigger/TrigValidation/TrigUpgradeTest/share/dataScoutingTest.py b/Trigger/TrigValidation/TrigUpgradeTest/share/dataScoutingTest.py index aab1fb4b73f7cd5f49452b6868f50dd7620ad9d8..19ef84faf0d755e528139c3f5254fa14277c9e50 100644 --- a/Trigger/TrigValidation/TrigUpgradeTest/share/dataScoutingTest.py +++ b/Trigger/TrigValidation/TrigUpgradeTest/share/dataScoutingTest.py @@ -119,7 +119,7 @@ decisionObjectsToRecord = [] for d in decisionObjects: decisionObjectsToRecord.extend([ "xAOD::TrigCompositeContainer_v1#%s" % d, - "xAOD::TrigCompositeAuxContainer_v1#%s" % d + "xAOD::TrigCompositeAuxContainer_v2#%s.decisions" % d ]) ########################################## @@ -147,7 +147,7 @@ from TrigUpgradeTest.pebMenuDefs import dataScoutingResultIDFromName electronDSModuleIDs = [serialiser.fullResultID(), dataScoutingResultIDFromName('dataScoutingElectronTest')] # 0 is main (full) result; we get the other ID from the EDM configuration serialiser.addCollectionListToResults([ "xAOD::TrigElectronContainer_v1#Electrons", - "xAOD::TrigElectronAuxContainer_v1#ElectronsAux.pt.eta.phi.rawEnergy.rawEt.rawEta.nCells.energy.et.e237.e277.fracs1.weta2.ehad1.e232.wstot", + "xAOD::TrigElectronAuxContainer_v1#ElectronsAux.pt.eta.phi.rawEnergy.rawEt.rawEta.nCells.energy.et.e237.e277.fracs1.weta2.ehad1.wstot", ], electronDSModuleIDs) ##### Result maker part 2 - stream tags ##### diff --git a/Trigger/TrigValidation/TrigUpgradeTest/share/egamma.withViews.py b/Trigger/TrigValidation/TrigUpgradeTest/share/egamma.withViews.py index 736fff1703abbd4e4c39c07c449d11e4faf0e85f..b1659b53e7377d521919c9bdbff10b98644b73d4 100644 --- a/Trigger/TrigValidation/TrigUpgradeTest/share/egamma.withViews.py +++ b/Trigger/TrigValidation/TrigUpgradeTest/share/egamma.withViews.py @@ -349,12 +349,11 @@ serialiser = TriggerEDMSerialiserToolCfg("Serialiser") serialiser.OutputLevel=VERBOSE serialiser.addCollectionListToMainResult([ "xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions", - "xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions", - "xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux.", + "xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux.decisions", "xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters", "xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux.RoIword.clusterQuality.e233.e237.e277.e2tsts1.ehad1.emaxs1.energy.energySample.et.eta.eta1.fracs1.nCells.phi.rawEnergy.rawEnergySample.rawEt.rawEta.rawPhi.viewIndex.weta2.wstot", "xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex", - "xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux.pt.eta.phi.rawEnergy.rawEt.rawEta.nCells.energy.et.e237.e277.fracs1.weta2.ehad1.e232.wstot", + "xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux.pt.eta.phi.rawEnergy.rawEt.rawEta.nCells.energy.et.e237.e277.fracs1.weta2.ehad1.wstot", ]) streamPhysicsMain = ['Main', 'physics', "True", "True"] diff --git a/Trigger/TrigValidation/TrigUpgradeTest/share/egammaRunData.ref b/Trigger/TrigValidation/TrigUpgradeTest/share/egammaRunData.ref index 073783fc6d875439fdd7b1959edcb6031a4c29b6..9278e815268bd85f3e99acd372795436f42db991 100644 --- a/Trigger/TrigValidation/TrigUpgradeTest/share/egammaRunData.ref +++ b/Trigger/TrigValidation/TrigUpgradeTest/share/egammaRunData.ref @@ -1,123 +1,176 @@ -HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1228 bytes -HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1400 bytes -HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 3008 bytes -HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 3176 bytes -HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 2200 bytes -HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 2372 bytes -HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 7384 bytes -HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 7552 bytes -HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 2848 bytes -HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 3020 bytes -HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 6256 bytes -HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 6424 bytes -HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 2200 bytes -HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 2372 bytes -HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 8124 bytes -HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 8292 bytes -HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1552 bytes -HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1724 bytes -HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 3776 bytes -HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 3944 bytes -HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 3172 bytes -HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 3344 bytes -HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 11168 bytes -HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 11336 bytes -HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1228 bytes -HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1400 bytes -HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 3748 bytes -HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 3916 bytes -HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1876 bytes -HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 2048 bytes -HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 7356 bytes -HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 7524 bytes -HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1552 bytes -HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1724 bytes -HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 3480 bytes -HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 3648 bytes -HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 856 bytes -HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1028 bytes -HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 1468 bytes -HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 1636 bytes -HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 2200 bytes -HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 2372 bytes -HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 8420 bytes -HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 8588 bytes -HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1228 bytes -HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1400 bytes -HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 3156 bytes -HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 3324 bytes -HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 3496 bytes -HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 3668 bytes -HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 10308 bytes -HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 10476 bytes -HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1552 bytes -HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1724 bytes -HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 6144 bytes -HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 6312 bytes -HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1228 bytes -HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1400 bytes -HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 3008 bytes -HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 3176 bytes -HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 856 bytes -HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1028 bytes -HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 1468 bytes -HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 1636 bytes -HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1228 bytes -HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1400 bytes -HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 1840 bytes -HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 2008 bytes -HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1552 bytes -HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1724 bytes -HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 4368 bytes -HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 4536 bytes -HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1552 bytes -HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 1724 bytes -HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 3480 bytes -HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 3648 bytes -HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeAuxContainer_v1#remap_EgammaCaloDecisionsAux. has 252 bytes -HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG Module 0 payload after inserting xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions has 404 bytes -HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. has 1876 bytes -HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG Module 0 payload after inserting xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters has 2048 bytes -HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. has 7800 bytes -HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG Module 0 payload after inserting xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex has 7968 bytes +HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :348 bytes +HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG Fragment size including 68 bytes from 1x DynAux: 416 bytes +HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :772 bytes +HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG Fragment size including 52 bytes from 1x DynAux: 824 bytes +HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :716 bytes +HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG Fragment size including 892 bytes from 14x DynAux: 1608 bytes +HLTRMakerAlg.MKTool.Serialiser 0 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :632 bytes +HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG Fragment size including 124 bytes from 1x DynAux: 756 bytes +HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :1732 bytes +HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG Fragment size including 64 bytes from 1x DynAux: 1796 bytes +HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :2832 bytes +HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG Fragment size including 2180 bytes from 14x DynAux: 5012 bytes +HLTRMakerAlg.MKTool.Serialiser 1 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :824 bytes +HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG Fragment size including 144 bytes from 1x DynAux: 968 bytes +HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :2372 bytes +HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG Fragment size including 72 bytes from 1x DynAux: 2444 bytes +HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :1728 bytes +HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG Fragment size including 1508 bytes from 14x DynAux: 3236 bytes +HLTRMakerAlg.MKTool.Serialiser 2 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :632 bytes +HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG Fragment size including 112 bytes from 1x DynAux: 744 bytes +HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :1732 bytes +HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG Fragment size including 64 bytes from 1x DynAux: 1796 bytes +HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :3292 bytes +HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG Fragment size including 2460 bytes from 14x DynAux: 5752 bytes +HLTRMakerAlg.MKTool.Serialiser 3 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :444 bytes +HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG Fragment size including 92 bytes from 1x DynAux: 536 bytes +HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :1092 bytes +HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG Fragment size including 56 bytes from 1x DynAux: 1148 bytes +HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :992 bytes +HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG Fragment size including 1060 bytes from 14x DynAux: 2052 bytes +HLTRMakerAlg.MKTool.Serialiser 4 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :916 bytes +HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG Fragment size including 152 bytes from 1x DynAux: 1068 bytes +HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :2692 bytes +HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG Fragment size including 76 bytes from 1x DynAux: 2768 bytes +HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :4580 bytes +HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG Fragment size including 3244 bytes from 14x DynAux: 7824 bytes +HLTRMakerAlg.MKTool.Serialiser 5 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :348 bytes +HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG Fragment size including 72 bytes from 1x DynAux: 420 bytes +HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :772 bytes +HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG Fragment size including 52 bytes from 1x DynAux: 824 bytes +HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :1176 bytes +HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG Fragment size including 1172 bytes from 14x DynAux: 2348 bytes +HLTRMakerAlg.MKTool.Serialiser 6 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :536 bytes +HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG Fragment size including 100 bytes from 1x DynAux: 636 bytes +HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :1412 bytes +HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG Fragment size including 60 bytes from 1x DynAux: 1472 bytes +HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :3016 bytes +HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG Fragment size including 2292 bytes from 14x DynAux: 5308 bytes +HLTRMakerAlg.MKTool.Serialiser 7 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :444 bytes +HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG Fragment size including 100 bytes from 1x DynAux: 544 bytes +HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :1092 bytes +HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG Fragment size including 56 bytes from 1x DynAux: 1148 bytes +HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :808 bytes +HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG Fragment size including 948 bytes from 14x DynAux: 1756 bytes +HLTRMakerAlg.MKTool.Serialiser 8 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :252 bytes +HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :452 bytes +HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :440 bytes +HLTRMakerAlg.MKTool.Serialiser 9 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :632 bytes +HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG Fragment size including 144 bytes from 1x DynAux: 776 bytes +HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :1732 bytes +HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG Fragment size including 64 bytes from 1x DynAux: 1796 bytes +HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :3476 bytes +HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG Fragment size including 2572 bytes from 14x DynAux: 6048 bytes +HLTRMakerAlg.MKTool.Serialiser 10 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :348 bytes +HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG Fragment size including 68 bytes from 1x DynAux: 416 bytes +HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :772 bytes +HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG Fragment size including 52 bytes from 1x DynAux: 824 bytes +HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :808 bytes +HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG Fragment size including 948 bytes from 14x DynAux: 1756 bytes +HLTRMakerAlg.MKTool.Serialiser 11 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :1012 bytes +HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG Fragment size including 196 bytes from 1x DynAux: 1208 bytes +HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :3012 bytes +HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG Fragment size including 80 bytes from 1x DynAux: 3092 bytes +HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :3844 bytes +HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG Fragment size including 2796 bytes from 14x DynAux: 6640 bytes +HLTRMakerAlg.MKTool.Serialiser 12 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :444 bytes +HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG Fragment size including 104 bytes from 1x DynAux: 548 bytes +HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :1092 bytes +HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG Fragment size including 56 bytes from 1x DynAux: 1148 bytes +HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :2464 bytes +HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG Fragment size including 1956 bytes from 14x DynAux: 4420 bytes +HLTRMakerAlg.MKTool.Serialiser 13 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :348 bytes +HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG Fragment size including 72 bytes from 1x DynAux: 420 bytes +HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :772 bytes +HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG Fragment size including 52 bytes from 1x DynAux: 824 bytes +HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :716 bytes +HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG Fragment size including 892 bytes from 14x DynAux: 1608 bytes +HLTRMakerAlg.MKTool.Serialiser 14 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :252 bytes +HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :452 bytes +HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :440 bytes +HLTRMakerAlg.MKTool.Serialiser 15 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :348 bytes +HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG Fragment size including 64 bytes from 1x DynAux: 412 bytes +HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :772 bytes +HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG Fragment size including 52 bytes from 1x DynAux: 824 bytes +HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :440 bytes +HLTRMakerAlg.MKTool.Serialiser 16 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :444 bytes +HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG Fragment size including 104 bytes from 1x DynAux: 548 bytes +HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :1092 bytes +HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG Fragment size including 56 bytes from 1x DynAux: 1148 bytes +HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :1360 bytes +HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG Fragment size including 1284 bytes from 14x DynAux: 2644 bytes +HLTRMakerAlg.MKTool.Serialiser 17 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :444 bytes +HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG Fragment size including 100 bytes from 1x DynAux: 544 bytes +HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :1092 bytes +HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG Fragment size including 56 bytes from 1x DynAux: 1148 bytes +HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :808 bytes +HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG Fragment size including 948 bytes from 14x DynAux: 1756 bytes +HLTRMakerAlg.MKTool.Serialiser 18 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes +HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG xAOD::TrigCompositeAuxContainer_v2#remap_EgammaCaloDecisionsAux. Fragment size :536 bytes +HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG Fragment size including 92 bytes from 1x DynAux: 628 bytes +HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG xAOD::TrigCompositeContainer_v1#remap_EgammaCaloDecisions Fragment size :152 bytes +HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG xAOD::TrigEMClusterAuxContainer_v2#HLT_xAOD__TrigEMClusterContainer_L2CaloClustersAux. Fragment size :1412 bytes +HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG Fragment size including 60 bytes from 1x DynAux: 1472 bytes +HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG xAOD::TrigEMClusterContainer_v1#HLT_xAOD__TrigEMClusterContainer_L2CaloClusters Fragment size :172 bytes +HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG xAOD::TrigElectronAuxContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFexAux. Fragment size :3292 bytes +HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG Fragment size including 2460 bytes from 14x DynAux: 5752 bytes +HLTRMakerAlg.MKTool.Serialiser 19 0 DEBUG xAOD::TrigElectronContainer_v1#HLT_xAOD__TrigElectronContainer_L2ElectronFex Fragment size :168 bytes TrigSignatureMoniMT INFO HLT_2e3_etcut 20 10 6 5 5 TrigSignatureMoniMT INFO HLT_2e3_etcut decisions 16 83 TrigSignatureMoniMT INFO HLT_e3_e5_etcut 20 20 12 10 10 diff --git a/Trigger/TrigValidation/TrigUpgradeTest/share/pebTest.py b/Trigger/TrigValidation/TrigUpgradeTest/share/pebTest.py index c45457cb1e63bba9315d8c580d82f0c73ab23bfb..5c2e333931c91e8850c3fc65a1d5b99672c18c66 100644 --- a/Trigger/TrigValidation/TrigUpgradeTest/share/pebTest.py +++ b/Trigger/TrigValidation/TrigUpgradeTest/share/pebTest.py @@ -120,7 +120,7 @@ decisionObjectsToRecord = [] for d in decisionObjects: decisionObjectsToRecord.extend([ "xAOD::TrigCompositeContainer_v1#%s" % d, - "xAOD::TrigCompositeAuxContainer_v1#%s" % d + "xAOD::TrigCompositeAuxContainer_v2#%s.decisions" % d ]) ########################################## @@ -142,7 +142,7 @@ serialiser.addCollectionListToMainResult([ "xAOD::TrigEMClusterContainer_v1#L2CaloEMClusters", "xAOD::TrigEMClusterAuxContainer_v2#L2CaloEMClustersAux.RoIword.clusterQuality.e233.e237.e277.e2tsts1.ehad1.emaxs1.energy.energySample.et.eta.eta1.fracs1.nCells.phi.rawEnergy.rawEnergySample.rawEt.rawEta.rawPhi.viewIndex.weta2.wstot", "xAOD::TrigElectronContainer_v1#Electrons", - "xAOD::TrigElectronAuxContainer_v1#ElectronsAux.pt.eta.phi.rawEnergy.rawEt.rawEta.nCells.energy.et.e237.e277.fracs1.weta2.ehad1.e232.wstot", + "xAOD::TrigElectronAuxContainer_v1#ElectronsAux.pt.eta.phi.rawEnergy.rawEt.rawEta.nCells.energy.et.e237.e277.fracs1.weta2.ehad1.wstot", ]) ##### Result maker part 2 - stream tags #####