diff --git a/Control/AthToolSupport/AsgTools/AsgTools/AsgMetadataTool.h b/Control/AthToolSupport/AsgTools/AsgTools/AsgMetadataTool.h index 8ef2deb2421f489a7e9451f8f80ca2d707144927..548cdfa5d2d3a85ce433022699536f4d1e0bcfc0 100644 --- a/Control/AthToolSupport/AsgTools/AsgTools/AsgMetadataTool.h +++ b/Control/AthToolSupport/AsgTools/AsgTools/AsgMetadataTool.h @@ -102,8 +102,6 @@ namespace asg { protected: /// @name Callback functions helping in metadata reading/writing /// @{ - - void setUseIncidents(const bool flag); /// Function receiving incidents from IncidentSvc/TEvent virtual void handle( const Incident& inc ); @@ -133,15 +131,8 @@ namespace asg { /// input file bool m_beginInputFileCalled; - bool m_useIncidents; - }; // class AsgMetadataTool - inline void AsgMetadataTool::setUseIncidents(const bool flag) - { - m_useIncidents = flag; - } - } // namespace asg // Include the template implementation(s): diff --git a/Control/AthToolSupport/AsgTools/Root/AsgMetadataTool.cxx b/Control/AthToolSupport/AsgTools/Root/AsgMetadataTool.cxx index 6638d9ff47a06261fb2589b00dec79dd5a89e406..4f2f109fae6847759c87a49d7518658c79d84135 100644 --- a/Control/AthToolSupport/AsgTools/Root/AsgMetadataTool.cxx +++ b/Control/AthToolSupport/AsgTools/Root/AsgMetadataTool.cxx @@ -41,8 +41,7 @@ namespace asg { m_inputMetaStore( "StoreGateSvc/InputMetaDataStore", name ), m_outputMetaStore( "StoreGateSvc/MetaDataStore", name ), #endif // Environment selection - m_beginInputFileCalled( false ), - m_useIncidents (true) + m_beginInputFileCalled( false ) { #ifdef ASGTOOL_STANDALONE @@ -115,17 +114,17 @@ namespace asg { StatusCode AsgMetadataTool::sysInitialize() { #ifdef ASGTOOL_ATHENA - if (m_useIncidents) { - // Connect to the IncidentSvc: - ServiceHandle< IIncidentSvc > incSvc( "IncidentSvc", name() ); - ATH_CHECK( incSvc.retrieve() ); - - // Set up the right callbacks: don't rethrow exceptions, any failure and we should end - incSvc->addListener( this, IncidentType::BeginEvent, 0, false ); - incSvc->addListener( this, IncidentType::BeginInputFile, 0, false ); - incSvc->addListener( this, IncidentType::EndInputFile, 0, false ); - incSvc->addListener( this, IncidentType::MetaDataStop, 70, false ); - } + + // Connect to the IncidentSvc: + ServiceHandle< IIncidentSvc > incSvc( "IncidentSvc", name() ); + ATH_CHECK( incSvc.retrieve() ); + + // Set up the right callbacks: don't rethrow exceptions, any failure and we should end + incSvc->addListener( this, IncidentType::BeginEvent, 0, false ); + incSvc->addListener( this, IncidentType::BeginInputFile, 0, false ); + incSvc->addListener( this, IncidentType::EndInputFile, 0, false ); + incSvc->addListener( this, IncidentType::MetaDataStop, 70, false ); + // Let the base class do its thing: ATH_CHECK( AlgTool::sysInitialize() ); diff --git a/Control/AthenaKernel/AthenaKernel/GenericMetadataTool.h b/Control/AthenaKernel/AthenaKernel/GenericMetadataTool.h deleted file mode 100644 index d4776afc38cf3733638b9306add75bfdc8ac696c..0000000000000000000000000000000000000000 --- a/Control/AthenaKernel/AthenaKernel/GenericMetadataTool.h +++ /dev/null @@ -1,95 +0,0 @@ -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ - -#ifndef GENERICMETADATATOOL_H -#define GENERICMETADATATOOL_H - -/** @file GenericMetadataTool.h - * @brief This file contains the class definition for the GenericMetadataTool class. - * @author Jack Cranshaw <cranshaw@anl.gov> - * $Id: $ - **/ - -#include "AthenaBaseComps/AthAlgTool.h" -#include "AthenaKernel/IMetaDataTool.h" -#include "GaudiKernel/IIncidentListener.h" -#include "GaudiKernel/ServiceHandle.h" - -#include <string> - -/** @class GenericMetadataTool - * @brief This class provides the basic functionality for processing metadata in the athena framework. The derived class must simply implement merge functionality in the updateContainer method. - **/ - -template <typename T, typename U> -class GenericMetadataTool : public AthAlgTool, public virtual ::IMetaDataTool -{ -public: // Constructor and Destructor - /// Standard Service Constructor - GenericMetadataTool(const std::string& type, - const std::string& name, - const IInterface* parent); - /// Destructor - virtual ~GenericMetadataTool(); - -public: - virtual StatusCode metaDataStop(const SG::SourceID&); - virtual StatusCode beginInputFile(const SG::SourceID& sid = "Serial"); - virtual StatusCode endInputFile(const SG::SourceID& sid = "Serial"); - virtual StatusCode initialize(); - virtual StatusCode finalize(); - -protected: - ServiceHandle<StoreGateSvc> inputMetaStore() const; - ServiceHandle<StoreGateSvc> outputMetaStore() const; - - /// Helper class to update a container with information from another one - virtual StatusCode updateContainer( T* contToUpdate, - const T* otherCont ) = 0; - - StatusCode initOutputContainer(const std::string& sgkey); - - StatusCode buildAthenaInterface(const std::string& inputName, - const std::string& outputName, - const SG::SourceID& sid); - - /// Fill Cutflow information - StatusCode addProcessMetadata(); - - /// Pointer to cut flow svc - ServiceHandle<StoreGateSvc> m_inputMetaStore; - ServiceHandle<StoreGateSvc> m_outputMetaStore; - - /// The name of the output Container - std::string m_outputCollName; - /// The name of the input Container - std::string m_inputCollName; - /// The name of the process Container - std::string m_procMetaName; - - bool m_processMetadataTaken; - bool m_markIncomplete; - - /// List of source ids which have reached end file - std::set<SG::SourceID> m_fullreads; - std::set<SG::SourceID> m_read; - std::set<SG::SourceID> m_written; - -}; - -template <typename T, typename U> -inline ServiceHandle<StoreGateSvc> GenericMetadataTool<T,U>::inputMetaStore() const -{ - return m_inputMetaStore; -} - -template <typename T, typename U> -inline ServiceHandle<StoreGateSvc> GenericMetadataTool<T,U>::outputMetaStore() const -{ - return m_outputMetaStore; -} - -#include "GenericMetadataTool.icc" -#endif - diff --git a/Control/AthenaKernel/AthenaKernel/GenericMetadataTool.icc b/Control/AthenaKernel/AthenaKernel/GenericMetadataTool.icc deleted file mode 100644 index b8776344f30f2a2142aee263b24b59148bfe2697..0000000000000000000000000000000000000000 --- a/Control/AthenaKernel/AthenaKernel/GenericMetadataTool.icc +++ /dev/null @@ -1,511 +0,0 @@ -///////////////////////// -*- C++ -*- ///////////////////////////// - -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -// Implementation file for class GenericMetadataTool -// Authors: Joao Firmino da Costa <joao.costa@cern.ch> and David Cote <david.cote@cern.ch> -/////////////////////////////////////////////////////////////////// - -// STL include -#include <algorithm> - -#include "GaudiKernel/Incident.h" -#include "GaudiKernel/FileIncident.h" -#include "GaudiKernel/IIncidentSvc.h" -#include "AthenaKernel/MetaCont.h" -#include "AthenaKernel/ClassID_traits.h" -#include "AthenaKernel/errorcheck.h" -#include "StoreGate/WriteMetaHandle.h" -#include "AthenaBaseComps/AthCheckMacros.h" -#include "AthContainersInterfaces/IConstAuxStoreMeta.h" - -template <typename T, typename U> -GenericMetadataTool<T,U>::GenericMetadataTool(const std::string& type, - const std::string& name, - const IInterface* parent) - : AthAlgTool(type,name,parent), - m_inputMetaStore( "StoreGateSvc/InputMetaDataStore", name ), - m_outputMetaStore( "StoreGateSvc/MetaDataStore", name ), - m_processMetadataTaken(false), - m_markIncomplete(true) -{ - declareProperty("OutputCollName", m_outputCollName="GenericMetadataOutput", - "The default name of the container for output files"); - declareProperty("InputCollName", m_inputCollName = "GenericMetadataInput", - "The default name of the container for input files"); - declareProperty("ProcessMetadataCollName", m_procMetaName = "ProcessMetadata", - "The default name of the container for process meta"); - declareProperty("MarkIncomplete", m_markIncomplete = true, - "Defaults to filling both complete and incomplete bookkeepers"); - declareInterface< ::IMetaDataTool >( this ); -} - - - -template <typename T, typename U> -GenericMetadataTool<T,U>::~GenericMetadataTool() -{ -} - - - -template <typename T, typename U> -StatusCode -GenericMetadataTool<T,U>::initialize() -{ - ATH_MSG_DEBUG( "Initializing " << name() << " - package version " << PACKAGE_VERSION ); - - ATH_MSG_DEBUG("InputCollName = " << m_inputCollName); - ATH_MSG_DEBUG("OutputCollName = " << m_outputCollName); - ATH_MSG_DEBUG("ProcessMetadataCollName = " << m_procMetaName); - - return StatusCode::SUCCESS; -} - - - -template <typename T, typename U> -StatusCode GenericMetadataTool<T,U>::beginInputFile(const SG::SourceID& sid) -{ - ATH_MSG_DEBUG("beginInputFile " << this->name() << "\n" << outputMetaStore()->dump()); - //OPENING NEW INPUT FILE - //Things to do: - // 1) note that a file is currently opened - // 2) Load CutBookkeepers from input file - // 2a) if incomplete from input, directly propagate to output - // 2b) if complete from input, wait for EndInputFile to decide what to do in output - - const std::string storename("MetaDataStore+"); - if (m_inputCollName != "") { // are there inputs - // IF NO METACONT IN OUTPUT STORE YET - // Initialize MetaCont for incomplete and tmp containers in output store - // - std::string tmp_name = storename+m_outputCollName+"tmp"; - ATH_CHECK(buildAthenaInterface(m_inputCollName,tmp_name,sid)); - - // Do the following if we want incomplete processings marked - if (m_markIncomplete) { - std::string inc_name = storename+"Incomplete"+m_outputCollName; - std::string input_inc_name = "Incomplete"+m_inputCollName; - ATH_CHECK(buildAthenaInterface(input_inc_name,inc_name,sid)); - } - } // inputCollName if - - // reset cutflow taken marker - m_processMetadataTaken = false; - - m_read.insert(sid); - - return StatusCode::SUCCESS; -} - - -template <typename T, typename U> -StatusCode GenericMetadataTool<T,U>::endInputFile(const SG::SourceID& sid) -{ - // Add the sid to the list of complete sids - if (m_inputCollName != "") { // are there inputs - m_fullreads.insert(sid); - } - - return StatusCode::SUCCESS; -} - -template <typename T, typename U> -StatusCode GenericMetadataTool<T,U>::metaDataStop(const SG::SourceID&) -{ - const std::string storename("MetaDataStore+"); - if (m_inputCollName != "") { // are there inputs - //TERMINATING THE JOB (EndRun) - //Things to do: - // 1) Create new incomplete CutBookkeepers if relevant - // 2) Print cut flow summary - // 3) Write root file if requested - // Now retrieve pointers for the MetaConts - std::string tmp_name = storename+m_outputCollName+"tmpCont"; - const MetaCont<T>* tmp; - ATH_CHECK(outputMetaStore()->retrieve(tmp,tmp_name)); - T* outcom = new T(); - // ARSE - U* outcom_aux = new U(); - outcom->setStore(outcom_aux); - - if (m_markIncomplete) { - std::string inc_name = storename+"Incomplete"+m_outputCollName+"Cont"; - // Build incomplete container to fill - T* outinc = new T(); - // ARSE - U* outinc_aux = new U(); - outinc->setStore(outinc_aux); - // Check if there were any incomplete inputs - const MetaCont<T>* inc; - if(outputMetaStore()->retrieve(inc,inc_name).isSuccess()) { - - // Incomplete inputs can just be merged - auto sids_inc = inc->sources(); - T* contptr(nullptr); - for (auto it = sids_inc.begin(); it != sids_inc.end(); ++it) { - if (!inc->find(*it,contptr)) { - ATH_MSG_ERROR("Container sid list did not match contents"); - } else { - //ATH_CHECK(updateContainer(outinc,contptr)); - } - contptr = nullptr; - } - } else { - ATH_MSG_INFO("Did not find MetaCont for " << inc_name << ", assuming input had no incomplete bookkeepers"); - } - - // Loop over containers and mark based on end files seen - auto sids_tmp = tmp->sources(); - T* contptr(nullptr); - for (auto it = sids_tmp.begin(); it != sids_tmp.end(); ++it) { - if (!tmp->find(*it,contptr)) { - ATH_MSG_ERROR("Container sid list did not match contents"); - } else { - bool complete = std::find(m_fullreads.begin(), - m_fullreads.end(), - *it) != m_fullreads.end(); - bool not_written = std::find(m_written.begin(), - m_written.end(), - *it) == m_written.end(); - if (complete && not_written) { - //ATH_CHECK(updateContainer(outcom,contptr)); - } else { - //ATH_CHECK(updateContainer(outinc,contptr)); - } - } - } - - std::string incout_name = "Incomplete"+m_outputCollName; - // Do any cleanup - if (outputMetaStore()->contains(ClassID_traits<T>::ID(),incout_name) ) { - ATH_MSG_INFO("Cleaning up class for " << incout_name); - const T* tmpBook(nullptr); - if ( outputMetaStore()->retrieve(tmpBook,incout_name).isSuccess() ) { - const SG::IConstAuxStore* tmpBookAux = tmpBook->getConstStore(); - ATH_CHECK(outputMetaStore()->removeDataAndProxy(tmpBook)); - ATH_CHECK(outputMetaStore()->removeDataAndProxy(tmpBookAux)); - } - else ATH_MSG_INFO("StoreGate failed retrieve"); - } - ATH_CHECK(outputMetaStore()->record(outinc,incout_name)); - ATH_CHECK(outputMetaStore()->record(outinc_aux,incout_name+"Aux.")); - } // markIncomplete - else { - auto sids_tmp = tmp->sources(); - T* contptr(nullptr); - // just merge complete inputs into complete/output container - for (auto it = sids_tmp.begin(); it != sids_tmp.end(); ++it) { - if (!tmp->find(*it,contptr)) { - ATH_MSG_ERROR("Container sid list did not match contents"); - } else { - // default to not worrying about marking - //ATH_CHECK(updateContainer(outcom,contptr)); - } - } - } - - // Record container objects directly in store for output - if (outputMetaStore()->contains(ClassID_traits<T>::ID(),m_outputCollName)) { - ATH_MSG_INFO("Cleaning up class for " << m_outputCollName); - const T* tmpBook(nullptr); - if ( outputMetaStore()->retrieve(tmpBook,m_outputCollName).isSuccess() ) { - const SG::IConstAuxStore* tmpBookAux = tmpBook->getConstStore(); - ATH_CHECK(outputMetaStore()->removeDataAndProxy(tmpBook)); - ATH_CHECK(outputMetaStore()->removeDataAndProxy(tmpBookAux)); - } - else ATH_MSG_ERROR("StoreGate failed retrieve"); - } - ATH_CHECK(outputMetaStore()->record(outcom,m_outputCollName)); - ATH_CHECK(outputMetaStore()->record(outcom_aux,m_outputCollName+"Aux.")); - } // inputCollName if - - if (!m_processMetadataTaken) { - if (addProcessMetadata().isFailure()) { - ATH_MSG_ERROR("Could not add CutFlow information"); - } - } - else { - ATH_MSG_DEBUG("Process metadata written into container before metaDataStop"); - } - - // Reset after metadata stop - m_processMetadataTaken = false; - - if (m_inputCollName != "") { // are there inputs - // Copy read files into written files - //std::copy(m_read.begin(),m_read.end(),back_inserter(m_written)); - for (auto it = m_read.begin(); it != m_read.end(); ++it) { - m_written.insert(*it); - } - // Remove completes from read - for (auto it = m_fullreads.begin(); it != m_fullreads.end(); ++it) { - m_read.erase(*it); - //std::remove(m_read.begin(); m_read.end(), *it); - } - m_fullreads.clear(); - } // inputCollName if - - return StatusCode::SUCCESS; -} - - -template <typename T, typename U> -StatusCode -GenericMetadataTool<T,U>::finalize() -{ - ATH_MSG_DEBUG( "Finalizing " << name() << " - package version " << PACKAGE_VERSION ); - return StatusCode::SUCCESS; -} - - -template <typename T, typename U> -StatusCode GenericMetadataTool<T,U>::initOutputContainer( const std::string& sgkey) -{ - std::string key = sgkey; - // Create the primary container - // Put it in a MetaCont - // ARSE - //MetaCont<T>* mcont = new MetaCont<T>(DataObjID("xAOD::CutBookkeeperContainer",key)); - MetaCont<T>* mcont = new MetaCont<T>(DataObjID(ClassID_traits<T>::ID(),key)); - // Do the same for the auxiliary container - std::string auxkey(key+"Aux."); - // ARSE - //MetaCont<T>* acont = new MetaCont<T>(DataObjID("xAOD::CutBookkeeperAuxContainer",auxkey)); - MetaCont<T>* acont = new MetaCont<T>(DataObjID("xAOD::CutBookkeeperAuxContainer",auxkey)); - ATH_CHECK(outputMetaStore()->record(std::move(mcont),key)); - ATH_CHECK(outputMetaStore()->record(std::move(acont),auxkey)); - ATH_CHECK(outputMetaStore()->symLink - ( - ClassID_traits<MetaCont<T> >::ID(), - auxkey, - ClassID_traits<T>::ID() - )); - - return StatusCode::SUCCESS; -} - -//--------------------------------------------------------// -// MetaConts are only needed when reading in Athena -// This builds them and populates them with bookeepers from the input store -//--------------------------------------------------------// -template <typename T, typename U> -StatusCode GenericMetadataTool<T,U>::buildAthenaInterface(const std::string& inputName, - const std::string& outputName, - const SG::SourceID& sid) -{ - // Make sure the MetaCont is ready in the output store for outputName - // If not, then create it - std::string name = outputName+"Cont"; - if( !(outputMetaStore()->contains(ClassID_traits<MetaCont<T> >::ID(),name)) ) { - ATH_CHECK(this->initOutputContainer(name)); - } - else { - ATH_MSG_WARNING("incomplete collection already exists"); - } - - // Retrieve pointer for the MetaCont - MetaCont<T>* mc; - ATH_CHECK(outputMetaStore()->retrieve(mc,name)); - - // Make sure sid does not already exist in the MetaCont - if ( std::find(mc->sources().begin(),mc->sources().end(),sid) - != mc->sources().end() ) { - ATH_MSG_ERROR("Metadata already exists for sid " << sid); - return StatusCode::FAILURE; // Fail if sid already exists - } - - // Get the input bookkeeper of the input metadata store - const T* cbc; - if (inputMetaStore()->contains(ClassID_traits<T>::ID(),inputName) ) { - StatusCode ssc = inputMetaStore()->retrieve( cbc, inputName ); - if (ssc.isSuccess()) { - // Insert input bookkeeper into MetaCont for this sid - T* tostore = new T(*cbc); - if ( !mc->insert(sid,tostore) ) { - ATH_MSG_ERROR("Unable to insert " << inputName << " for " << sid << " with key " << name); - return StatusCode::FAILURE; // Fail if insert to mc fails - } - } - else { - ATH_MSG_ERROR("Could not retrieve class with name " << inputName << " in input store"); - return StatusCode::FAILURE; // Fail if store contains, but not retrieves - } - } - else { - ATH_MSG_WARNING("No " << inputName << " data in this file "); - } - - return StatusCode::SUCCESS; -} - -template <typename T, typename U> -StatusCode GenericMetadataTool<T,U>::addProcessMetadata() -{ - // Add the information from the current processing to the complete output - // --> same paradigm as original CutFlowSvc - // Get the complete bookkeeper collection of the output meta-data store - T* completeBook(NULL); - if( !(outputMetaStore()->retrieve( completeBook, m_outputCollName) ).isSuccess() ) { - ATH_MSG_ERROR( "Could not get output container from output MetaDataStore" ); - return StatusCode::FAILURE; - } - - // Get the bookkeeper from the current processing - T* fileCompleteBook(NULL); - if( outputMetaStore()->contains(ClassID_traits<T>::ID(),m_procMetaName) ) { - if( !(outputMetaStore()->retrieve( fileCompleteBook, m_procMetaName) ).isSuccess() ) { - ATH_MSG_WARNING( "Could not get process metadata from output MetaDataStore" ); - } - else { - // update the complete output with the complete input - //ATH_CHECK(this->updateContainer(completeBook,fileCompleteBook)); - } - } - else { - ATH_MSG_INFO("No process container " << m_procMetaName); - } - - return StatusCode::SUCCESS; -} - - -/* -namespace { - -xAOD::CutBookkeeper* -resolveLink (const xAOD::CutBookkeeper* old, - xAOD::CutBookkeeperContainer& contToUpdate, - const xAOD::CutBookkeeperContainer& otherCont, - const std::vector<size_t>& otherIndices) -{ - { - xAOD::CutBookkeeperContainer::iterator matchIter = - std::find( contToUpdate.begin(), - contToUpdate.end(), - old ); - if (matchIter != contToUpdate.end()) - return *matchIter; - } - - { - xAOD::CutBookkeeperContainer::const_iterator matchIter = - std::find( otherCont.begin(), - otherCont.end(), - old ); - if (matchIter != contToUpdate.end()) { - size_t pos = matchIter - otherCont.begin(); - return contToUpdate[otherIndices[pos]]; - } - } - - // If we didn't find it, we need to add it - xAOD::CutBookkeeper* newEBK = new xAOD::CutBookkeeper(); - if ( newEBK->usingPrivateStore() ) { newEBK->releasePrivateStore(); } - newEBK->makePrivateStore(old); - contToUpdate.push_back( newEBK ); - return newEBK; -} - - -} // anonymous namespace - -StatusCode -GenericMetadataTool::updateContainer( xAOD::CutBookkeeperContainer* contToUpdate, - const xAOD::CutBookkeeperContainer* otherCont ) -{ - ATH_MSG_DEBUG("calling updateContainer(...)" ); - ATH_MSG_VERBOSE("Have container to update with size=" << contToUpdate->size() - << ", and other container with size=" << otherCont->size() ); - - size_t origSize = contToUpdate->size(); - - // Vector of indices in contToUpdate of elements in otherCont. - std::vector< std::size_t > otherIndices (otherCont->size()); - // Loop through otherCont. - // If element already in contToUpdate, update event counts, otherwise create new element - for ( std::size_t i=0; i<otherCont->size(); ++i ) { - const xAOD::CutBookkeeper* otherEBK = otherCont->at(i); - ATH_MSG_VERBOSE("Looping through otherCont at index " << i); - ATH_MSG_VERBOSE("Have otherEBK with: name=" << otherEBK->name() - << ", cycle=" << otherEBK->cycle() - << ", nAcceptedEvents=" << otherEBK->nAcceptedEvents() - << ", inputStream=" << otherEBK->inputStream() ); - - - // Loop through the container to be updated (contToUpdate) and see if we find a match - bool foundEBKToUpdate(false); - for ( std::size_t j=0; j<contToUpdate->size(); ++j ) { - xAOD::CutBookkeeper* ebkToUpdate = contToUpdate->at(j); - // Check if they are identical, if so, update; else add otherEBK - if ( otherEBK->isEqualTo(ebkToUpdate) ) { - ebkToUpdate->setPayload( ebkToUpdate->payload() + otherEBK->payload() ); - otherIndices[i] = j; - foundEBKToUpdate = true; - break; - } - } // End: Inner loop over contToUpdate - if (!foundEBKToUpdate) { - xAOD::CutBookkeeper* newEBK = new xAOD::CutBookkeeper(); - if ( newEBK->usingPrivateStore() ) { newEBK->releasePrivateStore(); } - newEBK->makePrivateStore(otherEBK); - contToUpdate->push_back( newEBK ); - std::size_t ebIdx = newEBK->index(); - otherIndices[i] = ebIdx; - } - } // End: Outer loop over contToUpdate - - // Now, we still need to fix the cross-referencing of the newly added CutBookkkeepers - for ( std::size_t i=origSize; i<contToUpdate->size(); ++i ) { - xAOD::CutBookkeeper* ebkToModify = contToUpdate->at(i); - - // Parent check - if ( ebkToModify->hasParent() ) { - const xAOD::CutBookkeeper* oldParent = ebkToModify->parent(); - const xAOD::CutBookkeeper* newParent = resolveLink (oldParent, - *contToUpdate, - *otherCont, - otherIndices); - ebkToModify->setParent (newParent); - } // Done fixing parent - - // Children check - std::vector< xAOD::CutBookkeeper* > newChildren; - for ( std::size_t oldIdx=0; oldIdx<ebkToModify->nChildren(); ++oldIdx ) { - const xAOD::CutBookkeeper* oldEBK = ebkToModify->child(oldIdx); - newChildren.push_back (resolveLink (oldEBK, - *contToUpdate, - *otherCont, - otherIndices)); - } // Done fixing children - ebkToModify->setChildren (newChildren); - - // Used others check - std::vector< xAOD::CutBookkeeper* > newOthers; - for ( std::size_t oldIdx=0; oldIdx<ebkToModify->nUsedOthers(); ++oldIdx ) { - const xAOD::CutBookkeeper* oldEBK = ebkToModify->usedOther(oldIdx); - newOthers.push_back (resolveLink (oldEBK, - *contToUpdate, - *otherCont, - otherIndices)); - } // Done fixing used others - ebkToModify->setUsedOthers (newOthers); - - // Siblings check - std::vector< xAOD::CutBookkeeper* > newSiblings; - for ( std::size_t oldIdx=0; oldIdx<ebkToModify->nSiblings(); ++oldIdx ) { - const xAOD::CutBookkeeper* oldEBK = ebkToModify->sibling(oldIdx); - newSiblings.push_back (resolveLink (oldEBK, - *contToUpdate, - *otherCont, - otherIndices)); - } // Done fixing siblings - ebkToModify->setSiblings (newSiblings); - } // Done fixing all cross references - return StatusCode::SUCCESS; -} -*/ - diff --git a/Control/AthenaKernel/AthenaKernel/IMetaDataTool.h b/Control/AthenaKernel/AthenaKernel/IMetaDataTool.h index d119cbeb652a0961832ca8f9adf7f85f996edc0f..4937397ab583f1ef1431f427fbc8a4b5443701a1 100755 --- a/Control/AthenaKernel/AthenaKernel/IMetaDataTool.h +++ b/Control/AthenaKernel/AthenaKernel/IMetaDataTool.h @@ -12,7 +12,6 @@ **/ #include "GaudiKernel/IAlgTool.h" -#include "AthenaKernel/SourceID.h" /** @class IMetaDataTool * @brief This class provides the interface for MetaDataTools. @@ -22,14 +21,14 @@ class IMetaDataTool : virtual public IAlgTool { public: // Non-static members /// Function called when a new input file is opened - virtual StatusCode beginInputFile(const SG::SourceID& sid = "Serial") = 0; + virtual StatusCode beginInputFile() = 0; /// Function called when the currently open input file got completely /// processed - virtual StatusCode endInputFile(const SG::SourceID& sid = "Serial") = 0; + virtual StatusCode endInputFile() = 0; /// Function called when the tool should write out its metadata - virtual StatusCode metaDataStop(const SG::SourceID& sid = "Serial") = 0; + virtual StatusCode metaDataStop() = 0; /// Gaudi boilerplate static const InterfaceID& interfaceID(); diff --git a/Control/AthenaKernel/AthenaKernel/IMetadataTransition.h b/Control/AthenaKernel/AthenaKernel/IMetadataTransition.h index dced030eea70513f3357b49e169b7852377ccab3..5fc4e429dca6eef65761d6422ff20cbc1dcb5f59 100644 --- a/Control/AthenaKernel/AthenaKernel/IMetadataTransition.h +++ b/Control/AthenaKernel/AthenaKernel/IMetadataTransition.h @@ -29,7 +29,7 @@ public: // Non-static members virtual StatusCode retireMetadataSource(const Incident&) = 0; /// Function called when the tool should write out its metadata - virtual StatusCode prepareOutput(const Incident&) = 0; + virtual StatusCode prepareOutput() = 0; virtual StatusCode proxyIncident(const Incident&) = 0; diff --git a/Control/AthenaKernel/AthenaKernel/MetaCont.h b/Control/AthenaKernel/AthenaKernel/MetaCont.h index 3fb5879f23aaaea2d4452103c89eac4335bef479..ff76e28a5ffa04a9d3be57a96bfff7e72dccc2a3 100644 --- a/Control/AthenaKernel/AthenaKernel/MetaCont.h +++ b/Control/AthenaKernel/AthenaKernel/MetaCont.h @@ -192,6 +192,11 @@ bool MetaCont<T>::find(const SourceID& it, T*& t) const { t=itr->second; return true; } + else { + for (const auto& elt : m_metaSet) { + std::cerr << "Container has SID=" << elt.first << std::endl; + } + } return false; } diff --git a/Control/AthenaKernel/AthenaKernel/MetaContDataBucket.icc b/Control/AthenaKernel/AthenaKernel/MetaContDataBucket.icc index 1559e9482aa9c599a6936a44fd8588e1e2cfdaff..3d8ad804e819ac7c48b3c49ec6432280823a0321 100644 --- a/Control/AthenaKernel/AthenaKernel/MetaContDataBucket.icc +++ b/Control/AthenaKernel/AthenaKernel/MetaContDataBucket.icc @@ -73,12 +73,9 @@ template <class T> const SourceID MetaContDataBucket<T>::getSID() const { const EventContext& ctx = Gaudi::Hive::currentContext(); - if (ctx.valid()) { - const IProxyDict* store = - ctx.getExtension<Atlas::ExtendedEventContext>()->proxy(); - return store->sourceID(); - } - return "None"; + const IProxyDict* store = + ctx.getExtension<Atlas::ExtendedEventContext>()->proxy(); + return store->sourceID(); } diff --git a/Control/AthenaKernel/test/MetaContDataBucket_test.cxx b/Control/AthenaKernel/test/MetaContDataBucket_test.cxx index 677be7bb0616254741d842dbef360a0e31a3e8e2..3bac4b53485f4f5567e56dee891a07038ef85816 100644 --- a/Control/AthenaKernel/test/MetaContDataBucket_test.cxx +++ b/Control/AthenaKernel/test/MetaContDataBucket_test.cxx @@ -119,9 +119,9 @@ void test1() proxyDict.source = "source"; p = bucket.cast (ClassID_traits<TestPayload>::ID()); - //assert (typeid (*reinterpret_cast<TestPayload*>(p)) == typeid (TestPayload)); + assert (typeid (*reinterpret_cast<TestPayload*>(p)) == typeid (TestPayload)); p = bucket.cast (typeid (TestPayload)); - //assert (typeid (*reinterpret_cast<TestPayload*>(p)) == typeid (TestPayload)); + assert (typeid (*reinterpret_cast<TestPayload*>(p)) == typeid (TestPayload)); } diff --git a/Control/AthenaServices/share/AthenaOutputStream_test.ref b/Control/AthenaServices/share/AthenaOutputStream_test.ref index c0fdf6423bf203f8c9612fd7267d6b4a6ce40fda..efb1a7145cbdd6d6f945770c7fa95374e568dee9 100644 --- a/Control/AthenaServices/share/AthenaOutputStream_test.ref +++ b/Control/AthenaServices/share/AthenaOutputStream_test.ref @@ -2,7 +2,7 @@ Initializing Gaudi ApplicationMgr using job opts ../share/AthenaOutputStream_test.txt -JobOptionsSvc INFO # =======> /users/cranshaw/toolconts9/athena/Control/AthenaServices/share/../share/AthenaOutputStream_test.txt +JobOptionsSvc INFO # =======> /home/gemmeren/workarea/athena/Control/AthenaServices/share/../share/AthenaOutputStream_test.txt JobOptionsSvc INFO # (5,1): MessageSvc.OutputLevel = 2 JobOptionsSvc INFO # (6,1): StoreGateSvc.OutputLevel = 2 JobOptionsSvc INFO # (8,1): AthenaOutputStream.OutputLevel = 1 @@ -13,8 +13,8 @@ MessageSvc DEBUG Service base class initialized successfully ApplicationMgr DEBUG Getting my own properties ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Fri Sep 7 08:54:34 2018 + Welcome to ApplicationMgr (GaudiCoreSvc v30r1) + running on hepd-0003 on Wed Jan 31 14:51:16 2018 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully ServiceManager DEBUG Initializing service AppMgrRunable @@ -35,17 +35,16 @@ ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr Ready ClassIDSvc DEBUG Service base class initialized successfully IncidentSvc DEBUG Adding [ModuleLoaded] listener 'ClassIDSvc' with priority 100 -ClassIDSvc INFO getRegistryEntries: read 1312 CLIDRegistry entries for module ALL -ClassIDSvc DEBUG processCLIDDB: read 1554 entries from CLIDDB file: /users/cranshaw/toolconts9/build/x86_64-centos7-gcc62-opt/share/clid.db -ClassIDSvc DEBUG processCLIDDB: read 1553 entries from CLIDDB file: /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-09-04T2107/Athena/22.0.1/InstallArea/x86_64-centos7-gcc62-opt/share/clid.db +ClassIDSvc INFO getRegistryEntries: read 920 CLIDRegistry entries for module ALL +ClassIDSvc DEBUG processCLIDDB: read 1490 entries from CLIDDB file: /home/gemmeren/workarea/build/x86_64-centos7-gcc62-opt/share/clid.db +ClassIDSvc DEBUG processCLIDDB: read 1490 entries from CLIDDB file: /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-01-30T2209/Athena/22.0.0/InstallArea/x86_64-centos7-gcc62-opt/share/clid.db StoreGateSvc DEBUG Service base class initialized successfully StoreGateSvc DEBUG trying to create store SGImplSvc/StoreGateSvc_Impl StoreGateSvc_Impl DEBUG Service base class initialized successfully -ProxyProviderSvc DEBUG Service base class initialized successfully IncidentSvc DEBUG Adding [EndEvent] listener 'StoreGateSvc' with priority 100 IncidentSvc DEBUG Adding [BeginEvent] listener 'StoreGateSvc' with priority 100 ToolSvc DEBUG Service base class initialized successfully -ClassIDSvc INFO getRegistryEntries: read 2273 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 2018 CLIDRegistry entries for module ALL AthenaOutputStream DEBUG Property update for OutputLevel : new value = 1 AthenaOutputStreamVERBOSE ServiceLocatorHelper::service: found service EventDataSvc TimelineSvc DEBUG Service base class initialized successfully @@ -62,9 +61,7 @@ AthenaOutputStream DEBUG In initialize AthenaOutputStream DEBUG Found StoreGateSvc store. ItemListSvc DEBUG ItemListSvc initialize OutputStreamSeq... INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00 -OutputStreamSeq... DEBUG Service base class initialized successfully MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 -MetaDataSvc DEBUG Service base class initialized successfully InputMetaDataStore DEBUG Service base class initialized successfully InputMetaDataStore DEBUG trying to create store SGImplSvc/InputMetaDataStore_Impl InputMetaDataSt... DEBUG Service base class initialized successfully @@ -76,10 +73,8 @@ MetaDataStore_Impl DEBUG Service base class initialized successfully IncidentSvc DEBUG Adding [EndEvent] listener 'MetaDataStore' with priority 100 IncidentSvc DEBUG Adding [BeginEvent] listener 'MetaDataStore' with priority 100 AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00 -DataModelCompatSvc DEBUG Service base class initialized successfully DataModelCompatSvc DEBUG FILE:LINE (StatusCode DataModelCompatSvc::initialize()): running IncidentSvc DEBUG Adding [BeginEvent] listener 'DataModelCompatSvc' with priority 0 -PoolSvc DEBUG Service base class initialized successfully IoComponentMgr DEBUG --> initialize() IoComponentMgr DEBUG Service base class initialized successfully IncidentSvc DEBUG Adding [BeginOutputFile] listener 'IoComponentMgr' with priority 100 @@ -91,26 +86,28 @@ IoComponentMgr DEBUG --> io_hasitem() PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok] PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc DEBUG Service base class initialized successfully +DBReplicaSvc DEBUG HOSTNAME hepd-0003 has no domain - try hostname --fqdn +DBReplicaSvc DEBUG HOSTNAME from fqdn: hepd-0003.lcrc.anl.gov DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-09-04T2107/Athena/22.0.1/InstallArea/x86_64-centos7-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Read replica configuration from /home/gemmeren/workarea/build/x86_64-centos7-gcc62-opt/share/dbreplica.config DBReplicaSvc DEBUG Candidate server ATLF (priority -2300) -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Total of 1 servers found for host hepd-0003.lcrc.anl.gov [ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams -Gaudi::MultiFil... DEBUG Service base class initialized successfully PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] ChronoStatSvc DEBUG Service base class initialized successfully +ChronoStatSvc INFO Number of skipped events for MemStat-1 FileMgr DEBUG Service base class initialized successfully FileMgr DEBUG Successfully registered handler for tech "ROOT" FileMgr DEBUG Successfully registered handler for tech "POSIX" -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray([]) IncidentSvc DEBUG Adding [FirstInputFile] listener 'MetaDataSvc' with priority 90 +IncidentSvc DEBUG Adding [BeginTagFile] listener 'MetaDataSvc' with priority 90 IncidentSvc DEBUG Adding [BeginInputFile] listener 'MetaDataSvc' with priority 90 IncidentSvc DEBUG Adding [EndInputFile] listener 'MetaDataSvc' with priority 10 +IncidentSvc DEBUG Adding [EndTagFile] listener 'MetaDataSvc' with priority 10 IncidentSvc DEBUG Adding [LastInputFile] listener 'MetaDataSvc' with priority 10 IncidentSvc DEBUG Adding [ShmProxy] listener 'MetaDataSvc' with priority 90 IoComponentMgr DEBUG --> io_register(MetaDataSvc) @@ -128,7 +125,6 @@ IoComponentMgr DEBUG --> io_hasitem() AthenaOutputStream INFO I/O reinitialization... IncidentSvc DEBUG Adding [MetaDataStop] listener 'AthenaOutputStream' with priority 50 IncidentSvc DEBUG Adding [UpdateOutputFile] listener 'AthenaOutputStream' with priority 50 -AthenaOutputStr... DEBUG Property update for OutputLevel : new value = 1 AthenaOutputStream DEBUG End initialize AthenaOutputStreamVERBOSE ServiceLocatorHelper::service: found service AlgExecStateSvc AlgExecStateSvc DEBUG preInit: will add Alg AthenaOutputStream later @@ -137,25 +133,25 @@ AthenaOutputStream DEBUG output handles: 0 AthenaOutputStream DEBUG Registering all Tools in ToolHandleArray HelperTools AthenaOutputStream DEBUG Adding private ToolHandle tool AthenaOutputStream.AthenaOutputStreamTool (AthenaOutputStreamTool) AthenaOutputStream DEBUG Data Deps for AthenaOutputStream -StoreGateSvc_Impl DEBUG Recorded object @0x43ad800 with key uno of type Foo(CLID 8101) - in DataObject @0x43ac170 +ClassIDSvc INFO getRegistryEntries: read 926 CLIDRegistry entries for module ALL +StoreGateSvc_Impl DEBUG Recorded object @0x4541940 with key uno of type Foo(CLID 8101) + in DataObject @0x45a4730 object modifiable when retrieved -StoreGateSvc_Impl DEBUG Recorded object @0x43adac0 with key due of type Foo(CLID 8101) - in DataObject @0x43adae0 +StoreGateSvc_Impl DEBUG Recorded object @0x45a4a60 with key due of type Foo(CLID 8101) + in DataObject @0x45daa20 object modifiable when retrieved -StoreGateSvc_Impl DEBUG Recorded object @0x43adaa0 with key uno of type Bar(CLID 8107) - in DataObject @0x43aded0 +StoreGateSvc_Impl DEBUG Recorded object @0x45db370 with key uno of type Bar(CLID 8107) + in DataObject @0x3b5f440 object modifiable when retrieved -StoreGateSvc_Impl DEBUG Recorded object @0x43adbb0 with key due of type Bar(CLID 8107) - in DataObject @0x43ae200 +StoreGateSvc_Impl DEBUG Recorded object @0x39db510 with key due of type Bar(CLID 8107) + in DataObject @0x45daac0 object modifiable when retrieved -StoreGateSvc_Impl DEBUG Recorded object @0x43ad9d0 with key quattro of type Bar(CLID 8107) - in DataObject @0x43ae500 +StoreGateSvc_Impl DEBUG Recorded object @0x45a4f70 with key quattro of type Bar(CLID 8107) + in DataObject @0x45a5000 object modifiable when retrieved -StoreGateSvc_Impl DEBUG Recorded object @0x23f52d0 with key cinque of type Bar(CLID 8107) - in DataObject @0x43ae8f0 +StoreGateSvc_Impl DEBUG Recorded object @0x45a5090 with key cinque of type Bar(CLID 8107) + in DataObject @0x45a53c0 object modifiable when retrieved -ClassIDSvc INFO getRegistryEntries: read 1081 CLIDRegistry entries for module ALL AthenaOutputStr...WARNING add: can not find clid 13 in clid db AthenaOutputStream DEBUG addItemObjects(13,"*") called AthenaOutputStream DEBUG Key:* diff --git a/Control/AthenaServices/src/AthenaOutputStream.cxx b/Control/AthenaServices/src/AthenaOutputStream.cxx index 05c3c09b33fa33878da3e024e55ae60ffc64ccf7..4a24985696d0df1f736ac7e3c2511ee12d703e14 100644 --- a/Control/AthenaServices/src/AthenaOutputStream.cxx +++ b/Control/AthenaServices/src/AthenaOutputStream.cxx @@ -32,7 +32,6 @@ #include "AthContainersInterfaces/IAuxStore.h" #include "AthContainersInterfaces/IAuxStoreIO.h" #include "OutputStreamSequencerSvc.h" -#include "MetaDataSvc.h" #include <boost/tokenizer.hpp> #include <cassert> @@ -144,14 +143,14 @@ AthenaOutputStream::AthenaOutputStream(const string& name, ISvcLocator* pSvcLoca m_dataStore("StoreGateSvc", name), m_metadataStore("MetaDataStore", name), m_currentStore(&m_dataStore), - m_itemSvc("ItemListSvc", name), + m_itemSvc("ItemListSvc", name), m_outputAttributes(), - m_pCLIDSvc("ClassIDSvc", name), - m_outSeqSvc("OutputStreamSequencerSvc", name), + m_pCLIDSvc("ClassIDSvc", name), + m_outSeqSvc("OutputStreamSequencerSvc", name), m_p2BWritten(string("SG::Folder/") + name + string("_TopFolder"), this), m_decoder(string("SG::Folder/") + name + string("_excluded"), this), m_transient(string("SG::Folder/") + name + string("_transient"), this), - m_events(0), + m_events(0), m_streamer(string("AthenaOutputStreamTool/") + name + string("Tool"), this), m_helperTools(this) { assert(pSvcLocator); @@ -316,75 +315,60 @@ StatusCode AthenaOutputStream::initialize() { return(status); } -StatusCode AthenaOutputStream::stop() -{ - ATH_MSG_INFO("AthenaOutputStream " << this->name() << " ::stop()"); - for (std::vector<ToolHandle<IAthenaOutputTool> >::iterator iter = m_helperTools.begin(); - iter != m_helperTools.end(); iter++) { - if (!(*iter)->preFinalize().isSuccess()) { - ATH_MSG_ERROR("Cannot finalize helper tool"); - } - } - FileIncident fileInc(name(),"MetaDataStop","","Serial"); - ServiceHandle<MetaDataSvc> mdsvc("MetaDataSvc", name()); - if (mdsvc.retrieve().isFailure()) { - ATH_MSG_ERROR("Could not retrieve MetaDataSvc for stop actions"); - } - else { - ATH_CHECK(mdsvc->prepareOutput(fileInc)); - } - // Always force a final commit in stop - mainly applies to AthenaPool - if (m_writeOnFinalize) { - if (write().isFailure()) { // true mean write AND commit - ATH_MSG_ERROR("Cannot write on finalize"); - } - ATH_MSG_INFO("Records written: " << m_events); - } - - if (!m_metadataItemList.value().empty()) { - m_currentStore = &m_metadataStore; - StatusCode status = m_streamer->connectServices(m_metadataStore.type(), m_persName, false); - if (status.isFailure()) { - throw GaudiException("Unable to connect metadata services", name(), StatusCode::FAILURE); - } - m_checkNumberOfWrites = false; - m_outputAttributes = "[OutputCollection=MetaDataHdr][PoolContainerPrefix=MetaData][AttributeListKey=][DataHeaderSatellites=]"; - m_p2BWritten->clear(); - IProperty *pAsIProp(nullptr); - if ((m_p2BWritten.retrieve()).isFailure() || - nullptr == (pAsIProp = dynamic_cast<IProperty*>(&*m_p2BWritten)) || - (pAsIProp->setProperty("ItemList", m_metadataItemList.toString())).isFailure()) { - throw GaudiException("Folder property [metadataItemList] not found", name(), StatusCode::FAILURE); - } - if (write().isFailure()) { // true mean write AND commit - ATH_MSG_ERROR("Cannot write metadata"); - } - m_outputAttributes.clear(); - m_currentStore = &m_dataStore; - status = m_streamer->connectServices(m_dataStore.type(), m_persName, m_extendProvenanceRecord); - if (status.isFailure()) { - throw GaudiException("Unable to re-connect services", name(), StatusCode::FAILURE); - } - m_p2BWritten->clear(); - if ((pAsIProp->setProperty(m_itemList)).isFailure()) { - throw GaudiException("Folder property [itemList] not found", name(), StatusCode::FAILURE); - } - ATH_MSG_INFO("Records written: " << m_events); - for (std::vector<ToolHandle<IAthenaOutputTool> >::iterator iter = m_helperTools.begin(); - iter != m_helperTools.end(); iter++) { - if (!(*iter)->postInitialize().isSuccess()) { - ATH_MSG_ERROR("Cannot initialize helper tool"); - } - } - } - return StatusCode::SUCCESS; -} - void AthenaOutputStream::handle(const Incident& inc) { ATH_MSG_DEBUG("handle() incident type: " << inc.type()); if (inc.type() == "MetaDataStop") { // Moved preFinalize of helper tools to stop - want to optimize the // output file in finalize RDS 12/2009 + for (std::vector<ToolHandle<IAthenaOutputTool> >::iterator iter = m_helperTools.begin(); + iter != m_helperTools.end(); iter++) { + if (!(*iter)->preFinalize().isSuccess()) { + ATH_MSG_ERROR("Cannot finalize helper tool"); + } + } + // Always force a final commit in stop - mainly applies to AthenaPool + if (m_writeOnFinalize) { + if (write().isFailure()) { // true mean write AND commit + ATH_MSG_ERROR("Cannot write on finalize"); + } + ATH_MSG_INFO("Records written: " << m_events); + } + if (!m_metadataItemList.value().empty()) { + m_currentStore = &m_metadataStore; + StatusCode status = m_streamer->connectServices(m_metadataStore.type(), m_persName, false); + if (status.isFailure()) { + throw GaudiException("Unable to connect metadata services", name(), StatusCode::FAILURE); + } + m_checkNumberOfWrites = false; + m_outputAttributes = "[OutputCollection=MetaDataHdr][PoolContainerPrefix=MetaData][AttributeListKey=][DataHeaderSatellites=]"; + m_p2BWritten->clear(); + IProperty *pAsIProp(nullptr); + if ((m_p2BWritten.retrieve()).isFailure() || + nullptr == (pAsIProp = dynamic_cast<IProperty*>(&*m_p2BWritten)) || + (pAsIProp->setProperty("ItemList", m_metadataItemList.toString())).isFailure()) { + throw GaudiException("Folder property [metadataItemList] not found", name(), StatusCode::FAILURE); + } + if (write().isFailure()) { // true mean write AND commit + ATH_MSG_ERROR("Cannot write metadata"); + } + m_outputAttributes.clear(); + m_currentStore = &m_dataStore; + status = m_streamer->connectServices(m_dataStore.type(), m_persName, m_extendProvenanceRecord); + if (status.isFailure()) { + throw GaudiException("Unable to re-connect services", name(), StatusCode::FAILURE); + } + m_p2BWritten->clear(); + if ((pAsIProp->setProperty(m_itemList)).isFailure()) { + throw GaudiException("Folder property [itemList] not found", name(), StatusCode::FAILURE); + } + ATH_MSG_INFO("Records written: " << m_events); + for (std::vector<ToolHandle<IAthenaOutputTool> >::iterator iter = m_helperTools.begin(); + iter != m_helperTools.end(); iter++) { + if (!(*iter)->postInitialize().isSuccess()) { + ATH_MSG_ERROR("Cannot initialize helper tool"); + } + } + } } else if (inc.type() == "UpdateOutputFile") { const FileIncident* fileInc = dynamic_cast<const FileIncident*>(&inc); if(fileInc!=nullptr) { @@ -524,7 +508,6 @@ StatusCode AthenaOutputStream::write() { } } if (failed) { - ATH_MSG_ERROR("Could not connectOutput"); return(StatusCode::FAILURE); } return(StatusCode::SUCCESS); @@ -544,30 +527,11 @@ void AthenaOutputStream::collectAllObjects() { } } m_p2BWritten->updateItemList(true); - std::vector<CLID> folderclids; // Collect all objects that need to be persistified: - //FIXME refactor: move this in folder. Treat as composite +//FIXME refactor: move this in folder. Treat as composite for (SG::IFolder::const_iterator i = m_p2BWritten->begin(), iEnd = m_p2BWritten->end(); i != iEnd; i++) { + //ATH_MSG_INFO("BLARG " << i->id() << " " << i->key()); addItemObjects(*i); - folderclids.push_back(i->id()); - } - - // FIXME This is a bruteforece hack to remove items erroneously - // added somewhere in the morass of the addItemObjects logic - IDataSelector prunedList; - for (auto it = m_objects.begin(); it != m_objects.end(); ++it) { - if (std::find(folderclids.begin(),folderclids.end(),(*it)->clID())!=folderclids.end()) { - prunedList.push_back(*it); // build new list that is correct - } - else { - ATH_MSG_DEBUG("Object " << (*it)->clID() <<","<< (*it)->name() << " found that was not in itemlist"); - } - } - m_objects.clear(); // clear previous list - //for (auto it = m_objects.begin(); it != m_objects.end(); ++it) { - for (auto it = prunedList.begin(); it != prunedList.end(); ++it) { - //ATH_MSG_INFO("GLARB " << (*it)->clID() << " " << (*it)->name()); - m_objects.push_back(*it); // copy new into previous } } @@ -723,6 +687,7 @@ void AthenaOutputStream::addItemObjects(const SG::FolderItem& item) attributes.insert(attr); std::stringstream temp; temp << tns.str() << attr; + //ATH_MSG_INFO("BLARG " << this->name() << " " << temp.str()); if (m_itemSvc->addStreamItem(this->name(),temp.str()).isFailure()) { ATH_MSG_WARNING("Unable to record item " << temp.str() << " in Svc"); } diff --git a/Control/AthenaServices/src/AthenaOutputStream.h b/Control/AthenaServices/src/AthenaOutputStream.h index 584d8a528898b9b75572b0e8108abf59504a3bd0..f85aaa6968f139345c77d75ee93eb7b9053bc179 100644 --- a/Control/AthenaServices/src/AthenaOutputStream.h +++ b/Control/AthenaServices/src/AthenaOutputStream.h @@ -143,7 +143,6 @@ public: virtual StatusCode initialize(); virtual StatusCode finalize(); virtual StatusCode execute(); - virtual StatusCode stop() override; //@} /// Stream the data virtual StatusCode write(); diff --git a/Control/AthenaServices/src/MetaDataSvc.cxx b/Control/AthenaServices/src/MetaDataSvc.cxx index a35352c729e16afb2977946e1336a28f3f92d6d9..ce43e4a91ee33d5294cd36ee23853157ee216e09 100644 --- a/Control/AthenaServices/src/MetaDataSvc.cxx +++ b/Control/AthenaServices/src/MetaDataSvc.cxx @@ -39,8 +39,7 @@ MetaDataSvc::MetaDataSvc(const std::string& name, ISvcLocator* pSvcLocator) : :: m_allowMetaDataStop(false), m_persToClid(), m_toolForClid(), - m_streamForKey(), - m_metaDataTools(this) { + m_streamForKey() { // declare properties declareProperty("MetaDataContainer", m_metaDataCont = ""); declareProperty("MetaDataTools", m_metaDataTools); @@ -118,11 +117,10 @@ StatusCode MetaDataSvc::initialize() { ATH_MSG_FATAL("Cannot get IncidentSvc."); return(StatusCode::FAILURE); } - if (m_metaDataTools.retrieve().isFailure()) { + if (!m_metaDataTools.retrieve().isSuccess()) { ATH_MSG_FATAL("Cannot get " << m_metaDataTools); return(StatusCode::FAILURE); } - ATH_MSG_INFO("Found " << m_metaDataTools); m_incSvc->addListener(this, "FirstInputFile", 90); m_incSvc->addListener(this, "BeginInputFile", 90); @@ -206,6 +204,13 @@ StatusCode MetaDataSvc::stop() { } } + // Set to be listener for end of event + Incident metaDataStopIncident(name(), "MetaDataStop"); + m_incSvc->fireIncident(metaDataStopIncident); + + // finalizing tools via metaDataStop + ATH_CHECK(this->prepareOutput()); + return(StatusCode::SUCCESS); } //_______________________________________________________________________ @@ -270,7 +275,6 @@ StatusCode MetaDataSvc::newMetadataSource(const Incident& inc) ATH_MSG_ERROR("Unable to get FileName from EndInputFile incident"); return StatusCode::FAILURE; } - const std::string guid = fileInc->fileGuid(); const std::string fileName = fileInc->fileName(); m_allowMetaDataStop = false; if (fileName.find("BSF:") != 0) { @@ -288,7 +292,7 @@ StatusCode MetaDataSvc::newMetadataSource(const Incident& inc) StatusCode rc(StatusCode::SUCCESS); for (auto it = m_metaDataTools.begin(); it != m_metaDataTools.end(); ++it) { ATH_MSG_DEBUG(" calling beginInputFile for " << (*it)->name()); - if ( (*it)->beginInputFile(guid).isFailure() ) { + if ( (*it)->beginInputFile().isFailure() ) { ATH_MSG_ERROR("Unable to call beginInputFile for " << it->name()); rc = StatusCode::FAILURE; } @@ -296,16 +300,10 @@ StatusCode MetaDataSvc::newMetadataSource(const Incident& inc) return rc; } -StatusCode MetaDataSvc::retireMetadataSource(const Incident& inc) +StatusCode MetaDataSvc::retireMetadataSource(const Incident&) { - const FileIncident* fileInc = dynamic_cast<const FileIncident*>(&inc); - if (fileInc == nullptr) { - ATH_MSG_ERROR("Unable to get FileName from EndInputFile incident"); - return StatusCode::FAILURE; - } - const std::string guid = fileInc->fileGuid(); for (auto it = m_metaDataTools.begin(); it != m_metaDataTools.end(); ++it) { - if ( (*it)->endInputFile(guid).isFailure() ) { + if ( (*it)->endInputFile().isFailure() ) { ATH_MSG_ERROR("Unable to call endInputFile for " << it->name()); return StatusCode::FAILURE; } @@ -314,18 +312,12 @@ StatusCode MetaDataSvc::retireMetadataSource(const Incident& inc) return StatusCode::SUCCESS; } -StatusCode MetaDataSvc::prepareOutput(const Incident& inc) +StatusCode MetaDataSvc::prepareOutput() { - const FileIncident* fileInc = dynamic_cast<const FileIncident*>(&inc); - if (fileInc == nullptr) { - ATH_MSG_ERROR("Unable to get FileName from MetaDataStop incident"); - return StatusCode::FAILURE; - } - const std::string guid = fileInc->fileGuid(); StatusCode rc(StatusCode::SUCCESS); for (auto it = m_metaDataTools.begin(); it != m_metaDataTools.end(); ++it) { ATH_MSG_DEBUG(" calling metaDataStop for " << (*it)->name()); - if ( (*it)->metaDataStop(guid).isFailure() ) { + if ( (*it)->metaDataStop().isFailure() ) { ATH_MSG_ERROR("Unable to call metaDataStop for " << it->name()); rc = StatusCode::FAILURE; } @@ -385,7 +377,7 @@ void MetaDataSvc::handle(const Incident& inc) { ATH_MSG_ERROR("Could not retire metadata source " << fileName); } } else if (inc.type() == "LastInputFile") { - if (m_metaDataTools.release().isFailure()) { + if (!m_metaDataTools.release().isSuccess()) { ATH_MSG_WARNING("Cannot release " << m_metaDataTools); } } else if (inc.type() == "ShmProxy") { @@ -395,17 +387,16 @@ void MetaDataSvc::handle(const Incident& inc) { } } //__________________________________________________________________________ -StatusCode MetaDataSvc::transitionMetaDataFile(const FileIncident& inc, bool ignoreInputFile) { +StatusCode MetaDataSvc::transitionMetaDataFile(bool ignoreInputFile) { // Allow MetaDataStop only on Input file transitions if (!m_allowMetaDataStop && !ignoreInputFile) { return(StatusCode::FAILURE); } - //FileIncident metaDataStopIncident(name(), "MetaDataStop", inc.fileName(), inc.fileGuid()); - //m_incSvc->fireIncident(metaDataStopIncident); + Incident metaDataStopIncident(name(), "MetaDataStop"); + m_incSvc->fireIncident(metaDataStopIncident); // Set to be listener for end of event - //ATH_CHECK(this->prepareOutput(metaDataStopIncident)); - ATH_CHECK(this->prepareOutput(inc)); + ATH_CHECK(this->prepareOutput()); AthCnvSvc* cnvSvc = dynamic_cast<AthCnvSvc*>(m_addrCrtr.operator->()); if (cnvSvc) { diff --git a/Control/AthenaServices/src/MetaDataSvc.h b/Control/AthenaServices/src/MetaDataSvc.h index 67a401a245744ada1ff22077975aba5eff99e925..b91b43e337ef446c516650ce9a28bd8f6f2da0d3 100644 --- a/Control/AthenaServices/src/MetaDataSvc.h +++ b/Control/AthenaServices/src/MetaDataSvc.h @@ -15,7 +15,6 @@ #include "GaudiKernel/Property.h" // no forward decl: typedef #include "GaudiKernel/IIncidentListener.h" #include "GaudiKernel/IIoComponent.h" -#include "GaudiKernel/FileIncident.h" #include "GaudiKernel/IFileMgr.h" // for FILEMGR_CALLBACK_ARGS #include "AthenaKernel/IAddressProvider.h" #include "AthenaBaseComps/AthService.h" @@ -76,7 +75,7 @@ public: // Non-static members /// Function called when the current state of metadata must be made /// ready for output - StatusCode prepareOutput(const Incident&); + StatusCode prepareOutput(); StatusCode proxyIncident(const Incident&); StatusCode queryInterface(const InterfaceID& riid, void** ppvInterface); @@ -98,7 +97,7 @@ public: // Non-static members void handle(const Incident& incident); /// Transition output metadata file - fire MeteDataStop incident to transition OutputStream - StatusCode transitionMetaDataFile(const FileIncident&, bool ignoreInputFile = false); + StatusCode transitionMetaDataFile(bool ignoreInputFile = false); /// Callback method to reinitialize the internal state of the component for I/O purposes (e.g. upon @c fork(2)) StatusCode io_reinit(); diff --git a/Control/AthenaServices/src/OutputStreamSequencerSvc.cxx b/Control/AthenaServices/src/OutputStreamSequencerSvc.cxx index f9fbfd5f114ddabb88d07ba449a2c38ee1568d9e..b00bdee427bcafdd170070e4e831f98277f9203e 100644 --- a/Control/AthenaServices/src/OutputStreamSequencerSvc.cxx +++ b/Control/AthenaServices/src/OutputStreamSequencerSvc.cxx @@ -75,13 +75,9 @@ StatusCode OutputStreamSequencerSvc::queryInterface(const InterfaceID& riid, voi void OutputStreamSequencerSvc::handle(const Incident& inc) { ATH_MSG_INFO("handle " << name() << " incident type " << inc.type()); if (m_fileSequenceNumber > 0 || !m_fileSequenceLabel.empty()) { // Do nothing for first call - const FileIncident* fileInc = dynamic_cast<const FileIncident*>(&inc); - if (fileInc != nullptr) { - if (!m_metaDataSvc->transitionMetaDataFile(*fileInc, m_ignoreInputFile.value()).isSuccess()) { - ATH_MSG_FATAL("Cannot transition MetaDataSvc."); - } + if (!m_metaDataSvc->transitionMetaDataFile(m_ignoreInputFile.value()).isSuccess()) { + ATH_MSG_FATAL("Cannot transition MetaDataSvc."); } - else ATH_MSG_FATAL("Cannot transition MetaDataSvc."); } m_fileSequenceNumber++; m_fileSequenceLabel.clear(); diff --git a/Control/StoreGate/StoreGate/MetaHandleKey.icc b/Control/StoreGate/StoreGate/MetaHandleKey.icc index 1bfa1f608995964a729539da78bf99f9502b3c90..21d85907e7439091020f6fece80967e31da7b2ff 100644 --- a/Control/StoreGate/StoreGate/MetaHandleKey.icc +++ b/Control/StoreGate/StoreGate/MetaHandleKey.icc @@ -40,18 +40,14 @@ namespace SG { // If container does not exist, then create it in the store // otherwise cache pointer to container if (m_store->contains< MetaCont<T> > (SG::VarHandleKey::key())) { - MsgStream msg(Athena::getMessageSvc(), "MetaHandleKey"); if (m_store->retrieve(m_cont, SG::VarHandleKey::key()).isFailure()) { + MsgStream msg(Athena::getMessageSvc(), "MetaHandleKey"); msg << MSG::ERROR << "MetaHandleKey::init(): unable to retrieve MetaCont of " << Gaudi::DataHandle::fullKey() << " from MetaDataStore" << endmsg; return StatusCode::FAILURE; } - else { - msg << MSG::INFO << "MetaCont found with key= " - << SG::VarHandleKey::key() << endmsg; - } } else { m_cont = new MetaCont<T>(SG::VarHandleKey::key()); if (m_store->record(m_cont, SG::VarHandleKey::key()).isFailure()) { diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref index 7eadff74abe690fca12016c9cd5dce8877023853..fd8dcc5704736e5ed51c08d29fd0b629bec10efb 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref @@ -1,19 +1,19 @@ -Thu Sep 6 17:03:06 CDT 2018 +Wed Jul 18 18:17:35 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_AppendJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5518 configurables from 19 genConfDb files +Py:ConfigurableDb INFO Read module info for 5511 configurables from 52 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Thu Sep 6 17:03:14 2018 + Welcome to ApplicationMgr (GaudiCoreSvc v30r2) + running on lxplus052.cern.ch on Wed Jul 18 18:17:42 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -21,7 +21,7 @@ ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to leve StatusCodeSvc INFO initialize AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 2918 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 2428 CLIDRegistry entries for module ALL CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 ClassIDSvc INFO getRegistryEntries: read 916 CLIDRegistry entries for module ALL @@ -35,16 +35,15 @@ PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:Catalog1.xml) [ok] PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-09-04T2107/Athena/22.0.1/InstallArea/x86_64-centos7-gcc62-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-07-17T2058/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus052.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray([]) WriteData DEBUG input handles: 0 WriteData DEBUG output handles: 2 WriteData DEBUG Data Deps for WriteData @@ -53,7 +52,7 @@ WriteData DEBUG Data Deps for WriteData WriteTag INFO in initialize() Stream1 DEBUG Property update for OutputLevel : new value = 2 Stream1.Stream1... DEBUG Property update for OutputLevel : new value = 2 -ClassIDSvc INFO getRegistryEntries: read 1504 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 1304 CLIDRegistry entries for module ALL Stream1 DEBUG In initialize Stream1 DEBUG Found IDecisionSvc. DecisionSvc INFO Inserting stream: Stream1 with no Algs @@ -83,6 +82,7 @@ AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +ClassIDSvc INFO getRegistryEntries: read 460 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start of run 2 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #2 0 events processed so far <<<=== WriteData DEBUG in execute() @@ -153,7 +153,7 @@ SimplePoolFile2... DEBUG --->Reading Param:POOL_VSN=[1.1] SimplePoolFile2... DEBUG --->Reading Param:FORMAT_VSN=[1.1] ##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. AthenaPoolCnvSvc DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile2.root and cont: TTree=POOLContainerForm(DataHeaderForm) -ClassIDSvc INFO getRegistryEntries: read 514 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 53 CLIDRegistry entries for module ALL Stream1 DEBUG addItemObjects(2101,"*") called Stream1 DEBUG Key:* Stream1 DEBUG Added object 2101,"McEventInfo" @@ -196,6 +196,7 @@ POOLCollectionT... DEBUG Branch container 'MagicNumber' POOLCollectionT... DEBUG Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile2.root and cont: POOLContainer(DataHeader) AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile2.root and cont: POOLContainerForm(DataHeaderForm) +ClassIDSvc INFO getRegistryEntries: read 17 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> done processing event #20, run #2 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #21, run #2 1 events processed so far <<<=== WriteData DEBUG in execute() @@ -203,7 +204,6 @@ WriteData INFO EventInfo event: 21 run: 2 WriteData INFO registered all data WriteTag INFO EventInfo event: 21 run: 2 WriteTag INFO registered all data -ClassIDSvc INFO getRegistryEntries: read 17 CLIDRegistry entries for module ALL Stream1 DEBUG addItemObjects(2101,"*") called Stream1 DEBUG Key:* Stream1 DEBUG Added object 2101,"McEventInfo" @@ -426,7 +426,7 @@ Stream1 DEBUG Added object 2101,"McEventInfo" Stream1 DEBUG Collected objects: Stream1 DEBUG Object/count: EventInfo_McEventInfo, 20 AthenaEventLoopMgr INFO ===>>> done processing event #39, run #2 20 events processed so far <<<=== -Stream1 INFO AthenaOutputStream Stream1 ::stop() +Stream1 DEBUG handle() incident type: MetaDataStop Stream1 DEBUG addItemObjects(167728019,"Stream1") called Stream1 DEBUG Key:Stream1 Stream1 DEBUG Added object 167728019,"Stream1" @@ -450,6 +450,7 @@ MetaDataHdr(Dat... DEBUG attributes# = 1 MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree Stream1 INFO Records written: 21 +Stream1 DEBUG Leaving handle Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] Domain[ROOT_All] INFO -> Deaccess DbDatabase UPDATE [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] @@ -469,11 +470,11 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** +commitOutput INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 21 cRep_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.238(+- 1.52)/ 0/ 10 [ms] #= 42 -commitOutput INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.476(+- 2.13)/ 0/ 10 [ms] #= 21 fRep_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.238(+- 1.52)/ 0/ 10 [ms] #= 42 cRepR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.0699(+-0.833)/ 0/ 10 [ms] #=143 -ChronoStatSvc INFO Time User : Tot= 0.69 [s] #= 1 +ChronoStatSvc INFO Time User : Tot= 0.77 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref index 33f8792539f4a72d5cf1083ee7c7b455895e11c1..610977114f462b91be8906df907c9099979fe049 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref @@ -1,19 +1,19 @@ -Thu Sep 6 17:05:21 CDT 2018 +Wed Jul 18 20:05:04 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_ConcatJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5518 configurables from 19 genConfDb files +Py:ConfigurableDb INFO Read module info for 5511 configurables from 52 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Thu Sep 6 17:05:29 2018 + Welcome to ApplicationMgr (GaudiCoreSvc v30r2) + running on lxplus052.cern.ch on Wed Jul 18 20:05:12 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -21,11 +21,11 @@ ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to leve StatusCodeSvc INFO initialize AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 2918 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 2428 CLIDRegistry entries for module ALL CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 ClassIDSvc INFO getRegistryEntries: read 916 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 385 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 384 CLIDRegistry entries for module ALL WriteData DEBUG Property update for OutputLevel : new value = 2 WriteData INFO in initialize() MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 @@ -36,16 +36,15 @@ PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:Catalog1.xml) [ok] PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-09-04T2107/Athena/22.0.1/InstallArea/x86_64-centos7-gcc62-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-07-17T2058/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus052.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray([]) WriteData DEBUG input handles: 0 WriteData DEBUG output handles: 2 WriteData DEBUG Data Deps for WriteData @@ -53,7 +52,7 @@ WriteData DEBUG Data Deps for WriteData + OUTPUT ( 'ExampleHitContainer' , 'StoreGateSvc+PetersHits' ) Stream1 DEBUG Property update for OutputLevel : new value = 2 Stream1.Stream1... DEBUG Property update for OutputLevel : new value = 2 -ClassIDSvc INFO getRegistryEntries: read 1472 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 1272 CLIDRegistry entries for module ALL Stream1 DEBUG In initialize Stream1 DEBUG Found IDecisionSvc. DecisionSvc INFO Inserting stream: Stream1 with no Algs @@ -116,6 +115,7 @@ AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +ClassIDSvc INFO getRegistryEntries: read 108 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start of run 1 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #0, run #1 0 events processed so far <<<=== WriteData DEBUG in execute() @@ -148,7 +148,6 @@ SimplePoolFile1... DEBUG --->Adding Assoc :????/##Params [200] (2 , ffffffff) SimplePoolFile1... DEBUG ---->ClassID:???? ##Params DEBUG No objects passing selection criteria... Container has 0 Entries in total. AthenaPoolCnvSvc DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile1.root and cont: TTree=POOLContainerForm(DataHeaderForm) -ClassIDSvc INFO getRegistryEntries: read 108 CLIDRegistry entries for module ALL Stream1 DEBUG addItemObjects(2101,"*") called Stream1 DEBUG Key:* Stream1 DEBUG Added object 2101,"McEventInfo" @@ -208,6 +207,7 @@ SimplePoolFile1... DEBUG ---->Class:DataHeader_p5 SimplePoolFile1... DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile1.root and cont: POOLContainer(DataHeader) AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile1.root and cont: POOLContainerForm(DataHeaderForm) +ClassIDSvc INFO getRegistryEntries: read 80 CLIDRegistry entries for module ALL ReWriteData DEBUG in execute() ReWriteData INFO Hit x = 1.2345 y = 97.655 z = 226.672 detector = DummyHitDetector ReWriteData INFO Hit x = 4.4445 y = 91.9761 z = 94.7318 detector = DummyHitDetector @@ -255,7 +255,6 @@ SimplePoolFile3... DEBUG --->Adding Assoc :????/##Params [200] (2 , ffffffff) SimplePoolFile3... DEBUG ---->ClassID:???? ##Params DEBUG No objects passing selection criteria... Container has 0 Entries in total. AthenaPoolCnvSvc DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile3.root and cont: TTree=POOLContainerForm(DataHeaderForm) -ClassIDSvc INFO getRegistryEntries: read 80 CLIDRegistry entries for module ALL Stream2 DEBUG addItemObjects(2101,"*") called Stream2 DEBUG Key:* Stream2 DEBUG Added object 2101,"McEventInfo" @@ -1242,7 +1241,7 @@ Stream2 DEBUG Collected objects: Stream2 DEBUG Object/count: EventInfo_McEventInfo, 20 Stream2 DEBUG Object/count: ExampleTrackContainer_MyTracks, 20 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 20 events processed so far <<<=== -Stream1 INFO AthenaOutputStream Stream1 ::stop() +Stream1 DEBUG handle() incident type: MetaDataStop Stream1 DEBUG addItemObjects(167728019,"Stream1") called Stream1 DEBUG Key:Stream1 Stream1 DEBUG Added object 167728019,"Stream1" @@ -1276,7 +1275,8 @@ SimplePoolFile1... DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] SimplePoolFile1... DEBUG ---->ClassID:???? ClassIDSvc INFO getRegistryEntries: read 7 CLIDRegistry entries for module ALL Stream1 INFO Records written: 21 -Stream2 INFO AthenaOutputStream Stream2 ::stop() +Stream1 DEBUG Leaving handle +Stream2 DEBUG handle() incident type: MetaDataStop Stream2 DEBUG addItemObjects(167728019,"Stream2") called Stream2 DEBUG Key:Stream2 Stream2 DEBUG Added object 167728019,"Stream2" @@ -1307,6 +1307,7 @@ MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_ SimplePoolFile3... DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] (9 , ffffffff) SimplePoolFile3... DEBUG ---->ClassID:???? Stream2 INFO Records written: 21 +Stream2 DEBUG Leaving handle Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] ???? Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] ???? @@ -1331,10 +1332,10 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** commitOutput INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 42 -cRep_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.323(+- 2.52)/ 0/ 20 [ms] #=124 -cRepR_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max= 0.12(+- 1.09)/ 0/ 10 [ms] #=166 -fRep_ALL INFO Time User : Tot= 50 [ms] Ave/Min/Max=0.403(+- 2.34)/ 0/ 20 [ms] #=124 -ChronoStatSvc INFO Time User : Tot= 0.7 [s] #= 1 +cRepR_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.181(+- 1.33)/ 0/ 10 [ms] #=166 +fRep_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.242(+- 1.54)/ 0/ 10 [ms] #=124 +cRep_ALL INFO Time User : Tot= 50 [ms] Ave/Min/Max=0.403(+- 2.66)/ 0/ 20 [ms] #=124 +ChronoStatSvc INFO Time User : Tot= 0.78 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref index 132c0ec3050579e4c75a21860bfa4f28efd6c802..8c82082b20847a228ea244eac65f953b6928ca8c 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref @@ -1,19 +1,19 @@ -Mon Oct 22 10:35:23 CDT 2018 +Fri Oct 19 21:07:10 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_CopyJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5377 configurables from 18 genConfDb files +Py:ConfigurableDb INFO Read module info for 5521 configurables from 57 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Mon Oct 22 10:35:33 2018 + running on lxplus060.cern.ch on Fri Oct 19 21:07:26 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -40,16 +40,15 @@ PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:Catalog1.xml) [ok] PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-19T2309/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-18T2340/Athena/22.0.1/InstallArea/x86_64-slc6-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus060.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -638,7 +637,7 @@ EventSelector INFO Disconnecting input sourceID: ???? Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] AthenaEventLoopMgr INFO No more events in event selection -Stream1 INFO AthenaOutputStream Stream1 ::stop() +Stream1 DEBUG handle() incident type: MetaDataStop Stream1 DEBUG addItemObjects(167728019,"Stream1") called Stream1 DEBUG Key:Stream1 Stream1 DEBUG Added object 167728019,"Stream1" @@ -671,6 +670,7 @@ MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_ SimplePoolRepli... DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] (9 , ffffffff) SimplePoolRepli... DEBUG ---->ClassID:???? Stream1 INFO Records written: 21 +Stream1 DEBUG Leaving handle Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] ApplicationMgr INFO Application Manager Stopped successfully @@ -687,11 +687,11 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO **************************************************************************************************** commitOutput INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 21 cRep_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 62 -cObjR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.154(+- 1.23)/ 0/ 10 [ms] #= 65 -cRepR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max= 0.12(+- 1.09)/ 0/ 10 [ms] #= 83 -fRep_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.323(+- 1.77)/ 0/ 10 [ms] #= 62 -cObj_ALL INFO Time User : Tot= 50 [ms] Ave/Min/Max=0.806(+- 3.72)/ 0/ 20 [ms] #= 62 -ChronoStatSvc INFO Time User : Tot= 0.75 [s] #= 1 +cObjR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 65 +fRep_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.484(+- 2.15)/ 0/ 10 [ms] #= 62 +cRepR_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.361(+- 1.87)/ 0/ 10 [ms] #= 83 +cObj_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.645(+- 3.04)/ 0/ 20 [ms] #= 62 +ChronoStatSvc INFO Time User : Tot= 1.01 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref index 7c56942fd9ae768de6bdb8d2d71ba06e1d6ce3bb..b36732510ffae6b92c112f0ff06eb044df308e05 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref @@ -1,19 +1,19 @@ -Thu Sep 6 17:04:42 CDT 2018 +Wed Jul 18 18:56:51 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_FilterJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5518 configurables from 19 genConfDb files +Py:ConfigurableDb INFO Read module info for 5511 configurables from 52 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Thu Sep 6 17:04:50 2018 + Welcome to ApplicationMgr (GaudiCoreSvc v30r2) + running on lxplus052.cern.ch on Wed Jul 18 18:56:58 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -21,7 +21,7 @@ ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to leve StatusCodeSvc INFO initialize AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 2918 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 2428 CLIDRegistry entries for module ALL CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 ClassIDSvc INFO getRegistryEntries: read 916 CLIDRegistry entries for module ALL @@ -35,9 +35,9 @@ PoolSvc DEBUG Property update for OutputLevel : new value = 2 PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-09-04T2107/Athena/22.0.1/InstallArea/x86_64-centos7-gcc62-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-07-17T2058/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus052.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams @@ -45,15 +45,11 @@ PoolSvc DEBUG POOL ReadCatalog is file:Catalog.xml PoolSvc INFO POOL WriteCatalog is file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully EventSelector.Q... DEBUG Property update for OutputLevel : new value = 2 -ClassIDSvc INFO getRegistryEntries: read 2218 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 1969 CLIDRegistry entries for module ALL EventSelector.Q... INFO in initialize() EventSelector INFO reinitialization... EventSelector INFO EventSelection with query EventNumber > 5 @@ -125,7 +121,6 @@ MetaDataHdr(Dat... DEBUG Opening MetaDataHdr(Dat... DEBUG attributes# = 1 MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -ClassIDSvc INFO getRegistryEntries: read 74 CLIDRegistry entries for module ALL EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) MetaDataHdrForm... DEBUG Opening @@ -133,12 +128,6 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 AthenaPoolAddre... DEBUG Service base class initialized successfully ReadData DEBUG input handles: 2 @@ -148,7 +137,7 @@ ReadData DEBUG Data Deps for ReadData + INPUT ( 'ExampleTrackContainer' , 'StoreGateSvc+MyTracks' ) Stream1 DEBUG Property update for OutputLevel : new value = 2 Stream1.Stream1... DEBUG Property update for OutputLevel : new value = 2 -ClassIDSvc INFO getRegistryEntries: read 2 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 76 CLIDRegistry entries for module ALL Stream1 DEBUG In initialize Stream1 DEBUG Found IDecisionSvc. DecisionSvc INFO Inserting stream: Stream1 with no Algs @@ -176,7 +165,7 @@ Stream1 DEBUG Data Deps for Stream1 WriteTag INFO in initialize() RegStream1 DEBUG Property update for OutputLevel : new value = 2 RegStream1.RegS... DEBUG Property update for OutputLevel : new value = 2 -ClassIDSvc INFO getRegistryEntries: read 337 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 336 CLIDRegistry entries for module ALL RegStream1 DEBUG In initialize RegStream1 DEBUG Found IDecisionSvc. DecisionSvc INFO Inserting stream: RegStream1 with no Algs @@ -185,6 +174,8 @@ RegStream1 DEBUG In initialize RegStream1 DEBUG Found 'StoreName':StoreGateSvc store. RegStream1.TagTool DEBUG Property update for OutputLevel : new value = 2 RegStream1 DEBUG Tool initialized +RegStream1 DEBUG Retrieved IncidentSvc +RegStream1 DEBUG Added MetaDataStop listener RegStream1 DEBUG Not class requested by Tool, skipping (40774349,"RunEventTag") RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"*") RegStream1 DEBUG End initialize @@ -200,9 +191,7 @@ ApplicationMgr INFO Application Manager Started successfully MetaDataSvc DEBUG handle() BeginInputFile for FID:???? MetaDataSvc DEBUG initInputMetaDataStore: file name FID:???? MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for FID:???? -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 3 EventSelector DEBUG record AthenaAttribute, name = Stream1_ref = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006]. @@ -777,8 +766,7 @@ Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] MetaDataSvc DEBUG handle() LastInputFile for end AthenaEventLoopMgr INFO No more events in event selection -Stream1 INFO AthenaOutputStream Stream1 ::stop() -MetaDataSvc DEBUG calling metaDataStop for MetaDataSvc.IOVDbMetaDataTool +Stream1 DEBUG handle() incident type: MetaDataStop Stream1 DEBUG addItemObjects(167728019,"Stream1") called Stream1 DEBUG Key:Stream1 Stream1 DEBUG Added object 167728019,"Stream1" @@ -811,7 +799,10 @@ MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_ SimplePoolFile5... DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] (9 , ffffffff) SimplePoolFile5... DEBUG ---->ClassID:???? Stream1 INFO Records written: 11 +Stream1 DEBUG Leaving handle +RegStream1 DEBUG handle() incident type: MetaDataStop RegStream1.TagTool INFO Collection Events output: 10 +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] ApplicationMgr INFO Application Manager Stopped successfully @@ -834,8 +825,8 @@ cRep_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0 fRep_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 32 cRepR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 43 cObjR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.286(+- 1.67)/ 0/ 10 [ms] #= 35 -cObj_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.606(+- 2.39)/ 0/ 10 [ms] #= 33 -ChronoStatSvc INFO Time User : Tot= 0.85 [s] #= 1 +cObj_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.909(+- 2.87)/ 0/ 10 [ms] #= 33 +ChronoStatSvc INFO Time User : Tot= 0.83 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref index fc6911d49bde528a41e6199903aaf1c9d5a13397..279d5f6badb43665b48949ca6879df04da93a38a 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref @@ -1,19 +1,19 @@ -Mon Oct 22 10:37:30 CDT 2018 +Fri Oct 19 21:10:30 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_RCondJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5377 configurables from 18 genConfDb files +Py:ConfigurableDb INFO Read module info for 5521 configurables from 57 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Mon Oct 22 10:37:40 2018 + running on lxplus060.cern.ch on Fri Oct 19 21:10:46 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -40,9 +40,9 @@ PoolSvc DEBUG Property update for OutputLevel : new value = 2 PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-19T2309/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-18T2340/Athena/22.0.1/InstallArea/x86_64-slc6-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus060.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams @@ -51,10 +51,6 @@ PoolSvc DEBUG POOL ReadCatalog is file:Catalog1.xml PoolSvc INFO POOL WriteCatalog is file:Catalog2.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -129,12 +125,6 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 AthenaPoolAddre... DEBUG Service base class initialized successfully CondProxyProvider DEBUG Property update for OutputLevel : new value = 2 @@ -254,9 +244,7 @@ MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree ClassIDSvc INFO getRegistryEntries: read 2 CLIDRegistry entries for module ALL MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 0 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. @@ -963,6 +951,7 @@ MetaDataSvc DEBUG handle() EndInputFile for FID:???? EventSelector INFO Disconnecting input sourceID: ???? MetaDataSvc DEBUG handle() LastInputFile for end AthenaEventLoopMgr INFO No more events in event selection +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? ApplicationMgr INFO Application Manager Stopped successfully IncidentProcAlg1 INFO Finalize @@ -976,9 +965,9 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -cObjR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.204(+- 1.41)/ 0/ 10 [ms] #= 49 +cObjR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 49 cObj_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.652(+- 2.47)/ 0/ 10 [ms] #= 46 -ChronoStatSvc INFO Time User : Tot= 0.67 [s] #= 1 +ChronoStatSvc INFO Time User : Tot= 0.98 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref index 5c3a3102a89c9b6994cf41e1c19a2eb9c198dd77..604d8576a2c4bc692967202e8acb8af634db8035 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref @@ -1,19 +1,19 @@ -Thu Sep 6 17:04:54 CDT 2018 +Wed Jul 18 18:57:01 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_RFilterJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5518 configurables from 19 genConfDb files +Py:ConfigurableDb INFO Read module info for 5511 configurables from 52 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Thu Sep 6 17:05:05 2018 + Welcome to ApplicationMgr (GaudiCoreSvc v30r2) + running on lxplus052.cern.ch on Wed Jul 18 18:57:09 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -21,7 +21,7 @@ ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to leve StatusCodeSvc INFO initialize AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 2918 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 2428 CLIDRegistry entries for module ALL CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 ClassIDSvc INFO getRegistryEntries: read 916 CLIDRegistry entries for module ALL @@ -35,9 +35,9 @@ PoolSvc DEBUG Property update for OutputLevel : new value = 2 PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-09-04T2107/Athena/22.0.1/InstallArea/x86_64-centos7-gcc62-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-07-17T2058/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus052.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams @@ -46,10 +46,6 @@ PoolSvc DEBUG POOL ReadCatalog is file:Catalog1.xml PoolSvc INFO POOL WriteCatalog is file:Catalog2.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -71,6 +67,7 @@ EventSelector DEBUG Try item: "SimplePoolCollection5.root" from the collec ApplicationMgr INFO Application Manager Started successfully EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 2 +ClassIDSvc INFO getRegistryEntries: read 1636 CLIDRegistry entries for module ALL EventSelector DEBUG record AthenaAttribute, name = Stream1_derived_ref = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. EventSelector DEBUG record AthenaAttribute, name = Stream1_ref = [DB=????][CNT=][CLID=????][TECH=00000202][OID=00000006-0000000A]. EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. @@ -137,13 +134,14 @@ AthenaPoolAddre... DEBUG The current Event contains: 3 objects AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks AlgResourcePool INFO TopAlg list empty. Recovering the one of Application Manager +ClassIDSvc INFO getRegistryEntries: read 78 CLIDRegistry entries for module ALL SimplePoolFile5... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo) CollectionTree(... DEBUG Opening CollectionTree(... DEBUG attributes# = 1 CollectionTree(... DEBUG Branch container 'EventInfo_p4_McEventInfo' CollectionTree(... DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree AthenaPoolConve... INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector -ClassIDSvc INFO getRegistryEntries: read 1978 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 15 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start of run 1 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #10, run #1 0 events processed so far <<<=== ReadData DEBUG in execute() @@ -158,6 +156,7 @@ CollectionTree(... DEBUG Opened container CollectionTree(ExampleTrackContainer_ ReadData INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detector = Track made in: DummyHitDetector ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits +ClassIDSvc INFO getRegistryEntries: read 10 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 1 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 2 @@ -324,6 +323,7 @@ AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 10 events Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] AthenaEventLoopMgr INFO No more events in event selection +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool ApplicationMgr INFO Application Manager Stopped successfully IncidentProcAlg1 INFO Finalize ReadData INFO in finalize() @@ -333,9 +333,9 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -cObjR_ALL INFO Time User : Tot= 100 [ms] Ave/Min/Max= 3.23(+- 15.9)/ 0/ 90 [ms] #= 31 -cObj_ALL INFO Time User : Tot= 110 [ms] Ave/Min/Max= 3.67(+- 16.2)/ 0/ 90 [ms] #= 30 -ChronoStatSvc INFO Time User : Tot= 0.75 [s] #= 1 +cObjR_ALL INFO Time User : Tot= 80 [ms] Ave/Min/Max= 2.58(+- 14.1)/ 0/ 80 [ms] #= 31 +cObj_ALL INFO Time User : Tot= 100 [ms] Ave/Min/Max= 3.33(+- 16.2)/ 0/ 90 [ms] #= 30 +ChronoStatSvc INFO Time User : Tot= 0.74 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RMeta.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RMeta.ref index 96c3bfd9bfa39a1897ec7e647683c7fbbe31533f..6edaf6b1c7b890ddcfbb7aa67e667079e542b184 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RMeta.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RMeta.ref @@ -1,19 +1,19 @@ -Mon Oct 22 10:37:55 CDT 2018 +Fri Oct 19 21:01:34 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_RMetaJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5377 configurables from 18 genConfDb files +Py:ConfigurableDb INFO Read module info for 5521 configurables from 57 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Mon Oct 22 10:38:08 2018 + running on lxplus060.cern.ch on Fri Oct 19 21:01:54 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -37,9 +37,9 @@ PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:Catalog2.xml) [ok PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok] PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-19T2309/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-18T2340/Athena/22.0.1/InstallArea/x86_64-slc6-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus060.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams @@ -47,12 +47,7 @@ PoolSvc DEBUG POOL ReadCatalog is xmlcatalog_file:Catalog2.xml PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc.Ath... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.Ath... INFO in initialize() -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool','AthPoolEx::ReadMeta']) +ToolSvc.AthPool... INFO in initialize() EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -129,12 +124,6 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 AthenaPoolAddre... DEBUG Service base class initialized successfully ReadData DEBUG input handles: 2 @@ -219,19 +208,14 @@ MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree ClassIDSvc INFO getRegistryEntries: read 2 CLIDRegistry entries for module ALL MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.AthPoolEx::ReadMeta -MetaDataSvc.Ath... DEBUG saw BeginInputFile incident. +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.AthPoolEx::ReadMeta SimplePoolFile5... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaData(ExampleHitContainer_p1/PedestalWriteData) MetaData(Exampl... DEBUG Opening MetaData(Exampl... DEBUG attributes# = 1 MetaData(Exampl... DEBUG Branch container 'ExampleHitContainer_p1_PedestalWriteData' MetaData(Exampl... DEBUG Opened container MetaData(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree -MetaDataSvc.Ath... INFO Pedestal x = 193136 y = -5580.01 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o> -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile5.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData -MetaDataSvc.Ath... DEBUG handle() BeginInputFile -MetaDataSvc.Ath... DEBUG handle() BeginInputFile for SimplePoolFile5.root +ToolSvc.AthPool... INFO Pedestal x = 193136 y = -5580.01 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o> EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 0 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. @@ -881,19 +865,21 @@ MetaDataSvc DEBUG handle() EndInputFile for FID:???? EventSelector INFO Disconnecting input sourceID: ???? MetaDataSvc DEBUG handle() LastInputFile for end AthenaEventLoopMgr INFO No more events in event selection +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.AthPoolEx::ReadMeta ApplicationMgr INFO Application Manager Stopped successfully IncidentProcAlg1 INFO Finalize ReadData INFO in finalize() IncidentProcAlg2 INFO Finalize AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -MetaDataSvc.Ath... INFO in finalize() +ToolSvc.AthPool... INFO in finalize() *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -cObjR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 47 -cObj_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.667(+- 2.49)/ 0/ 10 [ms] #= 45 -ChronoStatSvc INFO Time User : Tot= 0.73 [s] #= 1 +cObjR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.213(+- 1.44)/ 0/ 10 [ms] #= 47 +cObj_ALL INFO Time User : Tot= 50 [ms] Ave/Min/Max= 1.11(+- 4.33)/ 0/ 20 [ms] #= 45 +ChronoStatSvc INFO Time User : Tot= 0.98 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref index 202ff7c450698b5fe890d758da3c0894f68eea05..38797111b19cc7567c6f4d6788878817370be858 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref @@ -1,19 +1,19 @@ -Mon Oct 22 10:34:56 CDT 2018 +Fri Oct 19 20:56:49 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_RWJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5377 configurables from 18 genConfDb files +Py:ConfigurableDb INFO Read module info for 5521 configurables from 57 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Mon Oct 22 10:35:06 2018 + running on lxplus060.cern.ch on Fri Oct 19 20:57:03 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -36,9 +36,9 @@ PoolSvc DEBUG Property update for OutputLevel : new value = 2 PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-19T2309/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-18T2340/Athena/22.0.1/InstallArea/x86_64-slc6-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus060.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams @@ -46,10 +46,6 @@ PoolSvc DEBUG POOL ReadCatalog is file:Catalog.xml PoolSvc INFO POOL WriteCatalog is file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -130,12 +126,6 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 AthenaPoolAddre... DEBUG Service base class initialized successfully ReadData DEBUG input handles: 2 @@ -190,6 +180,8 @@ RegStream1 DEBUG In initialize RegStream1 DEBUG Found 'StoreName':StoreGateSvc store. RegStream1.TagTool DEBUG Property update for OutputLevel : new value = 2 RegStream1 DEBUG Tool initialized +RegStream1 DEBUG Retrieved IncidentSvc +RegStream1 DEBUG Added MetaDataStop listener RegStream1 DEBUG Not class requested by Tool, skipping (40774349,"MagicTag") RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") RegStream1 DEBUG End initialize @@ -210,9 +202,7 @@ AthenaPoolCnvSvc DEBUG setAttribute TREE_CACHE to -1 for db: SimplePoolFile1. MetaDataSvc DEBUG handle() BeginInputFile for SimplePoolFile1.root MetaDataSvc DEBUG initInputMetaDataStore: file name SimplePoolFile1.root MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 3 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. @@ -1936,8 +1926,7 @@ Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] MetaDataSvc DEBUG handle() LastInputFile for end AthenaEventLoopMgr INFO No more events in event selection -Stream1 INFO AthenaOutputStream Stream1 ::stop() -MetaDataSvc DEBUG calling metaDataStop for MetaDataSvc.IOVDbMetaDataTool +Stream1 DEBUG handle() incident type: MetaDataStop Stream1 DEBUG addItemObjects(167728019,"Stream1") called Stream1 DEBUG Key:Stream1 Stream1 DEBUG Added object 167728019,"Stream1" @@ -1970,7 +1959,10 @@ MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_ SimplePoolFile3... DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] (d , ffffffff) SimplePoolFile3... DEBUG ---->ClassID:???? Stream1 INFO Records written: 21 +Stream1 DEBUG Leaving handle +RegStream1 DEBUG handle() incident type: MetaDataStop RegStream1.TagTool INFO Collection Events output: 20 +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] ApplicationMgr INFO Application Manager Stopped successfully @@ -1992,11 +1984,11 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO **************************************************************************************************** commitOutput INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 21 cRep_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 62 -cObjR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 66 -fRep_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.323(+- 2.52)/ 0/ 20 [ms] #= 62 -cRepR_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.123(+- 1.56)/ 0/ 20 [ms] #=163 +cObjR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.152(+- 1.22)/ 0/ 10 [ms] #= 66 +fRep_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.323(+- 1.77)/ 0/ 10 [ms] #= 62 +cRepR_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.123(+- 1.1)/ 0/ 10 [ms] #=163 cObj_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.635(+- 2.44)/ 0/ 10 [ms] #= 63 -ChronoStatSvc INFO Time User : Tot= 0.83 [s] #= 1 +ChronoStatSvc INFO Time User : Tot= 0.96 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgain.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgain.ref index 06f5e43618f395aee5e259e0e4b33e0190c7ff02..fc3ee51601d964b6883fcf9351605c6836819351 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgain.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgain.ref @@ -1,19 +1,19 @@ -Mon Oct 22 10:35:37 CDT 2018 +Fri Oct 19 21:07:30 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_ReWriteAgainJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5377 configurables from 18 genConfDb files +Py:ConfigurableDb INFO Read module info for 5521 configurables from 57 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Mon Oct 22 10:35:49 2018 + running on lxplus060.cern.ch on Fri Oct 19 21:07:46 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -36,9 +36,9 @@ PoolSvc DEBUG Property update for OutputLevel : new value = 2 PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-19T2309/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-18T2340/Athena/22.0.1/InstallArea/x86_64-slc6-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus060.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams @@ -46,10 +46,6 @@ PoolSvc DEBUG POOL ReadCatalog is file:Catalog.xml PoolSvc INFO POOL WriteCatalog is file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -124,12 +120,6 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 AthenaPoolAddre... DEBUG Service base class initialized successfully ReadData DEBUG input handles: 2 @@ -184,6 +174,8 @@ RegStream1 DEBUG In initialize RegStream1 DEBUG Found 'StoreName':StoreGateSvc store. RegStream1.TagTool DEBUG Property update for OutputLevel : new value = 2 RegStream1 DEBUG Tool initialized +RegStream1 DEBUG Retrieved IncidentSvc +RegStream1 DEBUG Added MetaDataStop listener RegStream1 DEBUG Not class requested by Tool, skipping (40774349,"MagicTag") RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") RegStream1 DEBUG End initialize @@ -266,9 +258,7 @@ MetaDataHdr(Dat... DEBUG attributes# = 1 MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolReplica1.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 0 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. @@ -1991,8 +1981,7 @@ MetaDataSvc DEBUG handle() EndInputFile for FID:???? EventSelector INFO Disconnecting input sourceID: ???? MetaDataSvc DEBUG handle() LastInputFile for end AthenaEventLoopMgr INFO No more events in event selection -Stream1 INFO AthenaOutputStream Stream1 ::stop() -MetaDataSvc DEBUG calling metaDataStop for MetaDataSvc.IOVDbMetaDataTool +Stream1 DEBUG handle() incident type: MetaDataStop Stream1 DEBUG addItemObjects(167728019,"Stream1") called Stream1 DEBUG Key:Stream1 Stream1 DEBUG Added object 167728019,"Stream1" @@ -2025,8 +2014,11 @@ MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_ SimplePoolFile3... DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] (d , ffffffff) SimplePoolFile3... DEBUG ---->ClassID:???? Stream1 INFO Records written: 21 +Stream1 DEBUG Leaving handle +RegStream1 DEBUG handle() incident type: MetaDataStop RegStream1.TagTool INFO Collection Events output: 20 RegStream1.TagTool INFO Unable to register collection: PFN 'RootCollection||PFN:SimplePoolCollection3.root' already registered ( POOL : "registerPFN" from "FileCatalog" ) +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] ApplicationMgr INFO Application Manager Stopped successfully @@ -2046,13 +2038,13 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -cRep_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 62 commitOutput INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 21 +cRep_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 62 cObjR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.154(+- 1.23)/ 0/ 10 [ms] #= 65 -cObj_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.317(+- 1.75)/ 0/ 10 [ms] #= 63 -cRepR_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.123(+- 1.1)/ 0/ 10 [ms] #=163 -fRep_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.645(+- 2.46)/ 0/ 10 [ms] #= 62 -ChronoStatSvc INFO Time User : Tot= 0.86 [s] #= 1 +cRepR_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.123(+- 1.56)/ 0/ 20 [ms] #=163 +fRep_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.645(+- 3.04)/ 0/ 20 [ms] #= 62 +cObj_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.635(+- 3.02)/ 0/ 20 [ms] #= 63 +ChronoStatSvc INFO Time User : Tot= 1.12 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteNext.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteNext.ref index db49a8989363aa30524ebb8d0a2ad55be716f298..2e5e28b1cd6430d37c18a46788ce3a94d4128bb7 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteNext.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteNext.ref @@ -1,19 +1,19 @@ -Mon Oct 22 10:35:53 CDT 2018 +Fri Oct 19 21:15:56 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_ReWriteNextJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5377 configurables from 18 genConfDb files +Py:ConfigurableDb INFO Read module info for 5521 configurables from 57 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Mon Oct 22 10:36:03 2018 + running on lxplus060.cern.ch on Fri Oct 19 21:16:21 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -36,9 +36,9 @@ PoolSvc DEBUG Property update for OutputLevel : new value = 2 PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-19T2309/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-18T2340/Athena/22.0.1/InstallArea/x86_64-slc6-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus060.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams @@ -46,10 +46,6 @@ PoolSvc DEBUG POOL ReadCatalog is file:Catalog.xml PoolSvc INFO POOL WriteCatalog is file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -130,12 +126,6 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 AthenaPoolAddre... DEBUG Service base class initialized successfully ReadData DEBUG input handles: 2 @@ -190,6 +180,8 @@ RegStream1 DEBUG In initialize RegStream1 DEBUG Found 'StoreName':StoreGateSvc store. RegStream1.TagTool DEBUG Property update for OutputLevel : new value = 2 RegStream1 DEBUG Tool initialized +RegStream1 DEBUG Retrieved IncidentSvc +RegStream1 DEBUG Added MetaDataStop listener RegStream1 DEBUG Not class requested by Tool, skipping (40774349,"MagicTag") RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") RegStream1 DEBUG End initialize @@ -210,9 +202,7 @@ AthenaPoolCnvSvc DEBUG setAttribute TREE_CACHE to -1 for db: SimplePoolFile3. MetaDataSvc DEBUG handle() BeginInputFile for SimplePoolFile3.root MetaDataSvc DEBUG initInputMetaDataStore: file name SimplePoolFile3.root MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile3.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 3 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. @@ -1334,8 +1324,7 @@ Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] MetaDataSvc DEBUG handle() LastInputFile for end AthenaEventLoopMgr INFO No more events in event selection -Stream1 INFO AthenaOutputStream Stream1 ::stop() -MetaDataSvc DEBUG calling metaDataStop for MetaDataSvc.IOVDbMetaDataTool +Stream1 DEBUG handle() incident type: MetaDataStop Stream1 DEBUG addItemObjects(167728019,"Stream1") called Stream1 DEBUG Key:Stream1 Stream1 DEBUG Added object 167728019,"Stream1" @@ -1368,7 +1357,10 @@ MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_ SimplePoolFile4... DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] (d , ffffffff) SimplePoolFile4... DEBUG ---->ClassID:???? Stream1 INFO Records written: 21 +Stream1 DEBUG Leaving handle +RegStream1 DEBUG handle() incident type: MetaDataStop RegStream1.TagTool INFO Collection Events output: 20 +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] ApplicationMgr INFO Application Manager Stopped successfully @@ -1388,13 +1380,13 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -commitOutput INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 21 cRep_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 62 -cObjR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 65 +commitOutput INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 21 +cObjR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.154(+- 1.23)/ 0/ 10 [ms] #= 65 cRepR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.0613(+-0.781)/ 0/ 10 [ms] #=163 fRep_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.323(+- 1.77)/ 0/ 10 [ms] #= 62 -cObj_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.476(+- 2.13)/ 0/ 10 [ms] #= 63 -ChronoStatSvc INFO Time User : Tot= 0.84 [s] #= 1 +cObj_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.635(+- 3.51)/ 0/ 20 [ms] #= 63 +ChronoStatSvc INFO Time User : Tot= 1.16 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Read.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Read.ref index a61aa3b607ee4c53185726760fd299c4255a73b7..f89f0d6e8b09228eb23d23d1c5c7a7e4c3780253 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Read.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Read.ref @@ -1,19 +1,19 @@ -Mon Oct 22 10:35:10 CDT 2018 +Fri Oct 19 20:57:10 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5377 configurables from 18 genConfDb files +Py:ConfigurableDb INFO Read module info for 5521 configurables from 57 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Mon Oct 22 10:35:20 2018 + running on lxplus060.cern.ch on Fri Oct 19 20:57:29 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -35,19 +35,15 @@ PoolSvc DEBUG Property update for OutputLevel : new value = 2 PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-19T2309/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-18T2340/Athena/22.0.1/InstallArea/x86_64-slc6-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus060.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc INFO POOL WriteCatalog is file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -173,12 +169,6 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 AthenaPoolAddre... DEBUG Service base class initialized successfully ReadData DEBUG input handles: 2 @@ -243,9 +233,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool MetaDataSvc DEBUG handle() EndInputFile for eventless EmptyPoolFile.root Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? EventSelector DEBUG Try item: "SimplePoolFile1.root" from the collection list. @@ -264,10 +252,7 @@ PoolSvc INFO Database (SimplePoolFile1.root) attribute [TREE_CACHE_ MetaDataSvc DEBUG handle() BeginInputFile for SimplePoolFile1.root MetaDataSvc DEBUG initInputMetaDataStore: file name SimplePoolFile1.root MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector INFO skipping event 1 EventSelector INFO skipping event 2 EventSelector INFO skipping event 3 @@ -336,7 +321,7 @@ ReadData INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du ReadData INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector ReadData INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector ReadData INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20107 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20092 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 1 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -369,7 +354,7 @@ ReadData INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du ReadData INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector ReadData INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector ReadData INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20107 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20092 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 2 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -402,7 +387,7 @@ ReadData INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du ReadData INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector ReadData INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector ReadData INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20107 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20092 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 3 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -435,7 +420,7 @@ ReadData INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du ReadData INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector ReadData INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector ReadData INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20107 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20092 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 4 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -468,7 +453,7 @@ ReadData INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du ReadData INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector ReadData INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector ReadData INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20107 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20092 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 5 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -501,7 +486,7 @@ ReadData INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du ReadData INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector ReadData INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector ReadData INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20107 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20092 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 6 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -534,7 +519,7 @@ ReadData INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du ReadData INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector ReadData INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector ReadData INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20107 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20092 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 7 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -567,7 +552,7 @@ ReadData INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du ReadData INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector ReadData INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector ReadData INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20107 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20092 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 8 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -600,7 +585,7 @@ ReadData INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du ReadData INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector ReadData INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector ReadData INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20107 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20092 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 9 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -633,7 +618,7 @@ ReadData INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du ReadData INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector ReadData INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector ReadData INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20107 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20092 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 10 events processed so far <<<=== MetaDataSvc DEBUG handle() EndInputFile for FID:???? @@ -696,10 +681,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool MetaDataSvc DEBUG handle() EndInputFile for eventless EmptyPoolFile.root Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] @@ -788,10 +770,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile2.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile2.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 3 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]. @@ -842,7 +821,7 @@ ReadData INFO EventInfo event: 0 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 11 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -870,7 +849,7 @@ ReadData INFO EventInfo event: 1 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 12 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -898,7 +877,7 @@ ReadData INFO EventInfo event: 2 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 13 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -926,7 +905,7 @@ ReadData INFO EventInfo event: 3 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 14 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -954,7 +933,7 @@ ReadData INFO EventInfo event: 4 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 15 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -982,7 +961,7 @@ ReadData INFO EventInfo event: 5 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 16 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1010,7 +989,7 @@ ReadData INFO EventInfo event: 6 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 17 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1038,7 +1017,7 @@ ReadData INFO EventInfo event: 7 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 18 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1066,7 +1045,7 @@ ReadData INFO EventInfo event: 8 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 19 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1094,7 +1073,7 @@ ReadData INFO EventInfo event: 9 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 20 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1122,7 +1101,7 @@ ReadData INFO EventInfo event: 10 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 21 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1150,7 +1129,7 @@ ReadData INFO EventInfo event: 11 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 22 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1178,7 +1157,7 @@ ReadData INFO EventInfo event: 12 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 23 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1206,7 +1185,7 @@ ReadData INFO EventInfo event: 13 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 24 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1234,7 +1213,7 @@ ReadData INFO EventInfo event: 14 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 25 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1262,7 +1241,7 @@ ReadData INFO EventInfo event: 15 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 26 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1290,7 +1269,7 @@ ReadData INFO EventInfo event: 16 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 27 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1318,7 +1297,7 @@ ReadData INFO EventInfo event: 17 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 28 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1346,7 +1325,7 @@ ReadData INFO EventInfo event: 18 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 29 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1374,7 +1353,7 @@ ReadData INFO EventInfo event: 19 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18811 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 30 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1403,7 +1382,7 @@ ReadData INFO EventInfo event: 20 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #2 31 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1431,7 +1410,7 @@ ReadData INFO EventInfo event: 21 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #21, run #2 32 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1459,7 +1438,7 @@ ReadData INFO EventInfo event: 22 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #22, run #2 33 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1487,7 +1466,7 @@ ReadData INFO EventInfo event: 23 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #23, run #2 34 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1515,7 +1494,7 @@ ReadData INFO EventInfo event: 24 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #24, run #2 35 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1543,7 +1522,7 @@ ReadData INFO EventInfo event: 25 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #25, run #2 36 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1571,7 +1550,7 @@ ReadData INFO EventInfo event: 26 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #26, run #2 37 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1599,7 +1578,7 @@ ReadData INFO EventInfo event: 27 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #27, run #2 38 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1627,7 +1606,7 @@ ReadData INFO EventInfo event: 28 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #28, run #2 39 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1655,7 +1634,7 @@ ReadData INFO EventInfo event: 29 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #29, run #2 40 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1683,7 +1662,7 @@ ReadData INFO EventInfo event: 30 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #30, run #2 41 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1711,7 +1690,7 @@ ReadData INFO EventInfo event: 31 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #31, run #2 42 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1739,7 +1718,7 @@ ReadData INFO EventInfo event: 32 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #32, run #2 43 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1767,7 +1746,7 @@ ReadData INFO EventInfo event: 33 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #33, run #2 44 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1795,7 +1774,7 @@ ReadData INFO EventInfo event: 34 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #34, run #2 45 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1823,7 +1802,7 @@ ReadData INFO EventInfo event: 35 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #35, run #2 46 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1851,7 +1830,7 @@ ReadData INFO EventInfo event: 36 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #36, run #2 47 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1879,7 +1858,7 @@ ReadData INFO EventInfo event: 37 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #37, run #2 48 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1907,7 +1886,7 @@ ReadData INFO EventInfo event: 38 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #38, run #2 49 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1935,7 +1914,7 @@ ReadData INFO EventInfo event: 39 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19198 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #39, run #2 50 events processed so far <<<=== MetaDataSvc DEBUG handle() EndInputFile for FID:???? @@ -2029,10 +2008,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile3.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile3.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 3 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. @@ -2082,7 +2058,7 @@ ReadData INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 51 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2108,7 +2084,7 @@ ReadData INFO Track pt = 137.584 eta = -39.525 phi = 17.2679 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 52 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2134,7 +2110,7 @@ ReadData INFO Track pt = 228.154 eta = -6.2704 phi = 31.9197 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 53 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2160,7 +2136,7 @@ ReadData INFO Track pt = 324.306 eta = -15.8941 phi = 46.5715 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 54 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2186,7 +2162,7 @@ ReadData INFO Track pt = 422.255 eta = -13.279 phi = 61.2233 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 55 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2212,7 +2188,7 @@ ReadData INFO Track pt = 520.987 eta = -12.3511 phi = 75.8751 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 56 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2238,7 +2214,7 @@ ReadData INFO Track pt = 620.127 eta = -11.8468 phi = 90.5269 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 57 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2264,7 +2240,7 @@ ReadData INFO Track pt = 719.507 eta = -11.5247 phi = 105.179 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 58 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2290,7 +2266,7 @@ ReadData INFO Track pt = 819.038 eta = -11.2998 phi = 119.831 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 59 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2316,7 +2292,7 @@ ReadData INFO Track pt = 918.671 eta = -11.1334 phi = 134.482 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 60 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2342,7 +2318,7 @@ ReadData INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 61 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2368,7 +2344,7 @@ ReadData INFO Track pt = 1118.13 eta = -10.9031 phi = 163.786 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 62 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2394,7 +2370,7 @@ ReadData INFO Track pt = 1217.93 eta = -10.82 phi = 178.438 detector DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 63 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2420,7 +2396,7 @@ ReadData INFO Track pt = 1317.76 eta = -10.751 phi = 193.09 detector DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 64 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2446,7 +2422,7 @@ ReadData INFO Track pt = 1417.61 eta = -10.6927 phi = 207.741 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 65 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2472,7 +2448,7 @@ ReadData INFO Track pt = 1517.49 eta = -10.6429 phi = 222.393 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 66 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2498,7 +2474,7 @@ ReadData INFO Track pt = 1617.37 eta = -10.5997 phi = 237.045 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 67 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2524,7 +2500,7 @@ ReadData INFO Track pt = 1717.27 eta = -10.562 phi = 251.697 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 68 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2550,7 +2526,7 @@ ReadData INFO Track pt = 1817.19 eta = -10.5288 phi = 266.349 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 69 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2576,7 +2552,7 @@ ReadData INFO Track pt = 1917.11 eta = -10.4993 phi = 281 detector = DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18968 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18965 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 70 events processed so far <<<=== MetaDataSvc DEBUG handle() EndInputFile for FID:???? @@ -2585,6 +2561,7 @@ Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] MetaDataSvc DEBUG handle() LastInputFile for end AthenaEventLoopMgr INFO No more events in event selection +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool ApplicationMgr INFO Application Manager Stopped successfully IncidentProcAlg1 INFO Finalize ReadData INFO in finalize() @@ -2594,9 +2571,9 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -cObjR_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.161(+- 1.26)/ 0/ 10 [ms] #=124 -cObj_ALL INFO Time User : Tot= 60 [ms] Ave/Min/Max=0.526(+- 2.6)/ 0/ 20 [ms] #=114 -ChronoStatSvc INFO Time User : Tot= 0.82 [s] #= 1 +cObjR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.0806(+-0.894)/ 0/ 10 [ms] #=124 +cObj_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.351(+- 2.63)/ 0/ 20 [ms] #=114 +ChronoStatSvc INFO Time User : Tot= 1.05 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadAgain.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadAgain.ref index 90560152bd4951a12ee62ffaea4d27b497261984..1092a16285b4d3d55b8987703a1502e372aa6098 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadAgain.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadAgain.ref @@ -1,19 +1,19 @@ -Mon Oct 22 10:36:32 CDT 2018 +Fri Oct 19 21:17:09 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadAgainJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5377 configurables from 18 genConfDb files +Py:ConfigurableDb INFO Read module info for 5521 configurables from 57 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Mon Oct 22 10:36:42 2018 + running on lxplus060.cern.ch on Fri Oct 19 21:18:12 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -35,19 +35,15 @@ PoolSvc DEBUG Property update for OutputLevel : new value = 2 PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-19T2309/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-18T2340/Athena/22.0.1/InstallArea/x86_64-slc6-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus060.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc INFO POOL WriteCatalog is file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -167,12 +163,6 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 AthenaPoolAddre... DEBUG Service base class initialized successfully ReadData DEBUG input handles: 2 @@ -241,9 +231,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool MetaDataSvc DEBUG handle() EndInputFile for eventless EmptyPoolFile.root Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] @@ -328,10 +316,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolReplica1.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolReplica1.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector INFO skipping event 1 EventSelector INFO skipping event 2 EventSelector INFO skipping event 3 @@ -395,7 +380,7 @@ ReadData INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du ReadData INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector ReadData INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector ReadData INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19642 +PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19648 PoolSvc INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 1 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -428,7 +413,7 @@ ReadData INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du ReadData INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector ReadData INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector ReadData INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19642 +PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19648 PoolSvc INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 2 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -461,7 +446,7 @@ ReadData INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du ReadData INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector ReadData INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector ReadData INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19642 +PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19648 PoolSvc INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 3 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -494,7 +479,7 @@ ReadData INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du ReadData INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector ReadData INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector ReadData INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19642 +PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19648 PoolSvc INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 4 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -527,7 +512,7 @@ ReadData INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du ReadData INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector ReadData INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector ReadData INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19642 +PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19648 PoolSvc INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 5 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -560,7 +545,7 @@ ReadData INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du ReadData INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector ReadData INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector ReadData INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19642 +PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19648 PoolSvc INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 6 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -593,7 +578,7 @@ ReadData INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du ReadData INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector ReadData INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector ReadData INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19642 +PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19648 PoolSvc INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 7 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -626,7 +611,7 @@ ReadData INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du ReadData INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector ReadData INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector ReadData INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19642 +PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19648 PoolSvc INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 8 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -659,7 +644,7 @@ ReadData INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du ReadData INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector ReadData INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector ReadData INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19642 +PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19648 PoolSvc INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 9 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -692,7 +677,7 @@ ReadData INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du ReadData INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector ReadData INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector ReadData INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19642 +PoolSvc INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 19648 PoolSvc INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 10 events processed so far <<<=== Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? @@ -755,10 +740,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool MetaDataSvc DEBUG handle() EndInputFile for eventless EmptyPoolFile.root Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] @@ -848,10 +830,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile2.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile2.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 3 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]. @@ -902,7 +881,7 @@ ReadData INFO EventInfo event: 0 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 11 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -930,7 +909,7 @@ ReadData INFO EventInfo event: 1 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 12 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -958,7 +937,7 @@ ReadData INFO EventInfo event: 2 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 13 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -986,7 +965,7 @@ ReadData INFO EventInfo event: 3 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 14 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1014,7 +993,7 @@ ReadData INFO EventInfo event: 4 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 15 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1042,7 +1021,7 @@ ReadData INFO EventInfo event: 5 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 16 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1070,7 +1049,7 @@ ReadData INFO EventInfo event: 6 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 17 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1098,7 +1077,7 @@ ReadData INFO EventInfo event: 7 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 18 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1126,7 +1105,7 @@ ReadData INFO EventInfo event: 8 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 19 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1154,7 +1133,7 @@ ReadData INFO EventInfo event: 9 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 20 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1182,7 +1161,7 @@ ReadData INFO EventInfo event: 10 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 21 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1210,7 +1189,7 @@ ReadData INFO EventInfo event: 11 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 22 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1238,7 +1217,7 @@ ReadData INFO EventInfo event: 12 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 23 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1266,7 +1245,7 @@ ReadData INFO EventInfo event: 13 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 24 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1294,7 +1273,7 @@ ReadData INFO EventInfo event: 14 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 25 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1322,7 +1301,7 @@ ReadData INFO EventInfo event: 15 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 26 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1350,7 +1329,7 @@ ReadData INFO EventInfo event: 16 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 27 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1378,7 +1357,7 @@ ReadData INFO EventInfo event: 17 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 28 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1406,7 +1385,7 @@ ReadData INFO EventInfo event: 18 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 29 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1434,7 +1413,7 @@ ReadData INFO EventInfo event: 19 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18805 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 30 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1463,7 +1442,7 @@ ReadData INFO EventInfo event: 20 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #2 31 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1491,7 +1470,7 @@ ReadData INFO EventInfo event: 21 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #21, run #2 32 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1519,7 +1498,7 @@ ReadData INFO EventInfo event: 22 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #22, run #2 33 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1547,7 +1526,7 @@ ReadData INFO EventInfo event: 23 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #23, run #2 34 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1575,7 +1554,7 @@ ReadData INFO EventInfo event: 24 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #24, run #2 35 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1603,7 +1582,7 @@ ReadData INFO EventInfo event: 25 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #25, run #2 36 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1631,7 +1610,7 @@ ReadData INFO EventInfo event: 26 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #26, run #2 37 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1659,7 +1638,7 @@ ReadData INFO EventInfo event: 27 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #27, run #2 38 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1687,7 +1666,7 @@ ReadData INFO EventInfo event: 28 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #28, run #2 39 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1715,7 +1694,7 @@ ReadData INFO EventInfo event: 29 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #29, run #2 40 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1743,7 +1722,7 @@ ReadData INFO EventInfo event: 30 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #30, run #2 41 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1771,7 +1750,7 @@ ReadData INFO EventInfo event: 31 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #31, run #2 42 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1799,7 +1778,7 @@ ReadData INFO EventInfo event: 32 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #32, run #2 43 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1827,7 +1806,7 @@ ReadData INFO EventInfo event: 33 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #33, run #2 44 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1855,7 +1834,7 @@ ReadData INFO EventInfo event: 34 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #34, run #2 45 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1883,7 +1862,7 @@ ReadData INFO EventInfo event: 35 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #35, run #2 46 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1911,7 +1890,7 @@ ReadData INFO EventInfo event: 36 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #36, run #2 47 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1939,7 +1918,7 @@ ReadData INFO EventInfo event: 37 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #37, run #2 48 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1967,7 +1946,7 @@ ReadData INFO EventInfo event: 38 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #38, run #2 49 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1995,7 +1974,7 @@ ReadData INFO EventInfo event: 39 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19192 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #39, run #2 50 events processed so far <<<=== MetaDataSvc DEBUG handle() EndInputFile for FID:???? @@ -2089,10 +2068,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile4.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile4.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 3 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. @@ -2142,7 +2118,7 @@ ReadData INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 51 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2168,7 +2144,7 @@ ReadData INFO Track pt = 137.584 eta = -39.525 phi = 17.2679 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 52 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2194,7 +2170,7 @@ ReadData INFO Track pt = 228.154 eta = -6.2704 phi = 31.9197 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 53 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2220,7 +2196,7 @@ ReadData INFO Track pt = 324.306 eta = -15.8941 phi = 46.5715 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 54 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2246,7 +2222,7 @@ ReadData INFO Track pt = 422.255 eta = -13.279 phi = 61.2233 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 55 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2272,7 +2248,7 @@ ReadData INFO Track pt = 520.987 eta = -12.3511 phi = 75.8751 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 56 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2298,7 +2274,7 @@ ReadData INFO Track pt = 620.127 eta = -11.8468 phi = 90.5269 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 57 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2324,7 +2300,7 @@ ReadData INFO Track pt = 719.507 eta = -11.5247 phi = 105.179 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 58 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2350,7 +2326,7 @@ ReadData INFO Track pt = 819.038 eta = -11.2998 phi = 119.831 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 59 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2376,7 +2352,7 @@ ReadData INFO Track pt = 918.671 eta = -11.1334 phi = 134.482 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 60 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2402,7 +2378,7 @@ ReadData INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 61 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2428,7 +2404,7 @@ ReadData INFO Track pt = 1118.13 eta = -10.9031 phi = 163.786 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 62 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2454,7 +2430,7 @@ ReadData INFO Track pt = 1217.93 eta = -10.82 phi = 178.438 detector DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 63 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2480,7 +2456,7 @@ ReadData INFO Track pt = 1317.76 eta = -10.751 phi = 193.09 detector DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 64 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2506,7 +2482,7 @@ ReadData INFO Track pt = 1417.61 eta = -10.6927 phi = 207.741 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 65 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2532,7 +2508,7 @@ ReadData INFO Track pt = 1517.49 eta = -10.6429 phi = 222.393 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 66 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2558,7 +2534,7 @@ ReadData INFO Track pt = 1617.37 eta = -10.5997 phi = 237.045 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 67 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2584,7 +2560,7 @@ ReadData INFO Track pt = 1717.27 eta = -10.562 phi = 251.697 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 68 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2610,7 +2586,7 @@ ReadData INFO Track pt = 1817.19 eta = -10.5288 phi = 266.349 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 69 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2636,7 +2612,7 @@ ReadData INFO Track pt = 1917.11 eta = -10.4993 phi = 281 detector = DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19064 +PoolSvc INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 19065 PoolSvc INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 70 events processed so far <<<=== MetaDataSvc DEBUG handle() EndInputFile for FID:???? @@ -2645,6 +2621,7 @@ Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] MetaDataSvc DEBUG handle() LastInputFile for end AthenaEventLoopMgr INFO No more events in event selection +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool ApplicationMgr INFO Application Manager Stopped successfully IncidentProcAlg1 INFO Finalize ReadData INFO in finalize() @@ -2655,8 +2632,8 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** cObjR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #=124 -cObj_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.175(+- 1.31)/ 0/ 10 [ms] #=114 -ChronoStatSvc INFO Time User : Tot= 0.79 [s] #= 1 +cObj_ALL INFO Time User : Tot= 50 [ms] Ave/Min/Max=0.439(+- 2.78)/ 0/ 20 [ms] #=114 +ChronoStatSvc INFO Time User : Tot= 1.05 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBN.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBN.ref deleted file mode 100644 index 01f968c229097713833f9ff5b041c76a18674f6f..0000000000000000000000000000000000000000 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBN.ref +++ /dev/null @@ -1,3089 +0,0 @@ -Fri Sep 28 09:36:06 CDT 2018 -Preloading tcmalloc_minimal.so -Athena INFO including file "AthenaCommon/Preparation.py" -Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" -Athena INFO executing ROOT6Setup -Athena INFO including file "AthenaCommon/Execution.py" -Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadBNJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5500 configurables from 17 genConfDb files -Py:ConfigurableDb INFO No duplicates have been found: that's good ! -Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 -ApplicationMgr SUCCESS -==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Fri Sep 28 09:36:15 2018 -==================================================================================================================================== -ApplicationMgr INFO Successfully loaded modules : AthenaServices -ApplicationMgr INFO Application Manager Configured successfully -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 -StatusCodeSvc INFO initialize -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 2946 CLIDRegistry entries for module ALL -CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) -AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 -ClassIDSvc INFO getRegistryEntries: read 889 CLIDRegistry entries for module ALL -ReadData DEBUG Property update for OutputLevel : new value = 2 -ReadData INFO in initialize() -MetaDataSvc DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 -MetaDataSvc DEBUG Service base class initialized successfully -AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00 -PoolSvc DEBUG Property update for OutputLevel : new value = 2 -PoolSvc DEBUG Service base class initialized successfully -PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled -PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-09-24T2109/Athena/22.0.1/InstallArea/x86_64-centos7-gcc62-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] -PoolSvc INFO Successfully setup replica sorting algorithm -PoolSvc DEBUG OutputLevel is -PoolSvc INFO Setting up APR FileCatalog and Streams -PoolSvc INFO POOL WriteCatalog is file:Catalog1.xml -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) -EventSelector DEBUG Property update for OutputLevel : new value = 2 -EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 -EventSelector DEBUG Service base class initialized successfully -IoComponentMgr INFO IoComponent EventSelector has already had file EmptyPoolFile.root registered with i/o mode READ -EventSelector INFO reinitialization... -EventSelector INFO EventSelection with query -EventSelector DEBUG Try item: "EmptyPoolFile.root" from the collection list. -PersistencySvc:... DEBUG lookupPFN: EmptyPoolFile.root returned FID: '????' tech=ROOT_All -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO EmptyPoolFile.root -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 3 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream3) [202] (3 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (4 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (5 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 4 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Param:FID=[????] -EmptyPoolFile.root DEBUG --->Reading Param:PFN=[EmptyPoolFile.root] -EmptyPoolFile.root DEBUG --->Reading Param:POOL_VSN=[1.1] -EmptyPoolFile.root DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -PoolSvc INFO Failed to find container POOLContainer(DataHeader) to create POOL collection. -PoolSvc INFO Failed to find container POOLContainer_DataHeader to create POOL collection. -EventSelector DEBUG No events found in: EmptyPoolFile.root skipped!!! -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -EventSelector DEBUG Try item: "SimplePoolFile1.root" from the collection list. -MetaDataSvc DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc DEBUG initInputMetaDataStore: file name FID:???? -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO SimplePoolFile1.root -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -SimplePoolFile1... DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[3 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[4 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[5 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[6 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 7 Entries in total. -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -SimplePoolFile1... DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202] (3 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/CollectionTree(ExampleHitContainer_p1/MyHits) [202] (4 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202] (5 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202] (6 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(Token) [202] (7 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(RunNumber) [202] (8 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber) [202] (9 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202] (a , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202] (b , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (c , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (d , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 12 Entries in total. -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -SimplePoolFile1... DEBUG --->Reading Param:FID=[????] -SimplePoolFile1... DEBUG --->Reading Param:PFN=[SimplePoolFile1.root] -SimplePoolFile1... DEBUG --->Reading Param:POOL_VSN=[1.1] -SimplePoolFile1... DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdr(DataHeader) -MetaDataHdr(Dat... DEBUG Opening -MetaDataHdr(Dat... DEBUG attributes# = 1 -MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' -MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -ClassIDSvc INFO getRegistryEntries: read 1964 CLIDRegistry entries for module ALL -EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) -MetaDataHdrForm... DEBUG Opening -MetaDataHdrForm... DEBUG attributes# = 1 -MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' -MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data -AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 -AthenaPoolAddre... DEBUG Service base class initialized successfully -AthenaPoolAddre... INFO BackNavigationScope for: ExampleHitContainer#MyHits :: Stream1 -ReadData DEBUG input handles: 2 -ReadData DEBUG output handles: 0 -ReadData DEBUG Data Deps for ReadData - + INPUT ( 'ExampleHitContainer' , 'StoreGateSvc+MyHits' ) - + INPUT ( 'ExampleTrackContainer' , 'StoreGateSvc+MyTracks' ) -HistogramPersis...WARNING Histograms saving not required. -AthenaEventLoopMgr INFO Setup EventSelector service EventSelector -ApplicationMgr INFO Application Manager Initialized successfully -EventSelector DEBUG Try item: "EmptyPoolFile.root" from the collection list. -PersistencySvc:... DEBUG lookupPFN: EmptyPoolFile.root returned FID: '????' tech=ROOT_All -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO EmptyPoolFile.root -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 3 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream3) [202] (3 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (4 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (5 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 4 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Param:FID=[????] -EmptyPoolFile.root DEBUG --->Reading Param:PFN=[EmptyPoolFile.root] -EmptyPoolFile.root DEBUG --->Reading Param:POOL_VSN=[1.1] -EmptyPoolFile.root DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -PoolSvc INFO Failed to find container POOLContainer(DataHeader) to create POOL collection. -PoolSvc INFO Failed to find container POOLContainer_DataHeader to create POOL collection. -EventSelector DEBUG No events found in: EmptyPoolFile.root skipped!!! -MetaDataSvc DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc DEBUG initInputMetaDataStore: file name EmptyPoolFile.root -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdr(DataHeader) -MetaDataHdr(Dat... DEBUG Opening -MetaDataHdr(Dat... DEBUG attributes# = 1 -MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' -MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -ClassIDSvc INFO getRegistryEntries: read 2 CLIDRegistry entries for module ALL -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) -MetaDataHdrForm... DEBUG Opening -MetaDataHdrForm... DEBUG attributes# = 1 -MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' -MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData -MetaDataSvc DEBUG handle() EndInputFile for eventless EmptyPoolFile.root -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -EventSelector DEBUG Try item: "SimplePoolFile1.root" from the collection list. -ApplicationMgr INFO Application Manager Started successfully -RootDatabase.se... DEBUG TREE_CACHE_LEARN_EVENTS = 6 -RootDatabase.se... DEBUG Request tree cache -RootDatabase.se... DEBUG File name SimplePoolFile1.root -RootDatabase.se... DEBUG Got tree CollectionTree read entry -1 -RootDatabase.se... DEBUG Using Tree cache. Size: 100000 Nevents to learn with: 6 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [TREE_CACHE_LEARN_EVENTS]: 6 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [TREE_CACHE_SIZE]: 100000 -MetaDataSvc DEBUG handle() BeginInputFile for SimplePoolFile1.root -MetaDataSvc DEBUG initInputMetaDataStore: file name SimplePoolFile1.root -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data -EventSelector INFO skipping event 1 -EventSelector INFO skipping event 2 -EventSelector INFO skipping event 3 -EventSelector INFO skipping event 4 -EventSelector INFO skipping event 5 -EventSelector INFO skipping event 6 -EventSelector INFO skipping event 7 -EventSelector INFO skipping event 8 -EventSelector INFO skipping event 9 -EventSelector INFO skipping event 10 -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A] -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainer(DataHeader) -POOLContainer(D... DEBUG Opening -POOLContainer(D... DEBUG attributes# = 1 -POOLContainer(D... DEBUG Branch container 'DataHeader' -POOLContainer(D... DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainerForm(DataHeaderForm) -POOLContainerFo... DEBUG Opening -POOLContainerFo... DEBUG attributes# = 1 -POOLContainerFo... DEBUG Branch container 'DataHeaderForm' -POOLContainerFo... DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AlgResourcePool INFO TopAlg list empty. Recovering the one of Application Manager -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'EventInfo_p4_McEventInfo' -CollectionTree(... DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree -AthenaPoolConve... INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector -ClassIDSvc INFO getRegistryEntries: read 15 CLIDRegistry entries for module ALL -AthenaEventLoopMgr INFO ===>>> start of run 1 <<<=== -AthenaEventLoopMgr INFO ===>>> start processing event #10, run #1 0 events processed so far <<<=== -ReadData DEBUG in execute() -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1) -MetaData(EventS... DEBUG Opening -MetaData(EventS... DEBUG attributes# = 1 -MetaData(EventS... DEBUG Branch container 'EventStreamInfo_p3_Stream1' -MetaData(EventS... DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 10 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'ExampleHitContainer_p1_MyHits' -CollectionTree(... DEBUG Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree -ReadData INFO Hit x = 1001.23 y = 97.655 z = -773.328 detector = DummyHitDetector -ReadData INFO Hit x = 1004.44 y = 91.9761 z = -905.268 detector = DummyHitDetector -ReadData INFO Hit x = 1007.65 y = 86.2972 z = -929.765 detector = DummyHitDetector -ReadData INFO Hit x = 1010.86 y = 80.6183 z = -940.086 detector = DummyHitDetector -ReadData INFO Hit x = 1014.07 y = 74.9394 z = -945.774 detector = DummyHitDetector -ReadData INFO Hit x = 1017.28 y = 69.2605 z = -949.377 detector = DummyHitDetector -ReadData INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = DummyHitDetector -ReadData INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector -ReadData INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector -ReadData INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector -ClassIDSvc INFO getRegistryEntries: read 10 CLIDRegistry entries for module ALL -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20090 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 1 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #11, run #1 1 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 11 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1101.23 y = 97.655 z = -873.328 detector = DummyHitDetector -ReadData INFO Hit x = 1104.44 y = 91.9761 z = -1005.27 detector = DummyHitDetector -ReadData INFO Hit x = 1107.65 y = 86.2972 z = -1029.77 detector = DummyHitDetector -ReadData INFO Hit x = 1110.86 y = 80.6183 z = -1040.09 detector = DummyHitDetector -ReadData INFO Hit x = 1114.07 y = 74.9394 z = -1045.77 detector = DummyHitDetector -ReadData INFO Hit x = 1117.28 y = 69.2605 z = -1049.38 detector = DummyHitDetector -ReadData INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = DummyHitDetector -ReadData INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector -ReadData INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector -ReadData INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20090 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 2 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #12, run #1 2 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 12 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1201.23 y = 97.655 z = -973.328 detector = DummyHitDetector -ReadData INFO Hit x = 1204.44 y = 91.9761 z = -1105.27 detector = DummyHitDetector -ReadData INFO Hit x = 1207.65 y = 86.2972 z = -1129.77 detector = DummyHitDetector -ReadData INFO Hit x = 1210.86 y = 80.6183 z = -1140.09 detector = DummyHitDetector -ReadData INFO Hit x = 1214.07 y = 74.9394 z = -1145.77 detector = DummyHitDetector -ReadData INFO Hit x = 1217.28 y = 69.2605 z = -1149.38 detector = DummyHitDetector -ReadData INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = DummyHitDetector -ReadData INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector -ReadData INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector -ReadData INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20090 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 3 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #13, run #1 3 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 13 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1301.23 y = 97.655 z = -1073.33 detector = DummyHitDetector -ReadData INFO Hit x = 1304.44 y = 91.9761 z = -1205.27 detector = DummyHitDetector -ReadData INFO Hit x = 1307.65 y = 86.2972 z = -1229.77 detector = DummyHitDetector -ReadData INFO Hit x = 1310.86 y = 80.6183 z = -1240.09 detector = DummyHitDetector -ReadData INFO Hit x = 1314.07 y = 74.9394 z = -1245.77 detector = DummyHitDetector -ReadData INFO Hit x = 1317.28 y = 69.2605 z = -1249.38 detector = DummyHitDetector -ReadData INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = DummyHitDetector -ReadData INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector -ReadData INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector -ReadData INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20090 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 4 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #14, run #1 4 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 14 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1401.23 y = 97.655 z = -1173.33 detector = DummyHitDetector -ReadData INFO Hit x = 1404.44 y = 91.9761 z = -1305.27 detector = DummyHitDetector -ReadData INFO Hit x = 1407.65 y = 86.2972 z = -1329.77 detector = DummyHitDetector -ReadData INFO Hit x = 1410.86 y = 80.6183 z = -1340.09 detector = DummyHitDetector -ReadData INFO Hit x = 1414.07 y = 74.9394 z = -1345.77 detector = DummyHitDetector -ReadData INFO Hit x = 1417.28 y = 69.2605 z = -1349.38 detector = DummyHitDetector -ReadData INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = DummyHitDetector -ReadData INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector -ReadData INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector -ReadData INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20090 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 5 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #15, run #1 5 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 15 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1501.23 y = 97.655 z = -1273.33 detector = DummyHitDetector -ReadData INFO Hit x = 1504.44 y = 91.9761 z = -1405.27 detector = DummyHitDetector -ReadData INFO Hit x = 1507.65 y = 86.2972 z = -1429.77 detector = DummyHitDetector -ReadData INFO Hit x = 1510.86 y = 80.6183 z = -1440.09 detector = DummyHitDetector -ReadData INFO Hit x = 1514.07 y = 74.9394 z = -1445.77 detector = DummyHitDetector -ReadData INFO Hit x = 1517.28 y = 69.2605 z = -1449.38 detector = DummyHitDetector -ReadData INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = DummyHitDetector -ReadData INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector -ReadData INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector -ReadData INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20090 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 6 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #16, run #1 6 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 16 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1601.23 y = 97.655 z = -1373.33 detector = DummyHitDetector -ReadData INFO Hit x = 1604.44 y = 91.9761 z = -1505.27 detector = DummyHitDetector -ReadData INFO Hit x = 1607.65 y = 86.2972 z = -1529.77 detector = DummyHitDetector -ReadData INFO Hit x = 1610.86 y = 80.6183 z = -1540.09 detector = DummyHitDetector -ReadData INFO Hit x = 1614.07 y = 74.9394 z = -1545.77 detector = DummyHitDetector -ReadData INFO Hit x = 1617.28 y = 69.2605 z = -1549.38 detector = DummyHitDetector -ReadData INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = DummyHitDetector -ReadData INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector -ReadData INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector -ReadData INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20090 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 7 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #17, run #1 7 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 17 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1701.23 y = 97.655 z = -1473.33 detector = DummyHitDetector -ReadData INFO Hit x = 1704.44 y = 91.9761 z = -1605.27 detector = DummyHitDetector -ReadData INFO Hit x = 1707.65 y = 86.2972 z = -1629.77 detector = DummyHitDetector -ReadData INFO Hit x = 1710.86 y = 80.6183 z = -1640.09 detector = DummyHitDetector -ReadData INFO Hit x = 1714.07 y = 74.9394 z = -1645.77 detector = DummyHitDetector -ReadData INFO Hit x = 1717.28 y = 69.2605 z = -1649.38 detector = DummyHitDetector -ReadData INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = DummyHitDetector -ReadData INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector -ReadData INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector -ReadData INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20090 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 8 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #18, run #1 8 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 18 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1801.23 y = 97.655 z = -1573.33 detector = DummyHitDetector -ReadData INFO Hit x = 1804.44 y = 91.9761 z = -1705.27 detector = DummyHitDetector -ReadData INFO Hit x = 1807.65 y = 86.2972 z = -1729.77 detector = DummyHitDetector -ReadData INFO Hit x = 1810.86 y = 80.6183 z = -1740.09 detector = DummyHitDetector -ReadData INFO Hit x = 1814.07 y = 74.9394 z = -1745.77 detector = DummyHitDetector -ReadData INFO Hit x = 1817.28 y = 69.2605 z = -1749.38 detector = DummyHitDetector -ReadData INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = DummyHitDetector -ReadData INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector -ReadData INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector -ReadData INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20090 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 9 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #19, run #1 9 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 19 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1901.23 y = 97.655 z = -1673.33 detector = DummyHitDetector -ReadData INFO Hit x = 1904.44 y = 91.9761 z = -1805.27 detector = DummyHitDetector -ReadData INFO Hit x = 1907.65 y = 86.2972 z = -1829.77 detector = DummyHitDetector -ReadData INFO Hit x = 1910.86 y = 80.6183 z = -1840.09 detector = DummyHitDetector -ReadData INFO Hit x = 1914.07 y = 74.9394 z = -1845.77 detector = DummyHitDetector -ReadData INFO Hit x = 1917.28 y = 69.2605 z = -1849.38 detector = DummyHitDetector -ReadData INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = DummyHitDetector -ReadData INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector -ReadData INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector -ReadData INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20090 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 10 events processed so far <<<=== -MetaDataSvc DEBUG handle() EndInputFile for FID:???? -EventSelector INFO Disconnecting input sourceID: ???? -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -EventSelector DEBUG Try item: "EmptyPoolFile.root" from the collection list. -PersistencySvc:... DEBUG lookupPFN: EmptyPoolFile.root returned FID: '????' tech=ROOT_All -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO EmptyPoolFile.root -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 3 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream3) [202] (3 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (4 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (5 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 4 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Param:FID=[????] -EmptyPoolFile.root DEBUG --->Reading Param:PFN=[EmptyPoolFile.root] -EmptyPoolFile.root DEBUG --->Reading Param:POOL_VSN=[1.1] -EmptyPoolFile.root DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -PoolSvc INFO Failed to find container POOLContainer(DataHeader) to create POOL collection. -PoolSvc INFO Failed to find container POOLContainer_DataHeader to create POOL collection. -EventSelector DEBUG No events found in: EmptyPoolFile.root skipped!!! -MetaDataSvc DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc DEBUG initInputMetaDataStore: file name EmptyPoolFile.root -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdr(DataHeader) -MetaDataHdr(Dat... DEBUG Opening -MetaDataHdr(Dat... DEBUG attributes# = 1 -MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' -MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) -MetaDataHdrForm... DEBUG Opening -MetaDataHdrForm... DEBUG attributes# = 1 -MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' -MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data -MetaDataSvc DEBUG handle() EndInputFile for eventless EmptyPoolFile.root -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -EventSelector DEBUG Try item: "SimplePoolFile2.root" from the collection list. -PersistencySvc:... DEBUG lookupPFN: SimplePoolFile2.root returned FID: '????' tech=ROOT_All -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO SimplePoolFile2.root -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -SimplePoolFile2... DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile2... DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile2... DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile2... DEBUG --->Reading Shape[3 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1 -SimplePoolFile2... DEBUG --->Reading Shape[4 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1 -SimplePoolFile2... DEBUG --->Reading Shape[5 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 6 Entries in total. -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -SimplePoolFile2... DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202] (3 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202] (4 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202] (5 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLCollectionTree(Token) [202] (6 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLCollectionTree(RunNumber) [202] (7 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber) [202] (8 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202] (9 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202] (a , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (b , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (c , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202] (d , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 12 Entries in total. -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -SimplePoolFile2... DEBUG --->Reading Param:FID=[????] -SimplePoolFile2... DEBUG --->Reading Param:PFN=[SimplePoolFile2.root] -SimplePoolFile2... DEBUG --->Reading Param:POOL_VSN=[1.1] -SimplePoolFile2... DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -RootDatabase.se... DEBUG TREE_CACHE_LEARN_EVENTS = 6 -RootDatabase.se... DEBUG Request tree cache -RootDatabase.se... DEBUG File name SimplePoolFile2.root -RootDatabase.se... DEBUG Got tree CollectionTree read entry -1 -RootDatabase.se... DEBUG Using Tree cache. Size: 100000 Nevents to learn with: 6 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [TREE_CACHE_LEARN_EVENTS]: 6 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [TREE_CACHE_SIZE]: 100000 -MetaDataSvc DEBUG handle() BeginInputFile for SimplePoolFile2.root -MetaDataSvc DEBUG initInputMetaDataStore: file name SimplePoolFile2.root -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdr(DataHeader) -MetaDataHdr(Dat... DEBUG Opening -MetaDataHdr(Dat... DEBUG attributes# = 1 -MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' -MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) -MetaDataHdrForm... DEBUG Opening -MetaDataHdrForm... DEBUG attributes# = 1 -MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' -MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile2.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile2.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000] -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainer(DataHeader) -POOLContainer(D... DEBUG Opening -POOLContainer(D... DEBUG attributes# = 1 -POOLContainer(D... DEBUG Branch container 'DataHeader' -POOLContainer(D... DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainerForm(DataHeaderForm) -POOLContainerFo... DEBUG Opening -POOLContainerFo... DEBUG attributes# = 1 -POOLContainerFo... DEBUG Branch container 'DataHeaderForm' -POOLContainerFo... DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'EventInfo_p4_McEventInfo' -CollectionTree(... DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree -AthenaEventLoopMgr INFO ===>>> start processing event #0, run #1 10 events processed so far <<<=== -ReadData DEBUG in execute() -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1) -MetaData(EventS... DEBUG Opening -MetaData(EventS... DEBUG attributes# = 1 -MetaData(EventS... DEBUG Branch container 'EventStreamInfo_p3_Stream1' -MetaData(EventS... DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream2) -MetaData(EventS... DEBUG Opening -MetaData(EventS... DEBUG attributes# = 1 -MetaData(EventS... DEBUG Branch container 'EventStreamInfo_p3_Stream2' -MetaData(EventS... DEBUG Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 0 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 11 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #1, run #1 11 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 1 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 12 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #2, run #1 12 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 2 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 13 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000003]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000003]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000003] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #3, run #1 13 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 3 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 14 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000004]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000004]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000004] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #4, run #1 14 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 4 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 15 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000005]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000005]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000005] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #5, run #1 15 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 5 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 16 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000006]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000006]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000006] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #6, run #1 16 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 6 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 17 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000007]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000007]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000007] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #7, run #1 17 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 7 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 18 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000008]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000008]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000008] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #8, run #1 18 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 8 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 19 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000009]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000009]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000009] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #9, run #1 19 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 9 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 20 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000A]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000A]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000A] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #10, run #1 20 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 10 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 21 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000B]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000B]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000B] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #11, run #1 21 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 11 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 22 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000C]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000C]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000C] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #12, run #1 22 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 12 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 23 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000D]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000D]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000D] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #13, run #1 23 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 13 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 24 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000E]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000E]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000E] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #14, run #1 24 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 14 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 25 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000F]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000F]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000F] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #15, run #1 25 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 15 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 26 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000010]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000010]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000010] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #16, run #1 26 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 16 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 27 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000011]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000011]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000011] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #17, run #1 27 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 17 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 28 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000012]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000012]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000012] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #18, run #1 28 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 18 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 29 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000013]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000013]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000013] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #19, run #1 29 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 19 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18809 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 30 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000014]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000014]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000014] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start of run 2 <<<=== -AthenaEventLoopMgr INFO ===>>> start processing event #20, run #2 30 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 20 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #20, run #2 31 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000015]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000015]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000015] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #21, run #2 31 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 21 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #21, run #2 32 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000016]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000016]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000016] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #22, run #2 32 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 22 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #22, run #2 33 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000017]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000017]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000017] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #23, run #2 33 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 23 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #23, run #2 34 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000018]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000018]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000018] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #24, run #2 34 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 24 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #24, run #2 35 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000019]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000019]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000019] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #25, run #2 35 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 25 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #25, run #2 36 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001A]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001A]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001A] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #26, run #2 36 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 26 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #26, run #2 37 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001B]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001B]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001B] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #27, run #2 37 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 27 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #27, run #2 38 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001C]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001C]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001C] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #28, run #2 38 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 28 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #28, run #2 39 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001D]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001D]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001D] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #29, run #2 39 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 29 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #29, run #2 40 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001E]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001E]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001E] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #30, run #2 40 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 30 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #30, run #2 41 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001F]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001F]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001F] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #31, run #2 41 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 31 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #31, run #2 42 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000020]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000020]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000020] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #32, run #2 42 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 32 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #32, run #2 43 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000021]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000021]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000021] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #33, run #2 43 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 33 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #33, run #2 44 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000022]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000022]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000022] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #34, run #2 44 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 34 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #34, run #2 45 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000023]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000023]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000023] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #35, run #2 45 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 35 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #35, run #2 46 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000024]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000024]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000024] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #36, run #2 46 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 36 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #36, run #2 47 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000025]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000025]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000025] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #37, run #2 47 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 37 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #37, run #2 48 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000026]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000026]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000026] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #38, run #2 48 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 38 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #38, run #2 49 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000027]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000027]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000027] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #39, run #2 49 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 39 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20432 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 25 -AthenaEventLoopMgr INFO ===>>> done processing event #39, run #2 50 events processed so far <<<=== -MetaDataSvc DEBUG handle() EndInputFile for FID:???? -EventSelector INFO Disconnecting input sourceID: ???? -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -EventSelector DEBUG Try item: "SimplePoolFile3.root" from the collection list. -PersistencySvc:... DEBUG lookupPFN: SimplePoolFile3.root returned FID: '????' tech=ROOT_All -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO SimplePoolFile3.root -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -SimplePoolFile3... DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:ExampleTrackContainer_p1 Typ:ExampleTrackContainer_p1 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[3 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[4 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[5 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[6 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 7 Entries in total. -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -SimplePoolFile3... DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202] (3 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/CollectionTree(ExampleTrackContainer_p1/MyTracks) [202] (4 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202] (5 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202] (6 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLCollectionTree(Token) [202] (7 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLCollectionTree(RunNumber) [202] (8 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber) [202] (9 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202] (a , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202] (b , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (c , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (d , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 12 Entries in total. -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -SimplePoolFile3... DEBUG --->Reading Param:FID=[????] -SimplePoolFile3... DEBUG --->Reading Param:PFN=[SimplePoolFile3.root] -SimplePoolFile3... DEBUG --->Reading Param:POOL_VSN=[1.1] -SimplePoolFile3... DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -RootDatabase.se... DEBUG TREE_CACHE_LEARN_EVENTS = 6 -RootDatabase.se... DEBUG Request tree cache -RootDatabase.se... DEBUG File name SimplePoolFile3.root -RootDatabase.se... DEBUG Got tree CollectionTree read entry -1 -RootDatabase.se... DEBUG Using Tree cache. Size: 100000 Nevents to learn with: 6 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [TREE_CACHE_LEARN_EVENTS]: 6 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [TREE_CACHE_SIZE]: 100000 -MetaDataSvc DEBUG handle() BeginInputFile for SimplePoolFile3.root -MetaDataSvc DEBUG initInputMetaDataStore: file name SimplePoolFile3.root -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdr(DataHeader) -MetaDataHdr(Dat... DEBUG Opening -MetaDataHdr(Dat... DEBUG attributes# = 1 -MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' -MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) -MetaDataHdrForm... DEBUG Opening -MetaDataHdrForm... DEBUG attributes# = 1 -MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' -MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile3.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile3.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000] -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainer(DataHeader) -POOLContainer(D... DEBUG Opening -POOLContainer(D... DEBUG attributes# = 1 -POOLContainer(D... DEBUG Branch container 'DataHeader' -POOLContainer(D... DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainerForm(DataHeaderForm) -POOLContainerFo... DEBUG Opening -POOLContainerFo... DEBUG attributes# = 1 -POOLContainerFo... DEBUG Branch container 'DataHeaderForm' -POOLContainerFo... DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'EventInfo_p4_McEventInfo' -CollectionTree(... DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree -AthenaEventLoopMgr INFO ===>>> start of run 1 <<<=== -AthenaEventLoopMgr INFO ===>>> start processing event #0, run #1 50 events processed so far <<<=== -ReadData DEBUG in execute() -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1) -MetaData(EventS... DEBUG Opening -MetaData(EventS... DEBUG attributes# = 1 -MetaData(EventS... DEBUG Branch container 'EventStreamInfo_p3_Stream1' -MetaData(EventS... DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 0 run: 1 -ReadData INFO Get Smart data ptr 1 -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(ExampleTrackContainer_p1/MyTracks) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'ExampleTrackContainer_p1_MyTracks' -CollectionTree(... DEBUG Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree -ReadData INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector = Track made in: DummyHitDetector -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO SimplePoolFile1.root -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -SimplePoolFile1... DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[3 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[4 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[5 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[6 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 7 Entries in total. -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -SimplePoolFile1... DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202] (3 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/CollectionTree(ExampleHitContainer_p1/MyHits) [202] (4 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202] (5 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202] (6 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(Token) [202] (7 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(RunNumber) [202] (8 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber) [202] (9 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202] (a , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202] (b , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (c , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (d , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 12 Entries in total. -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -SimplePoolFile1... DEBUG --->Reading Param:FID=[????] -SimplePoolFile1... DEBUG --->Reading Param:PFN=[SimplePoolFile1.root] -SimplePoolFile1... DEBUG --->Reading Param:POOL_VSN=[1.1] -SimplePoolFile1... DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainer(DataHeader) -POOLContainer(D... DEBUG Opening -POOLContainer(D... DEBUG attributes# = 1 -POOLContainer(D... DEBUG Branch container 'DataHeader' -POOLContainer(D... DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainerForm(DataHeaderForm) -POOLContainerFo... DEBUG Opening -POOLContainerFo... DEBUG attributes# = 1 -POOLContainerFo... DEBUG Branch container 'DataHeaderForm' -POOLContainerFo... DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree -AthenaPoolAddre... DEBUG Found Address: 0x???? -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'ExampleHitContainer_p1_MyHits' -CollectionTree(... DEBUG Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree -ReadData INFO ElementLink1 = 1.2345 -ReadData INFO ElementLink2 = 30.1245 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1.2345 -ReadData INFO Element = 0x???? : 4.4445 -ReadData INFO Element = 0x???? : 10.8645 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1.2345 -ReadData INFO Element = 0x???? : 17.2845 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1.2345 -ReadData INFO Element = 0x???? : 17.2845 -ReadData INFO Element = 0x???? : 10.8645 -ReadData INFO Hit x = 1.2345 y = 97.655 z = 226.672 detector = DummyHitDetector -ReadData INFO Hit x = 4.4445 y = 91.9761 z = 94.7318 detector = DummyHitDetector -ReadData INFO Hit x = 7.6545 y = 86.2972 z = 70.2348 detector = DummyHitDetector -ReadData INFO Hit x = 10.8645 y = 80.6183 z = 59.9142 detector = DummyHitDetector -ReadData INFO Hit x = 14.0745 y = 74.9394 z = 54.2259 detector = DummyHitDetector -ReadData INFO Hit x = 17.2845 y = 69.2605 z = 50.6227 detector = DummyHitDetector -ReadData INFO Hit x = 20.4945 y = 63.5816 z = 48.1358 detector = DummyHitDetector -ReadData INFO Hit x = 23.7045 y = 57.9027 z = 46.3159 detector = DummyHitDetector -ReadData INFO Hit x = 26.9145 y = 52.2238 z = 44.9265 detector = DummyHitDetector -ReadData INFO Hit x = 30.1245 y = 46.5449 z = 43.831 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 51 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000001]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000001]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000001] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #1, run #1 51 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 1 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 137.584 eta = -39.525 phi = 17.2679 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 101.234 -ReadData INFO ElementLink2 = 130.125 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 101.234 -ReadData INFO Element = 0x???? : 104.444 -ReadData INFO Element = 0x???? : 110.864 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 101.234 -ReadData INFO Element = 0x???? : 117.284 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 101.234 -ReadData INFO Element = 0x???? : 117.284 -ReadData INFO Element = 0x???? : 110.864 -ReadData INFO Hit x = 101.234 y = 97.655 z = 126.672 detector = DummyHitDetector -ReadData INFO Hit x = 104.444 y = 91.9761 z = -5.26816 detector = DummyHitDetector -ReadData INFO Hit x = 107.654 y = 86.2972 z = -29.7652 detector = DummyHitDetector -ReadData INFO Hit x = 110.864 y = 80.6183 z = -40.0858 detector = DummyHitDetector -ReadData INFO Hit x = 114.075 y = 74.9394 z = -45.7741 detector = DummyHitDetector -ReadData INFO Hit x = 117.284 y = 69.2605 z = -49.3773 detector = DummyHitDetector -ReadData INFO Hit x = 120.494 y = 63.5816 z = -51.8642 detector = DummyHitDetector -ReadData INFO Hit x = 123.704 y = 57.9027 z = -53.6841 detector = DummyHitDetector -ReadData INFO Hit x = 126.915 y = 52.2238 z = -55.0735 detector = DummyHitDetector -ReadData INFO Hit x = 130.125 y = 46.5449 z = -56.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 52 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000002]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000002]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000002] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #2, run #1 52 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 2 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 228.154 eta = -6.2704 phi = 31.9197 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 201.234 -ReadData INFO ElementLink2 = 230.125 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 201.234 -ReadData INFO Element = 0x???? : 204.445 -ReadData INFO Element = 0x???? : 210.864 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 201.234 -ReadData INFO Element = 0x???? : 217.285 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 201.234 -ReadData INFO Element = 0x???? : 217.285 -ReadData INFO Element = 0x???? : 210.864 -ReadData INFO Hit x = 201.234 y = 97.655 z = 26.6723 detector = DummyHitDetector -ReadData INFO Hit x = 204.445 y = 91.9761 z = -105.268 detector = DummyHitDetector -ReadData INFO Hit x = 207.654 y = 86.2972 z = -129.765 detector = DummyHitDetector -ReadData INFO Hit x = 210.864 y = 80.6183 z = -140.086 detector = DummyHitDetector -ReadData INFO Hit x = 214.075 y = 74.9394 z = -145.774 detector = DummyHitDetector -ReadData INFO Hit x = 217.285 y = 69.2605 z = -149.377 detector = DummyHitDetector -ReadData INFO Hit x = 220.494 y = 63.5816 z = -151.864 detector = DummyHitDetector -ReadData INFO Hit x = 223.704 y = 57.9027 z = -153.684 detector = DummyHitDetector -ReadData INFO Hit x = 226.915 y = 52.2238 z = -155.073 detector = DummyHitDetector -ReadData INFO Hit x = 230.125 y = 46.5449 z = -156.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 53 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000003]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000003]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000003] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #3, run #1 53 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 3 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 324.306 eta = -15.8941 phi = 46.5715 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 301.235 -ReadData INFO ElementLink2 = 330.125 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 301.235 -ReadData INFO Element = 0x???? : 304.445 -ReadData INFO Element = 0x???? : 310.865 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 301.235 -ReadData INFO Element = 0x???? : 317.285 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 301.235 -ReadData INFO Element = 0x???? : 317.285 -ReadData INFO Element = 0x???? : 310.865 -ReadData INFO Hit x = 301.235 y = 97.655 z = -73.3277 detector = DummyHitDetector -ReadData INFO Hit x = 304.445 y = 91.9761 z = -205.268 detector = DummyHitDetector -ReadData INFO Hit x = 307.655 y = 86.2972 z = -229.765 detector = DummyHitDetector -ReadData INFO Hit x = 310.865 y = 80.6183 z = -240.086 detector = DummyHitDetector -ReadData INFO Hit x = 314.075 y = 74.9394 z = -245.774 detector = DummyHitDetector -ReadData INFO Hit x = 317.285 y = 69.2605 z = -249.377 detector = DummyHitDetector -ReadData INFO Hit x = 320.495 y = 63.5816 z = -251.864 detector = DummyHitDetector -ReadData INFO Hit x = 323.705 y = 57.9027 z = -253.684 detector = DummyHitDetector -ReadData INFO Hit x = 326.915 y = 52.2238 z = -255.073 detector = DummyHitDetector -ReadData INFO Hit x = 330.125 y = 46.5449 z = -256.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 54 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000004]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000004]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000004] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #4, run #1 54 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 4 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 422.255 eta = -13.279 phi = 61.2233 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 401.235 -ReadData INFO ElementLink2 = 430.125 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 401.235 -ReadData INFO Element = 0x???? : 404.445 -ReadData INFO Element = 0x???? : 410.865 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 401.235 -ReadData INFO Element = 0x???? : 417.285 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 401.235 -ReadData INFO Element = 0x???? : 417.285 -ReadData INFO Element = 0x???? : 410.865 -ReadData INFO Hit x = 401.235 y = 97.655 z = -173.328 detector = DummyHitDetector -ReadData INFO Hit x = 404.445 y = 91.9761 z = -305.268 detector = DummyHitDetector -ReadData INFO Hit x = 407.655 y = 86.2972 z = -329.765 detector = DummyHitDetector -ReadData INFO Hit x = 410.865 y = 80.6183 z = -340.086 detector = DummyHitDetector -ReadData INFO Hit x = 414.075 y = 74.9394 z = -345.774 detector = DummyHitDetector -ReadData INFO Hit x = 417.285 y = 69.2605 z = -349.377 detector = DummyHitDetector -ReadData INFO Hit x = 420.495 y = 63.5816 z = -351.864 detector = DummyHitDetector -ReadData INFO Hit x = 423.705 y = 57.9027 z = -353.684 detector = DummyHitDetector -ReadData INFO Hit x = 426.915 y = 52.2238 z = -355.073 detector = DummyHitDetector -ReadData INFO Hit x = 430.125 y = 46.5449 z = -356.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 55 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000005]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000005]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000005] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #5, run #1 55 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 5 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 520.987 eta = -12.3511 phi = 75.8751 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 501.235 -ReadData INFO ElementLink2 = 530.125 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 501.235 -ReadData INFO Element = 0x???? : 504.445 -ReadData INFO Element = 0x???? : 510.865 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 501.235 -ReadData INFO Element = 0x???? : 517.284 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 501.235 -ReadData INFO Element = 0x???? : 517.284 -ReadData INFO Element = 0x???? : 510.865 -ReadData INFO Hit x = 501.235 y = 97.655 z = -273.328 detector = DummyHitDetector -ReadData INFO Hit x = 504.445 y = 91.9761 z = -405.268 detector = DummyHitDetector -ReadData INFO Hit x = 507.655 y = 86.2972 z = -429.765 detector = DummyHitDetector -ReadData INFO Hit x = 510.865 y = 80.6183 z = -440.086 detector = DummyHitDetector -ReadData INFO Hit x = 514.075 y = 74.9394 z = -445.774 detector = DummyHitDetector -ReadData INFO Hit x = 517.284 y = 69.2605 z = -449.377 detector = DummyHitDetector -ReadData INFO Hit x = 520.495 y = 63.5816 z = -451.864 detector = DummyHitDetector -ReadData INFO Hit x = 523.705 y = 57.9027 z = -453.684 detector = DummyHitDetector -ReadData INFO Hit x = 526.914 y = 52.2238 z = -455.073 detector = DummyHitDetector -ReadData INFO Hit x = 530.125 y = 46.5449 z = -456.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 56 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #6, run #1 56 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 6 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 620.127 eta = -11.8468 phi = 90.5269 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 601.235 -ReadData INFO ElementLink2 = 630.125 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 601.235 -ReadData INFO Element = 0x???? : 604.445 -ReadData INFO Element = 0x???? : 610.865 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 601.235 -ReadData INFO Element = 0x???? : 617.284 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 601.235 -ReadData INFO Element = 0x???? : 617.284 -ReadData INFO Element = 0x???? : 610.865 -ReadData INFO Hit x = 601.235 y = 97.655 z = -373.328 detector = DummyHitDetector -ReadData INFO Hit x = 604.445 y = 91.9761 z = -505.268 detector = DummyHitDetector -ReadData INFO Hit x = 607.654 y = 86.2972 z = -529.765 detector = DummyHitDetector -ReadData INFO Hit x = 610.865 y = 80.6183 z = -540.086 detector = DummyHitDetector -ReadData INFO Hit x = 614.075 y = 74.9394 z = -545.774 detector = DummyHitDetector -ReadData INFO Hit x = 617.284 y = 69.2605 z = -549.377 detector = DummyHitDetector -ReadData INFO Hit x = 620.495 y = 63.5816 z = -551.864 detector = DummyHitDetector -ReadData INFO Hit x = 623.705 y = 57.9027 z = -553.684 detector = DummyHitDetector -ReadData INFO Hit x = 626.914 y = 52.2238 z = -555.073 detector = DummyHitDetector -ReadData INFO Hit x = 630.125 y = 46.5449 z = -556.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 57 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000007]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000007]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000007] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #7, run #1 57 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 7 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 719.507 eta = -11.5247 phi = 105.179 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 701.235 -ReadData INFO ElementLink2 = 730.125 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 701.235 -ReadData INFO Element = 0x???? : 704.445 -ReadData INFO Element = 0x???? : 710.865 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 701.235 -ReadData INFO Element = 0x???? : 717.284 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 701.235 -ReadData INFO Element = 0x???? : 717.284 -ReadData INFO Element = 0x???? : 710.865 -ReadData INFO Hit x = 701.235 y = 97.655 z = -473.328 detector = DummyHitDetector -ReadData INFO Hit x = 704.445 y = 91.9761 z = -605.268 detector = DummyHitDetector -ReadData INFO Hit x = 707.654 y = 86.2972 z = -629.765 detector = DummyHitDetector -ReadData INFO Hit x = 710.865 y = 80.6183 z = -640.086 detector = DummyHitDetector -ReadData INFO Hit x = 714.075 y = 74.9394 z = -645.774 detector = DummyHitDetector -ReadData INFO Hit x = 717.284 y = 69.2605 z = -649.377 detector = DummyHitDetector -ReadData INFO Hit x = 720.495 y = 63.5816 z = -651.864 detector = DummyHitDetector -ReadData INFO Hit x = 723.705 y = 57.9027 z = -653.684 detector = DummyHitDetector -ReadData INFO Hit x = 726.914 y = 52.2238 z = -655.073 detector = DummyHitDetector -ReadData INFO Hit x = 730.125 y = 46.5449 z = -656.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 58 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000008]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000008]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000008] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #8, run #1 58 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 8 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 819.038 eta = -11.2998 phi = 119.831 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 801.235 -ReadData INFO ElementLink2 = 830.125 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 801.235 -ReadData INFO Element = 0x???? : 804.445 -ReadData INFO Element = 0x???? : 810.865 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 801.235 -ReadData INFO Element = 0x???? : 817.284 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 801.235 -ReadData INFO Element = 0x???? : 817.284 -ReadData INFO Element = 0x???? : 810.865 -ReadData INFO Hit x = 801.235 y = 97.655 z = -573.328 detector = DummyHitDetector -ReadData INFO Hit x = 804.445 y = 91.9761 z = -705.268 detector = DummyHitDetector -ReadData INFO Hit x = 807.654 y = 86.2972 z = -729.765 detector = DummyHitDetector -ReadData INFO Hit x = 810.865 y = 80.6183 z = -740.086 detector = DummyHitDetector -ReadData INFO Hit x = 814.075 y = 74.9394 z = -745.774 detector = DummyHitDetector -ReadData INFO Hit x = 817.284 y = 69.2605 z = -749.377 detector = DummyHitDetector -ReadData INFO Hit x = 820.495 y = 63.5816 z = -751.864 detector = DummyHitDetector -ReadData INFO Hit x = 823.705 y = 57.9027 z = -753.684 detector = DummyHitDetector -ReadData INFO Hit x = 826.914 y = 52.2238 z = -755.073 detector = DummyHitDetector -ReadData INFO Hit x = 830.125 y = 46.5449 z = -756.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 59 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000009]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000009]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000009] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #9, run #1 59 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 9 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 918.671 eta = -11.1334 phi = 134.482 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 901.235 -ReadData INFO ElementLink2 = 930.125 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 901.235 -ReadData INFO Element = 0x???? : 904.445 -ReadData INFO Element = 0x???? : 910.865 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 901.235 -ReadData INFO Element = 0x???? : 917.284 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 901.235 -ReadData INFO Element = 0x???? : 917.284 -ReadData INFO Element = 0x???? : 910.865 -ReadData INFO Hit x = 901.235 y = 97.655 z = -673.328 detector = DummyHitDetector -ReadData INFO Hit x = 904.445 y = 91.9761 z = -805.268 detector = DummyHitDetector -ReadData INFO Hit x = 907.654 y = 86.2972 z = -829.765 detector = DummyHitDetector -ReadData INFO Hit x = 910.865 y = 80.6183 z = -840.086 detector = DummyHitDetector -ReadData INFO Hit x = 914.075 y = 74.9394 z = -845.774 detector = DummyHitDetector -ReadData INFO Hit x = 917.284 y = 69.2605 z = -849.377 detector = DummyHitDetector -ReadData INFO Hit x = 920.495 y = 63.5816 z = -851.864 detector = DummyHitDetector -ReadData INFO Hit x = 923.705 y = 57.9027 z = -853.684 detector = DummyHitDetector -ReadData INFO Hit x = 926.914 y = 52.2238 z = -855.073 detector = DummyHitDetector -ReadData INFO Hit x = 930.125 y = 46.5449 z = -856.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 60 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #10, run #1 60 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 10 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 1001.23 -ReadData INFO ElementLink2 = 1030.12 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1001.23 -ReadData INFO Element = 0x???? : 1004.44 -ReadData INFO Element = 0x???? : 1010.86 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1001.23 -ReadData INFO Element = 0x???? : 1017.28 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1001.23 -ReadData INFO Element = 0x???? : 1017.28 -ReadData INFO Element = 0x???? : 1010.86 -ReadData INFO Hit x = 1001.23 y = 97.655 z = -773.328 detector = DummyHitDetector -ReadData INFO Hit x = 1004.44 y = 91.9761 z = -905.268 detector = DummyHitDetector -ReadData INFO Hit x = 1007.65 y = 86.2972 z = -929.765 detector = DummyHitDetector -ReadData INFO Hit x = 1010.86 y = 80.6183 z = -940.086 detector = DummyHitDetector -ReadData INFO Hit x = 1014.07 y = 74.9394 z = -945.774 detector = DummyHitDetector -ReadData INFO Hit x = 1017.28 y = 69.2605 z = -949.377 detector = DummyHitDetector -ReadData INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = DummyHitDetector -ReadData INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector -ReadData INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector -ReadData INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 61 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #11, run #1 61 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 11 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1118.13 eta = -10.9031 phi = 163.786 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 1101.23 -ReadData INFO ElementLink2 = 1130.12 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1101.23 -ReadData INFO Element = 0x???? : 1104.44 -ReadData INFO Element = 0x???? : 1110.86 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1101.23 -ReadData INFO Element = 0x???? : 1117.28 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1101.23 -ReadData INFO Element = 0x???? : 1117.28 -ReadData INFO Element = 0x???? : 1110.86 -ReadData INFO Hit x = 1101.23 y = 97.655 z = -873.328 detector = DummyHitDetector -ReadData INFO Hit x = 1104.44 y = 91.9761 z = -1005.27 detector = DummyHitDetector -ReadData INFO Hit x = 1107.65 y = 86.2972 z = -1029.77 detector = DummyHitDetector -ReadData INFO Hit x = 1110.86 y = 80.6183 z = -1040.09 detector = DummyHitDetector -ReadData INFO Hit x = 1114.07 y = 74.9394 z = -1045.77 detector = DummyHitDetector -ReadData INFO Hit x = 1117.28 y = 69.2605 z = -1049.38 detector = DummyHitDetector -ReadData INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = DummyHitDetector -ReadData INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector -ReadData INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector -ReadData INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 62 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #12, run #1 62 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 12 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1217.93 eta = -10.82 phi = 178.438 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 1201.23 -ReadData INFO ElementLink2 = 1230.12 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1201.23 -ReadData INFO Element = 0x???? : 1204.44 -ReadData INFO Element = 0x???? : 1210.86 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1201.23 -ReadData INFO Element = 0x???? : 1217.28 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1201.23 -ReadData INFO Element = 0x???? : 1217.28 -ReadData INFO Element = 0x???? : 1210.86 -ReadData INFO Hit x = 1201.23 y = 97.655 z = -973.328 detector = DummyHitDetector -ReadData INFO Hit x = 1204.44 y = 91.9761 z = -1105.27 detector = DummyHitDetector -ReadData INFO Hit x = 1207.65 y = 86.2972 z = -1129.77 detector = DummyHitDetector -ReadData INFO Hit x = 1210.86 y = 80.6183 z = -1140.09 detector = DummyHitDetector -ReadData INFO Hit x = 1214.07 y = 74.9394 z = -1145.77 detector = DummyHitDetector -ReadData INFO Hit x = 1217.28 y = 69.2605 z = -1149.38 detector = DummyHitDetector -ReadData INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = DummyHitDetector -ReadData INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector -ReadData INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector -ReadData INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 63 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #13, run #1 63 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 13 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1317.76 eta = -10.751 phi = 193.09 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 1301.23 -ReadData INFO ElementLink2 = 1330.12 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1301.23 -ReadData INFO Element = 0x???? : 1304.44 -ReadData INFO Element = 0x???? : 1310.86 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1301.23 -ReadData INFO Element = 0x???? : 1317.28 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1301.23 -ReadData INFO Element = 0x???? : 1317.28 -ReadData INFO Element = 0x???? : 1310.86 -ReadData INFO Hit x = 1301.23 y = 97.655 z = -1073.33 detector = DummyHitDetector -ReadData INFO Hit x = 1304.44 y = 91.9761 z = -1205.27 detector = DummyHitDetector -ReadData INFO Hit x = 1307.65 y = 86.2972 z = -1229.77 detector = DummyHitDetector -ReadData INFO Hit x = 1310.86 y = 80.6183 z = -1240.09 detector = DummyHitDetector -ReadData INFO Hit x = 1314.07 y = 74.9394 z = -1245.77 detector = DummyHitDetector -ReadData INFO Hit x = 1317.28 y = 69.2605 z = -1249.38 detector = DummyHitDetector -ReadData INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = DummyHitDetector -ReadData INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector -ReadData INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector -ReadData INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 64 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #14, run #1 64 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 14 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1417.61 eta = -10.6927 phi = 207.741 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 1401.23 -ReadData INFO ElementLink2 = 1430.12 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1401.23 -ReadData INFO Element = 0x???? : 1404.44 -ReadData INFO Element = 0x???? : 1410.86 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1401.23 -ReadData INFO Element = 0x???? : 1417.28 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1401.23 -ReadData INFO Element = 0x???? : 1417.28 -ReadData INFO Element = 0x???? : 1410.86 -ReadData INFO Hit x = 1401.23 y = 97.655 z = -1173.33 detector = DummyHitDetector -ReadData INFO Hit x = 1404.44 y = 91.9761 z = -1305.27 detector = DummyHitDetector -ReadData INFO Hit x = 1407.65 y = 86.2972 z = -1329.77 detector = DummyHitDetector -ReadData INFO Hit x = 1410.86 y = 80.6183 z = -1340.09 detector = DummyHitDetector -ReadData INFO Hit x = 1414.07 y = 74.9394 z = -1345.77 detector = DummyHitDetector -ReadData INFO Hit x = 1417.28 y = 69.2605 z = -1349.38 detector = DummyHitDetector -ReadData INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = DummyHitDetector -ReadData INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector -ReadData INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector -ReadData INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 65 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #15, run #1 65 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 15 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1517.49 eta = -10.6429 phi = 222.393 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 1501.23 -ReadData INFO ElementLink2 = 1530.12 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1501.23 -ReadData INFO Element = 0x???? : 1504.44 -ReadData INFO Element = 0x???? : 1510.86 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1501.23 -ReadData INFO Element = 0x???? : 1517.28 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1501.23 -ReadData INFO Element = 0x???? : 1517.28 -ReadData INFO Element = 0x???? : 1510.86 -ReadData INFO Hit x = 1501.23 y = 97.655 z = -1273.33 detector = DummyHitDetector -ReadData INFO Hit x = 1504.44 y = 91.9761 z = -1405.27 detector = DummyHitDetector -ReadData INFO Hit x = 1507.65 y = 86.2972 z = -1429.77 detector = DummyHitDetector -ReadData INFO Hit x = 1510.86 y = 80.6183 z = -1440.09 detector = DummyHitDetector -ReadData INFO Hit x = 1514.07 y = 74.9394 z = -1445.77 detector = DummyHitDetector -ReadData INFO Hit x = 1517.28 y = 69.2605 z = -1449.38 detector = DummyHitDetector -ReadData INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = DummyHitDetector -ReadData INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector -ReadData INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector -ReadData INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 66 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #16, run #1 66 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 16 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1617.37 eta = -10.5997 phi = 237.045 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 1601.23 -ReadData INFO ElementLink2 = 1630.12 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1601.23 -ReadData INFO Element = 0x???? : 1604.44 -ReadData INFO Element = 0x???? : 1610.86 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1601.23 -ReadData INFO Element = 0x???? : 1617.28 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1601.23 -ReadData INFO Element = 0x???? : 1617.28 -ReadData INFO Element = 0x???? : 1610.86 -ReadData INFO Hit x = 1601.23 y = 97.655 z = -1373.33 detector = DummyHitDetector -ReadData INFO Hit x = 1604.44 y = 91.9761 z = -1505.27 detector = DummyHitDetector -ReadData INFO Hit x = 1607.65 y = 86.2972 z = -1529.77 detector = DummyHitDetector -ReadData INFO Hit x = 1610.86 y = 80.6183 z = -1540.09 detector = DummyHitDetector -ReadData INFO Hit x = 1614.07 y = 74.9394 z = -1545.77 detector = DummyHitDetector -ReadData INFO Hit x = 1617.28 y = 69.2605 z = -1549.38 detector = DummyHitDetector -ReadData INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = DummyHitDetector -ReadData INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector -ReadData INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector -ReadData INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 67 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #17, run #1 67 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 17 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1717.27 eta = -10.562 phi = 251.697 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 1701.23 -ReadData INFO ElementLink2 = 1730.12 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1701.23 -ReadData INFO Element = 0x???? : 1704.44 -ReadData INFO Element = 0x???? : 1710.86 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1701.23 -ReadData INFO Element = 0x???? : 1717.28 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1701.23 -ReadData INFO Element = 0x???? : 1717.28 -ReadData INFO Element = 0x???? : 1710.86 -ReadData INFO Hit x = 1701.23 y = 97.655 z = -1473.33 detector = DummyHitDetector -ReadData INFO Hit x = 1704.44 y = 91.9761 z = -1605.27 detector = DummyHitDetector -ReadData INFO Hit x = 1707.65 y = 86.2972 z = -1629.77 detector = DummyHitDetector -ReadData INFO Hit x = 1710.86 y = 80.6183 z = -1640.09 detector = DummyHitDetector -ReadData INFO Hit x = 1714.07 y = 74.9394 z = -1645.77 detector = DummyHitDetector -ReadData INFO Hit x = 1717.28 y = 69.2605 z = -1649.38 detector = DummyHitDetector -ReadData INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = DummyHitDetector -ReadData INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector -ReadData INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector -ReadData INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 68 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #18, run #1 68 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 18 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1817.19 eta = -10.5288 phi = 266.349 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 1801.23 -ReadData INFO ElementLink2 = 1830.12 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1801.23 -ReadData INFO Element = 0x???? : 1804.44 -ReadData INFO Element = 0x???? : 1810.86 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1801.23 -ReadData INFO Element = 0x???? : 1817.28 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1801.23 -ReadData INFO Element = 0x???? : 1817.28 -ReadData INFO Element = 0x???? : 1810.86 -ReadData INFO Hit x = 1801.23 y = 97.655 z = -1573.33 detector = DummyHitDetector -ReadData INFO Hit x = 1804.44 y = 91.9761 z = -1705.27 detector = DummyHitDetector -ReadData INFO Hit x = 1807.65 y = 86.2972 z = -1729.77 detector = DummyHitDetector -ReadData INFO Hit x = 1810.86 y = 80.6183 z = -1740.09 detector = DummyHitDetector -ReadData INFO Hit x = 1814.07 y = 74.9394 z = -1745.77 detector = DummyHitDetector -ReadData INFO Hit x = 1817.28 y = 69.2605 z = -1749.38 detector = DummyHitDetector -ReadData INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = DummyHitDetector -ReadData INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector -ReadData INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector -ReadData INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 69 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #19, run #1 69 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 19 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1917.11 eta = -10.4993 phi = 281 detector = Track made in: DummyHitDetector -AthenaPoolAddre... DEBUG Found Address: 0x???? -ReadData INFO ElementLink1 = 1901.23 -ReadData INFO ElementLink2 = 1930.12 -ReadData INFO Link ElementLinkVector = 3 -ReadData INFO Element = 0x???? : 1901.23 -ReadData INFO Element = 0x???? : 1904.44 -ReadData INFO Element = 0x???? : 1910.86 -ReadData INFO Link Navigable = 2 -ReadData INFO Element = 0x???? : 1901.23 -ReadData INFO Element = 0x???? : 1917.28 -ReadData INFO Link Weighted Navigable = 3 -ReadData INFO Element = 0x???? : 1901.23 -ReadData INFO Element = 0x???? : 1917.28 -ReadData INFO Element = 0x???? : 1910.86 -ReadData INFO Hit x = 1901.23 y = 97.655 z = -1673.33 detector = DummyHitDetector -ReadData INFO Hit x = 1904.44 y = 91.9761 z = -1805.27 detector = DummyHitDetector -ReadData INFO Hit x = 1907.65 y = 86.2972 z = -1829.77 detector = DummyHitDetector -ReadData INFO Hit x = 1910.86 y = 80.6183 z = -1840.09 detector = DummyHitDetector -ReadData INFO Hit x = 1914.07 y = 74.9394 z = -1845.77 detector = DummyHitDetector -ReadData INFO Hit x = 1917.28 y = 69.2605 z = -1849.38 detector = DummyHitDetector -ReadData INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = DummyHitDetector -ReadData INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector -ReadData INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector -ReadData INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18966 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 -AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 70 events processed so far <<<=== -MetaDataSvc DEBUG handle() EndInputFile for FID:???? -EventSelector INFO Disconnecting input sourceID: ???? -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -MetaDataSvc DEBUG handle() LastInputFile for end -AthenaEventLoopMgr INFO No more events in event selection -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -ApplicationMgr INFO Application Manager Stopped successfully -IncidentProcAlg1 INFO Finalize -ReadData INFO in finalize() -IncidentProcAlg2 INFO Finalize -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -*****Chrono***** INFO **************************************************************************************************** -*****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) -*****Chrono***** INFO **************************************************************************************************** -cObjR_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max= 0.11(+- 1.04)/ 0/ 10 [ms] #=272 -cObj_ALL INFO Time User : Tot= 70 [ms] Ave/Min/Max=0.317(+- 2.21)/ 0/ 20 [ms] #=221 -ChronoStatSvc INFO Time User : Tot= 0.9 [s] #= 1 -*****Chrono***** INFO **************************************************************************************************** -ChronoStatSvc.f... INFO Service finalized successfully -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -Athena INFO leaving with code 0: "successful run" diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref index 7dfe8a69e41aaaa5bd9831d5fecaf536f25c3589..9d981c2841f22ceb545527ea025a8f984dbee0ed 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref @@ -1,19 +1,19 @@ -Mon Oct 22 10:37:02 CDT 2018 +Fri Oct 19 21:29:44 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5377 configurables from 18 genConfDb files +Py:ConfigurableDb INFO Read module info for 5521 configurables from 57 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Mon Oct 22 10:37:12 2018 + running on lxplus060.cern.ch on Fri Oct 19 21:30:02 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -35,19 +35,15 @@ PoolSvc DEBUG Property update for OutputLevel : new value = 2 PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-19T2309/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-18T2340/Athena/22.0.1/InstallArea/x86_64-slc6-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus060.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc INFO POOL WriteCatalog is file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -167,12 +163,6 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 AthenaPoolAddre... DEBUG Service base class initialized successfully ReadData DEBUG input handles: 2 @@ -241,9 +231,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool MetaDataSvc DEBUG handle() EndInputFile for eventless EmptyPoolFile.root Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] @@ -328,10 +316,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector INFO skipping event 1 EventSelector INFO skipping event 2 EventSelector INFO skipping event 3 @@ -395,7 +380,7 @@ ReadData INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du ReadData INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector ReadData INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector ReadData INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19699 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19695 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 1 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -428,7 +413,7 @@ ReadData INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du ReadData INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector ReadData INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector ReadData INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19699 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19695 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 2 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -461,7 +446,7 @@ ReadData INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du ReadData INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector ReadData INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector ReadData INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19699 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19695 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 3 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -494,7 +479,7 @@ ReadData INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du ReadData INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector ReadData INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector ReadData INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19699 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19695 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 4 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -527,7 +512,7 @@ ReadData INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du ReadData INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector ReadData INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector ReadData INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19699 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19695 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 5 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -560,7 +545,7 @@ ReadData INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du ReadData INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector ReadData INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector ReadData INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19699 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19695 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 6 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -593,7 +578,7 @@ ReadData INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du ReadData INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector ReadData INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector ReadData INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19699 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19695 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 7 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -626,7 +611,7 @@ ReadData INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du ReadData INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector ReadData INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector ReadData INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19699 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19695 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 8 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -659,7 +644,7 @@ ReadData INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du ReadData INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector ReadData INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector ReadData INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19699 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19695 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 9 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -692,7 +677,7 @@ ReadData INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du ReadData INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector ReadData INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector ReadData INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19699 +PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 19695 PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 10 events processed so far <<<=== Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? @@ -755,10 +740,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool MetaDataSvc DEBUG handle() EndInputFile for eventless EmptyPoolFile.root Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] @@ -848,10 +830,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile2.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile2.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 3 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]. @@ -902,7 +881,7 @@ ReadData INFO EventInfo event: 0 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 11 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -930,7 +909,7 @@ ReadData INFO EventInfo event: 1 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 12 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -958,7 +937,7 @@ ReadData INFO EventInfo event: 2 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 13 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -986,7 +965,7 @@ ReadData INFO EventInfo event: 3 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 14 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1014,7 +993,7 @@ ReadData INFO EventInfo event: 4 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 15 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1042,7 +1021,7 @@ ReadData INFO EventInfo event: 5 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 16 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1070,7 +1049,7 @@ ReadData INFO EventInfo event: 6 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 17 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1098,7 +1077,7 @@ ReadData INFO EventInfo event: 7 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 18 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1126,7 +1105,7 @@ ReadData INFO EventInfo event: 8 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 19 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1154,7 +1133,7 @@ ReadData INFO EventInfo event: 9 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 20 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1182,7 +1161,7 @@ ReadData INFO EventInfo event: 10 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 21 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1210,7 +1189,7 @@ ReadData INFO EventInfo event: 11 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 22 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1238,7 +1217,7 @@ ReadData INFO EventInfo event: 12 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 23 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1266,7 +1245,7 @@ ReadData INFO EventInfo event: 13 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 24 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1294,7 +1273,7 @@ ReadData INFO EventInfo event: 14 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 25 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1322,7 +1301,7 @@ ReadData INFO EventInfo event: 15 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 26 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1350,7 +1329,7 @@ ReadData INFO EventInfo event: 16 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 27 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1378,7 +1357,7 @@ ReadData INFO EventInfo event: 17 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 28 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1406,7 +1385,7 @@ ReadData INFO EventInfo event: 18 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 29 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1434,7 +1413,7 @@ ReadData INFO EventInfo event: 19 run: 1 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18816 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18817 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 22 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 30 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1463,7 +1442,7 @@ ReadData INFO EventInfo event: 20 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #2 31 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1491,7 +1470,7 @@ ReadData INFO EventInfo event: 21 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #21, run #2 32 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1519,7 +1498,7 @@ ReadData INFO EventInfo event: 22 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #22, run #2 33 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1547,7 +1526,7 @@ ReadData INFO EventInfo event: 23 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #23, run #2 34 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1575,7 +1554,7 @@ ReadData INFO EventInfo event: 24 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #24, run #2 35 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1603,7 +1582,7 @@ ReadData INFO EventInfo event: 25 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #25, run #2 36 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1631,7 +1610,7 @@ ReadData INFO EventInfo event: 26 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #26, run #2 37 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1659,7 +1638,7 @@ ReadData INFO EventInfo event: 27 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #27, run #2 38 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1687,7 +1666,7 @@ ReadData INFO EventInfo event: 28 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #28, run #2 39 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1715,7 +1694,7 @@ ReadData INFO EventInfo event: 29 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #29, run #2 40 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1743,7 +1722,7 @@ ReadData INFO EventInfo event: 30 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #30, run #2 41 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1771,7 +1750,7 @@ ReadData INFO EventInfo event: 31 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #31, run #2 42 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1799,7 +1778,7 @@ ReadData INFO EventInfo event: 32 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #32, run #2 43 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1827,7 +1806,7 @@ ReadData INFO EventInfo event: 33 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #33, run #2 44 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1855,7 +1834,7 @@ ReadData INFO EventInfo event: 34 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #34, run #2 45 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1883,7 +1862,7 @@ ReadData INFO EventInfo event: 35 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #35, run #2 46 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1911,7 +1890,7 @@ ReadData INFO EventInfo event: 36 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #36, run #2 47 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1939,7 +1918,7 @@ ReadData INFO EventInfo event: 37 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #37, run #2 48 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1967,7 +1946,7 @@ ReadData INFO EventInfo event: 38 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #38, run #2 49 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -1995,7 +1974,7 @@ ReadData INFO EventInfo event: 39 run: 2 ReadData INFO Get Smart data ptr 1 ReadData INFO Could not find ExampleTrackContainer/MyTracks ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19203 +PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 19204 PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 23 AthenaEventLoopMgr INFO ===>>> done processing event #39, run #2 50 events processed so far <<<=== MetaDataSvc DEBUG handle() EndInputFile for FID:???? @@ -2082,10 +2061,7 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile3.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile3.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 0 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. @@ -2130,7 +2106,7 @@ ReadData INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 51 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2156,7 +2132,7 @@ ReadData INFO Track pt = 137.584 eta = -39.525 phi = 17.2679 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 52 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2182,7 +2158,7 @@ ReadData INFO Track pt = 228.154 eta = -6.2704 phi = 31.9197 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 53 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2208,7 +2184,7 @@ ReadData INFO Track pt = 324.306 eta = -15.8941 phi = 46.5715 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 54 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2234,7 +2210,7 @@ ReadData INFO Track pt = 422.255 eta = -13.279 phi = 61.2233 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 55 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2260,7 +2236,7 @@ ReadData INFO Track pt = 520.987 eta = -12.3511 phi = 75.8751 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 56 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2286,7 +2262,7 @@ ReadData INFO Track pt = 620.127 eta = -11.8468 phi = 90.5269 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 57 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2312,7 +2288,7 @@ ReadData INFO Track pt = 719.507 eta = -11.5247 phi = 105.179 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 58 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2338,7 +2314,7 @@ ReadData INFO Track pt = 819.038 eta = -11.2998 phi = 119.831 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 59 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2364,7 +2340,7 @@ ReadData INFO Track pt = 918.671 eta = -11.1334 phi = 134.482 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 60 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2390,7 +2366,7 @@ ReadData INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 61 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2416,7 +2392,7 @@ ReadData INFO Track pt = 1118.13 eta = -10.9031 phi = 163.786 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 62 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2442,7 +2418,7 @@ ReadData INFO Track pt = 1217.93 eta = -10.82 phi = 178.438 detector DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 63 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2468,7 +2444,7 @@ ReadData INFO Track pt = 1317.76 eta = -10.751 phi = 193.09 detector DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 64 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2494,7 +2470,7 @@ ReadData INFO Track pt = 1417.61 eta = -10.6927 phi = 207.741 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 65 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2520,7 +2496,7 @@ ReadData INFO Track pt = 1517.49 eta = -10.6429 phi = 222.393 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 66 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2546,7 +2522,7 @@ ReadData INFO Track pt = 1617.37 eta = -10.5997 phi = 237.045 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 67 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2572,7 +2548,7 @@ ReadData INFO Track pt = 1717.27 eta = -10.562 phi = 251.697 detecto DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 68 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2598,7 +2574,7 @@ ReadData INFO Track pt = 1817.19 eta = -10.5288 phi = 266.349 detect DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 69 events processed so far <<<=== EventSelector DEBUG Get AttributeList from the collection @@ -2624,7 +2600,7 @@ ReadData INFO Track pt = 1917.11 eta = -10.4993 phi = 281 detector = DataProxy WARNING accessData: IOA pointer not set ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18596 +PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18604 PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 21 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 70 events processed so far <<<=== Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? @@ -2633,6 +2609,7 @@ MetaDataSvc DEBUG handle() EndInputFile for FID:???? EventSelector INFO Disconnecting input sourceID: ???? MetaDataSvc DEBUG handle() LastInputFile for end AthenaEventLoopMgr INFO No more events in event selection +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool ApplicationMgr INFO Application Manager Stopped successfully IncidentProcAlg1 INFO Finalize ReadData INFO in finalize() @@ -2642,9 +2619,9 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -cObjR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #=124 -cObj_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.263(+- 1.6)/ 0/ 10 [ms] #=114 -ChronoStatSvc INFO Time User : Tot= 0.76 [s] #= 1 +cObjR_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.161(+- 1.26)/ 0/ 10 [ms] #=124 +cObj_ALL INFO Time User : Tot= 60 [ms] Ave/Min/Max=0.526(+- 2.91)/ 0/ 20 [ms] #=114 +ChronoStatSvc INFO Time User : Tot= 1.07 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadNoBN.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadNoBN.ref deleted file mode 100644 index fca15dc8446e8c2da5d2bd46b79abc66f27881dc..0000000000000000000000000000000000000000 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadNoBN.ref +++ /dev/null @@ -1,2590 +0,0 @@ -Thu Sep 6 17:03:52 CDT 2018 -Preloading tcmalloc_minimal.so -Athena INFO including file "AthenaCommon/Preparation.py" -Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" -Athena INFO executing ROOT6Setup -Athena INFO including file "AthenaCommon/Execution.py" -Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadNoBNJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5518 configurables from 19 genConfDb files -Py:ConfigurableDb INFO No duplicates have been found: that's good ! -Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 -ApplicationMgr SUCCESS -==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Thu Sep 6 17:04:03 2018 -==================================================================================================================================== -ApplicationMgr INFO Successfully loaded modules : AthenaServices -ApplicationMgr INFO Application Manager Configured successfully -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 -StatusCodeSvc INFO initialize -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 2918 CLIDRegistry entries for module ALL -CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) -AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 -ClassIDSvc INFO getRegistryEntries: read 916 CLIDRegistry entries for module ALL -ReadData DEBUG Property update for OutputLevel : new value = 2 -ReadData INFO in initialize() -MetaDataSvc DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 -MetaDataSvc DEBUG Service base class initialized successfully -AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00 -PoolSvc DEBUG Property update for OutputLevel : new value = 2 -PoolSvc DEBUG Service base class initialized successfully -PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled -PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-09-04T2107/Athena/22.0.1/InstallArea/x86_64-centos7-gcc62-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] -PoolSvc INFO Successfully setup replica sorting algorithm -PoolSvc DEBUG OutputLevel is -PoolSvc INFO Setting up APR FileCatalog and Streams -PoolSvc INFO POOL WriteCatalog is file:Catalog1.xml -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) -EventSelector DEBUG Property update for OutputLevel : new value = 2 -EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 -EventSelector DEBUG Service base class initialized successfully -IoComponentMgr INFO IoComponent EventSelector has already had file EmptyPoolFile.root registered with i/o mode READ -EventSelector INFO reinitialization... -EventSelector INFO EventSelection with query -EventSelector DEBUG Try item: "EmptyPoolFile.root" from the collection list. -PersistencySvc:... DEBUG lookupPFN: EmptyPoolFile.root returned FID: '????' tech=ROOT_All -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO EmptyPoolFile.root -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 3 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream3) [202] (3 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (4 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (5 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 4 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Param:FID=[????] -EmptyPoolFile.root DEBUG --->Reading Param:PFN=[EmptyPoolFile.root] -EmptyPoolFile.root DEBUG --->Reading Param:POOL_VSN=[1.1] -EmptyPoolFile.root DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -PoolSvc INFO Failed to find container POOLContainer(DataHeader) to create POOL collection. -PoolSvc INFO Failed to find container POOLContainer_DataHeader to create POOL collection. -EventSelector DEBUG No events found in: EmptyPoolFile.root skipped!!! -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -EventSelector DEBUG Try item: "SimplePoolFile1.root" from the collection list. -MetaDataSvc DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc DEBUG initInputMetaDataStore: file name FID:???? -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO SimplePoolFile1.root -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -SimplePoolFile1... DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[3 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[4 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[5 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1 -SimplePoolFile1... DEBUG --->Reading Shape[6 , ????]: [1 Column(s)] -SimplePoolFile1... DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 7 Entries in total. -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -SimplePoolFile1... DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202] (3 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/CollectionTree(ExampleHitContainer_p1/MyHits) [202] (4 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202] (5 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202] (6 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(Token) [202] (7 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(RunNumber) [202] (8 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber) [202] (9 , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202] (a , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202] (b , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (c , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -SimplePoolFile1... DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (d , ffffffff) -SimplePoolFile1... DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 12 Entries in total. -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -SimplePoolFile1... DEBUG --->Reading Param:FID=[????] -SimplePoolFile1... DEBUG --->Reading Param:PFN=[SimplePoolFile1.root] -SimplePoolFile1... DEBUG --->Reading Param:POOL_VSN=[1.1] -SimplePoolFile1... DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdr(DataHeader) -MetaDataHdr(Dat... DEBUG Opening -MetaDataHdr(Dat... DEBUG attributes# = 1 -MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' -MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -ClassIDSvc INFO getRegistryEntries: read 1964 CLIDRegistry entries for module ALL -EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) -MetaDataHdrForm... DEBUG Opening -MetaDataHdrForm... DEBUG attributes# = 1 -MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' -MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data -AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 -AthenaPoolAddre... DEBUG Service base class initialized successfully -ReadData DEBUG input handles: 2 -ReadData DEBUG output handles: 0 -ReadData DEBUG Data Deps for ReadData - + INPUT ( 'ExampleHitContainer' , 'StoreGateSvc+MyHits' ) - + INPUT ( 'ExampleTrackContainer' , 'StoreGateSvc+MyTracks' ) -HistogramPersis...WARNING Histograms saving not required. -AthenaEventLoopMgr INFO Setup EventSelector service EventSelector -ApplicationMgr INFO Application Manager Initialized successfully -EventSelector DEBUG Try item: "EmptyPoolFile.root" from the collection list. -PersistencySvc:... DEBUG lookupPFN: EmptyPoolFile.root returned FID: '????' tech=ROOT_All -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO EmptyPoolFile.root -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 3 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream3) [202] (3 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (4 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (5 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 4 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Param:FID=[????] -EmptyPoolFile.root DEBUG --->Reading Param:PFN=[EmptyPoolFile.root] -EmptyPoolFile.root DEBUG --->Reading Param:POOL_VSN=[1.1] -EmptyPoolFile.root DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -PoolSvc INFO Failed to find container POOLContainer(DataHeader) to create POOL collection. -PoolSvc INFO Failed to find container POOLContainer_DataHeader to create POOL collection. -EventSelector DEBUG No events found in: EmptyPoolFile.root skipped!!! -MetaDataSvc DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc DEBUG initInputMetaDataStore: file name EmptyPoolFile.root -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdr(DataHeader) -MetaDataHdr(Dat... DEBUG Opening -MetaDataHdr(Dat... DEBUG attributes# = 1 -MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' -MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -ClassIDSvc INFO getRegistryEntries: read 2 CLIDRegistry entries for module ALL -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) -MetaDataHdrForm... DEBUG Opening -MetaDataHdrForm... DEBUG attributes# = 1 -MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' -MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData -MetaDataSvc DEBUG handle() EndInputFile for eventless EmptyPoolFile.root -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -EventSelector DEBUG Try item: "SimplePoolFile1.root" from the collection list. -ApplicationMgr INFO Application Manager Started successfully -RootDatabase.se... DEBUG TREE_CACHE_LEARN_EVENTS = 6 -RootDatabase.se... DEBUG Request tree cache -RootDatabase.se... DEBUG File name SimplePoolFile1.root -RootDatabase.se... DEBUG Got tree CollectionTree read entry -1 -RootDatabase.se... DEBUG Using Tree cache. Size: 100000 Nevents to learn with: 6 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [TREE_CACHE_LEARN_EVENTS]: 6 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [TREE_CACHE_SIZE]: 100000 -MetaDataSvc DEBUG handle() BeginInputFile for SimplePoolFile1.root -MetaDataSvc DEBUG initInputMetaDataStore: file name SimplePoolFile1.root -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data -EventSelector INFO skipping event 1 -EventSelector INFO skipping event 2 -EventSelector INFO skipping event 3 -EventSelector INFO skipping event 4 -EventSelector INFO skipping event 5 -EventSelector INFO skipping event 6 -EventSelector INFO skipping event 7 -EventSelector INFO skipping event 8 -EventSelector INFO skipping event 9 -EventSelector INFO skipping event 10 -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A] -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainer(DataHeader) -POOLContainer(D... DEBUG Opening -POOLContainer(D... DEBUG attributes# = 1 -POOLContainer(D... DEBUG Branch container 'DataHeader' -POOLContainer(D... DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainerForm(DataHeaderForm) -POOLContainerFo... DEBUG Opening -POOLContainerFo... DEBUG attributes# = 1 -POOLContainerFo... DEBUG Branch container 'DataHeaderForm' -POOLContainerFo... DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AlgResourcePool INFO TopAlg list empty. Recovering the one of Application Manager -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'EventInfo_p4_McEventInfo' -CollectionTree(... DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree -AthenaPoolConve... INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector -ClassIDSvc INFO getRegistryEntries: read 15 CLIDRegistry entries for module ALL -AthenaEventLoopMgr INFO ===>>> start of run 1 <<<=== -AthenaEventLoopMgr INFO ===>>> start processing event #10, run #1 0 events processed so far <<<=== -ReadData DEBUG in execute() -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1) -MetaData(EventS... DEBUG Opening -MetaData(EventS... DEBUG attributes# = 1 -MetaData(EventS... DEBUG Branch container 'EventStreamInfo_p3_Stream1' -MetaData(EventS... DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 10 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -SimplePoolFile1... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'ExampleHitContainer_p1_MyHits' -CollectionTree(... DEBUG Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree -ReadData INFO Hit x = 1001.23 y = 97.655 z = -773.328 detector = DummyHitDetector -ReadData INFO Hit x = 1004.44 y = 91.9761 z = -905.268 detector = DummyHitDetector -ReadData INFO Hit x = 1007.65 y = 86.2972 z = -929.765 detector = DummyHitDetector -ReadData INFO Hit x = 1010.86 y = 80.6183 z = -940.086 detector = DummyHitDetector -ReadData INFO Hit x = 1014.07 y = 74.9394 z = -945.774 detector = DummyHitDetector -ReadData INFO Hit x = 1017.28 y = 69.2605 z = -949.377 detector = DummyHitDetector -ReadData INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = DummyHitDetector -ReadData INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector -ReadData INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector -ReadData INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector -ClassIDSvc INFO getRegistryEntries: read 10 CLIDRegistry entries for module ALL -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20097 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 1 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #11, run #1 1 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 11 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1101.23 y = 97.655 z = -873.328 detector = DummyHitDetector -ReadData INFO Hit x = 1104.44 y = 91.9761 z = -1005.27 detector = DummyHitDetector -ReadData INFO Hit x = 1107.65 y = 86.2972 z = -1029.77 detector = DummyHitDetector -ReadData INFO Hit x = 1110.86 y = 80.6183 z = -1040.09 detector = DummyHitDetector -ReadData INFO Hit x = 1114.07 y = 74.9394 z = -1045.77 detector = DummyHitDetector -ReadData INFO Hit x = 1117.28 y = 69.2605 z = -1049.38 detector = DummyHitDetector -ReadData INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = DummyHitDetector -ReadData INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector -ReadData INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector -ReadData INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20097 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 2 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #12, run #1 2 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 12 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1201.23 y = 97.655 z = -973.328 detector = DummyHitDetector -ReadData INFO Hit x = 1204.44 y = 91.9761 z = -1105.27 detector = DummyHitDetector -ReadData INFO Hit x = 1207.65 y = 86.2972 z = -1129.77 detector = DummyHitDetector -ReadData INFO Hit x = 1210.86 y = 80.6183 z = -1140.09 detector = DummyHitDetector -ReadData INFO Hit x = 1214.07 y = 74.9394 z = -1145.77 detector = DummyHitDetector -ReadData INFO Hit x = 1217.28 y = 69.2605 z = -1149.38 detector = DummyHitDetector -ReadData INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = DummyHitDetector -ReadData INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector -ReadData INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector -ReadData INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20097 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 3 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #13, run #1 3 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 13 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1301.23 y = 97.655 z = -1073.33 detector = DummyHitDetector -ReadData INFO Hit x = 1304.44 y = 91.9761 z = -1205.27 detector = DummyHitDetector -ReadData INFO Hit x = 1307.65 y = 86.2972 z = -1229.77 detector = DummyHitDetector -ReadData INFO Hit x = 1310.86 y = 80.6183 z = -1240.09 detector = DummyHitDetector -ReadData INFO Hit x = 1314.07 y = 74.9394 z = -1245.77 detector = DummyHitDetector -ReadData INFO Hit x = 1317.28 y = 69.2605 z = -1249.38 detector = DummyHitDetector -ReadData INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = DummyHitDetector -ReadData INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector -ReadData INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector -ReadData INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20097 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 4 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #14, run #1 4 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 14 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1401.23 y = 97.655 z = -1173.33 detector = DummyHitDetector -ReadData INFO Hit x = 1404.44 y = 91.9761 z = -1305.27 detector = DummyHitDetector -ReadData INFO Hit x = 1407.65 y = 86.2972 z = -1329.77 detector = DummyHitDetector -ReadData INFO Hit x = 1410.86 y = 80.6183 z = -1340.09 detector = DummyHitDetector -ReadData INFO Hit x = 1414.07 y = 74.9394 z = -1345.77 detector = DummyHitDetector -ReadData INFO Hit x = 1417.28 y = 69.2605 z = -1349.38 detector = DummyHitDetector -ReadData INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = DummyHitDetector -ReadData INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector -ReadData INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector -ReadData INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20097 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 5 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #15, run #1 5 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 15 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1501.23 y = 97.655 z = -1273.33 detector = DummyHitDetector -ReadData INFO Hit x = 1504.44 y = 91.9761 z = -1405.27 detector = DummyHitDetector -ReadData INFO Hit x = 1507.65 y = 86.2972 z = -1429.77 detector = DummyHitDetector -ReadData INFO Hit x = 1510.86 y = 80.6183 z = -1440.09 detector = DummyHitDetector -ReadData INFO Hit x = 1514.07 y = 74.9394 z = -1445.77 detector = DummyHitDetector -ReadData INFO Hit x = 1517.28 y = 69.2605 z = -1449.38 detector = DummyHitDetector -ReadData INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = DummyHitDetector -ReadData INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector -ReadData INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector -ReadData INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20097 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 6 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #16, run #1 6 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 16 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1601.23 y = 97.655 z = -1373.33 detector = DummyHitDetector -ReadData INFO Hit x = 1604.44 y = 91.9761 z = -1505.27 detector = DummyHitDetector -ReadData INFO Hit x = 1607.65 y = 86.2972 z = -1529.77 detector = DummyHitDetector -ReadData INFO Hit x = 1610.86 y = 80.6183 z = -1540.09 detector = DummyHitDetector -ReadData INFO Hit x = 1614.07 y = 74.9394 z = -1545.77 detector = DummyHitDetector -ReadData INFO Hit x = 1617.28 y = 69.2605 z = -1549.38 detector = DummyHitDetector -ReadData INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = DummyHitDetector -ReadData INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector -ReadData INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector -ReadData INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20097 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 7 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #17, run #1 7 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 17 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1701.23 y = 97.655 z = -1473.33 detector = DummyHitDetector -ReadData INFO Hit x = 1704.44 y = 91.9761 z = -1605.27 detector = DummyHitDetector -ReadData INFO Hit x = 1707.65 y = 86.2972 z = -1629.77 detector = DummyHitDetector -ReadData INFO Hit x = 1710.86 y = 80.6183 z = -1640.09 detector = DummyHitDetector -ReadData INFO Hit x = 1714.07 y = 74.9394 z = -1645.77 detector = DummyHitDetector -ReadData INFO Hit x = 1717.28 y = 69.2605 z = -1649.38 detector = DummyHitDetector -ReadData INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = DummyHitDetector -ReadData INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector -ReadData INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector -ReadData INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20097 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 8 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #18, run #1 8 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 18 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1801.23 y = 97.655 z = -1573.33 detector = DummyHitDetector -ReadData INFO Hit x = 1804.44 y = 91.9761 z = -1705.27 detector = DummyHitDetector -ReadData INFO Hit x = 1807.65 y = 86.2972 z = -1729.77 detector = DummyHitDetector -ReadData INFO Hit x = 1810.86 y = 80.6183 z = -1740.09 detector = DummyHitDetector -ReadData INFO Hit x = 1814.07 y = 74.9394 z = -1745.77 detector = DummyHitDetector -ReadData INFO Hit x = 1817.28 y = 69.2605 z = -1749.38 detector = DummyHitDetector -ReadData INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = DummyHitDetector -ReadData INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector -ReadData INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector -ReadData INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20097 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 9 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits -AthenaEventLoopMgr INFO ===>>> start processing event #19, run #1 9 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9102, key = MyHits -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 19 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Hit x = 1901.23 y = 97.655 z = -1673.33 detector = DummyHitDetector -ReadData INFO Hit x = 1904.44 y = 91.9761 z = -1805.27 detector = DummyHitDetector -ReadData INFO Hit x = 1907.65 y = 86.2972 z = -1829.77 detector = DummyHitDetector -ReadData INFO Hit x = 1910.86 y = 80.6183 z = -1840.09 detector = DummyHitDetector -ReadData INFO Hit x = 1914.07 y = 74.9394 z = -1845.77 detector = DummyHitDetector -ReadData INFO Hit x = 1917.28 y = 69.2605 z = -1849.38 detector = DummyHitDetector -ReadData INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = DummyHitDetector -ReadData INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector -ReadData INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector -ReadData INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector -PoolSvc INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 20097 -PoolSvc INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 23 -AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 10 events processed so far <<<=== -MetaDataSvc DEBUG handle() EndInputFile for FID:???? -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -EventSelector DEBUG Try item: "EmptyPoolFile.root" from the collection list. -PersistencySvc:... DEBUG lookupPFN: EmptyPoolFile.root returned FID: '????' tech=ROOT_All -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO EmptyPoolFile.root -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -EmptyPoolFile.root DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -EmptyPoolFile.root DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 3 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream3) [202] (3 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (4 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -EmptyPoolFile.root DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (5 , ffffffff) -EmptyPoolFile.root DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 4 Entries in total. -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -EmptyPoolFile.root DEBUG --->Reading Param:FID=[????] -EmptyPoolFile.root DEBUG --->Reading Param:PFN=[EmptyPoolFile.root] -EmptyPoolFile.root DEBUG --->Reading Param:POOL_VSN=[1.1] -EmptyPoolFile.root DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -PoolSvc INFO Failed to find container POOLContainer(DataHeader) to create POOL collection. -PoolSvc INFO Failed to find container POOLContainer_DataHeader to create POOL collection. -EventSelector DEBUG No events found in: EmptyPoolFile.root skipped!!! -MetaDataSvc DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc DEBUG initInputMetaDataStore: file name EmptyPoolFile.root -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdr(DataHeader) -MetaDataHdr(Dat... DEBUG Opening -MetaDataHdr(Dat... DEBUG attributes# = 1 -MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' -MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -EmptyPoolFile.root DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) -MetaDataHdrForm... DEBUG Opening -MetaDataHdrForm... DEBUG attributes# = 1 -MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' -MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name EmptyPoolFile.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data -MetaDataSvc DEBUG handle() EndInputFile for eventless EmptyPoolFile.root -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -EventSelector DEBUG Try item: "SimplePoolFile2.root" from the collection list. -PersistencySvc:... DEBUG lookupPFN: SimplePoolFile2.root returned FID: '????' tech=ROOT_All -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO SimplePoolFile2.root -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -SimplePoolFile2... DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile2... DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile2... DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile2... DEBUG --->Reading Shape[3 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1 -SimplePoolFile2... DEBUG --->Reading Shape[4 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1 -SimplePoolFile2... DEBUG --->Reading Shape[5 , ????]: [1 Column(s)] -SimplePoolFile2... DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 6 Entries in total. -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -SimplePoolFile2... DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202] (3 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202] (4 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202] (5 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLCollectionTree(Token) [202] (6 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLCollectionTree(RunNumber) [202] (7 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber) [202] (8 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202] (9 , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202] (a , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (b , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (c , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -SimplePoolFile2... DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202] (d , ffffffff) -SimplePoolFile2... DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 12 Entries in total. -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -SimplePoolFile2... DEBUG --->Reading Param:FID=[????] -SimplePoolFile2... DEBUG --->Reading Param:PFN=[SimplePoolFile2.root] -SimplePoolFile2... DEBUG --->Reading Param:POOL_VSN=[1.1] -SimplePoolFile2... DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -RootDatabase.se... DEBUG TREE_CACHE_LEARN_EVENTS = 6 -RootDatabase.se... DEBUG Request tree cache -RootDatabase.se... DEBUG File name SimplePoolFile2.root -RootDatabase.se... DEBUG Got tree CollectionTree read entry -1 -RootDatabase.se... DEBUG Using Tree cache. Size: 100000 Nevents to learn with: 6 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [TREE_CACHE_LEARN_EVENTS]: 6 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [TREE_CACHE_SIZE]: 100000 -MetaDataSvc DEBUG handle() BeginInputFile for SimplePoolFile2.root -MetaDataSvc DEBUG initInputMetaDataStore: file name SimplePoolFile2.root -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdr(DataHeader) -MetaDataHdr(Dat... DEBUG Opening -MetaDataHdr(Dat... DEBUG attributes# = 1 -MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' -MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) -MetaDataHdrForm... DEBUG Opening -MetaDataHdrForm... DEBUG attributes# = 1 -MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' -MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile2.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile2.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000] -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainer(DataHeader) -POOLContainer(D... DEBUG Opening -POOLContainer(D... DEBUG attributes# = 1 -POOLContainer(D... DEBUG Branch container 'DataHeader' -POOLContainer(D... DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainerForm(DataHeaderForm) -POOLContainerFo... DEBUG Opening -POOLContainerFo... DEBUG attributes# = 1 -POOLContainerFo... DEBUG Branch container 'DataHeaderForm' -POOLContainerFo... DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'EventInfo_p4_McEventInfo' -CollectionTree(... DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree -AthenaEventLoopMgr INFO ===>>> start processing event #0, run #1 10 events processed so far <<<=== -ReadData DEBUG in execute() -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1) -MetaData(EventS... DEBUG Opening -MetaData(EventS... DEBUG attributes# = 1 -MetaData(EventS... DEBUG Branch container 'EventStreamInfo_p3_Stream1' -MetaData(EventS... DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -SimplePoolFile2... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream2) -MetaData(EventS... DEBUG Opening -MetaData(EventS... DEBUG attributes# = 1 -MetaData(EventS... DEBUG Branch container 'EventStreamInfo_p3_Stream2' -MetaData(EventS... DEBUG Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 0 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 11 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #1, run #1 11 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 1 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 12 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #2, run #1 12 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 2 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 13 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000003]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000003]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000003] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #3, run #1 13 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 3 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 14 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000004]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000004]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000004] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #4, run #1 14 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 4 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 15 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000005]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000005]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000005] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #5, run #1 15 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 5 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 16 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000006]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000006]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000006] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #6, run #1 16 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 6 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 17 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000007]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000007]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000007] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #7, run #1 17 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 7 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 18 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000008]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000008]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000008] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #8, run #1 18 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 8 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 19 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000009]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000009]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000009] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #9, run #1 19 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 9 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 20 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000A]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000A]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000A] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #10, run #1 20 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 10 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 21 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000B]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000B]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000B] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #11, run #1 21 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 11 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 22 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000C]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000C]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000C] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #12, run #1 22 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 12 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 23 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000D]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000D]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000D] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #13, run #1 23 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 13 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 24 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000E]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000E]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000E] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #14, run #1 24 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 14 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 25 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000F]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000F]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000F] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #15, run #1 25 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 15 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 26 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000010]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000010]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000010] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #16, run #1 26 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 16 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 27 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000011]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000011]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000011] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #17, run #1 27 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 17 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 28 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000012]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000012]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000012] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #18, run #1 28 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 18 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 29 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000013]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000013]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000013] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #19, run #1 29 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 19 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 18812 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 26 -AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 30 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000014]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000014]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000014] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start of run 2 <<<=== -AthenaEventLoopMgr INFO ===>>> start processing event #20, run #2 30 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 20 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #20, run #2 31 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000015]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000015]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000015] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #21, run #2 31 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 21 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #21, run #2 32 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000016]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000016]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000016] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #22, run #2 32 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 22 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #22, run #2 33 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000017]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000017]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000017] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #23, run #2 33 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 23 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #23, run #2 34 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000018]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000018]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000018] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #24, run #2 34 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 24 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #24, run #2 35 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000019]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000019]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000019] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #25, run #2 35 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 25 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #25, run #2 36 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001A]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001A]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001A] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #26, run #2 36 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 26 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #26, run #2 37 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001B]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001B]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001B] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #27, run #2 37 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 27 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #27, run #2 38 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001C]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001C]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001C] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #28, run #2 38 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 28 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #28, run #2 39 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001D]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001D]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001D] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #29, run #2 39 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 29 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #29, run #2 40 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001E]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001E]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001E] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #30, run #2 40 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 30 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #30, run #2 41 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001F]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001F]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000001F] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #31, run #2 41 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 31 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #31, run #2 42 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000020]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000020]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000020] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #32, run #2 42 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 32 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #32, run #2 43 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000021]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000021]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000021] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #33, run #2 43 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 33 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #33, run #2 44 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000022]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000022]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000022] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #34, run #2 44 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 34 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #34, run #2 45 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000023]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000023]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000023] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #35, run #2 45 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 35 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #35, run #2 46 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000024]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000024]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000024] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #36, run #2 46 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 36 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #36, run #2 47 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000025]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000025]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000025] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #37, run #2 47 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 37 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #37, run #2 48 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000026]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000026]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000026] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #38, run #2 48 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 38 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #38, run #2 49 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000027]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000027]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000027] -AthenaPoolAddre... DEBUG The current Event contains: 2 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaEventLoopMgr INFO ===>>> start processing event #39, run #2 49 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 39 run: 2 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Could not find ExampleTrackContainer/MyTracks -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 20438 -PoolSvc INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 30 -AthenaEventLoopMgr INFO ===>>> done processing event #39, run #2 50 events processed so far <<<=== -MetaDataSvc DEBUG handle() EndInputFile for FID:???? -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -EventSelector DEBUG Try item: "SimplePoolFile3.root" from the collection list. -PersistencySvc:... DEBUG lookupPFN: SimplePoolFile3.root returned FID: '????' tech=ROOT_All -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO SimplePoolFile3.root -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_All] ##Shapes -##Shapes DEBUG Opening -##Shapes DEBUG attributes# = 1 -##Shapes DEBUG Opened container ##Shapes of type ROOT_Tree -SimplePoolFile3... DEBUG --->Reading Shape[0 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[1 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:ExampleTrackContainer_p1 Typ:ExampleTrackContainer_p1 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[2 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[3 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[4 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[5 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1 -SimplePoolFile3... DEBUG --->Reading Shape[6 , ????]: [1 Column(s)] -SimplePoolFile3... DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 -##Shapes DEBUG No objects passing selection criteria... Container has 7 Entries in total. -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_All] ##Links -##Links DEBUG Opening -##Links DEBUG attributes# = 1 -##Links DEBUG Opened container ##Links of type ROOT_Tree -SimplePoolFile3... DEBUG --->Reading Assoc:????/##Params [200] (2 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202] (3 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/CollectionTree(ExampleTrackContainer_p1/MyTracks) [202] (4 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202] (5 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202] (6 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLCollectionTree(Token) [202] (7 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLCollectionTree(RunNumber) [202] (8 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber) [202] (9 , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202] (a , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202] (b , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202] (c , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -SimplePoolFile3... DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202] (d , ffffffff) -SimplePoolFile3... DEBUG ---->ClassID:???? -##Links DEBUG No objects passing selection criteria... Container has 12 Entries in total. -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_All] ##Params -##Params DEBUG Opening -##Params DEBUG attributes# = 1 -##Params DEBUG Opened container ##Params of type ROOT_Tree -SimplePoolFile3... DEBUG --->Reading Param:FID=[????] -SimplePoolFile3... DEBUG --->Reading Param:PFN=[SimplePoolFile3.root] -SimplePoolFile3... DEBUG --->Reading Param:POOL_VSN=[1.1] -SimplePoolFile3... DEBUG --->Reading Param:FORMAT_VSN=[1.1] -##Params DEBUG No objects passing selection criteria... Container has 4 Entries in total. -RootDatabase.se... DEBUG TREE_CACHE_LEARN_EVENTS = 6 -RootDatabase.se... DEBUG Request tree cache -RootDatabase.se... DEBUG File name SimplePoolFile3.root -RootDatabase.se... DEBUG Got tree CollectionTree read entry -1 -RootDatabase.se... DEBUG Using Tree cache. Size: 100000 Nevents to learn with: 6 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [TREE_CACHE_LEARN_EVENTS]: 6 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [TREE_CACHE_SIZE]: 100000 -MetaDataSvc DEBUG handle() BeginInputFile for SimplePoolFile3.root -MetaDataSvc DEBUG initInputMetaDataStore: file name SimplePoolFile3.root -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdr(DataHeader) -MetaDataHdr(Dat... DEBUG Opening -MetaDataHdr(Dat... DEBUG attributes# = 1 -MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' -MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) -MetaDataHdrForm... DEBUG Opening -MetaDataHdrForm... DEBUG attributes# = 1 -MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' -MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree -MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile3.root -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name SimplePoolFile3.root -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000] -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainer(DataHeader) -POOLContainer(D... DEBUG Opening -POOLContainer(D... DEBUG attributes# = 1 -POOLContainer(D... DEBUG Branch container 'DataHeader' -POOLContainer(D... DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] POOLContainerForm(DataHeaderForm) -POOLContainerFo... DEBUG Opening -POOLContainerFo... DEBUG attributes# = 1 -POOLContainerFo... DEBUG Branch container 'DataHeaderForm' -POOLContainerFo... DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'EventInfo_p4_McEventInfo' -CollectionTree(... DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree -AthenaEventLoopMgr INFO ===>>> start of run 1 <<<=== -AthenaEventLoopMgr INFO ===>>> start processing event #0, run #1 50 events processed so far <<<=== -ReadData DEBUG in execute() -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1) -MetaData(EventS... DEBUG Opening -MetaData(EventS... DEBUG attributes# = 1 -MetaData(EventS... DEBUG Branch container 'EventStreamInfo_p3_Stream1' -MetaData(EventS... DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 0 run: 1 -ReadData INFO Get Smart data ptr 1 -SimplePoolFile3... DEBUG --> Access DbContainer READ [ROOT_Tree] CollectionTree(ExampleTrackContainer_p1/MyTracks) -CollectionTree(... DEBUG Opening -CollectionTree(... DEBUG attributes# = 1 -CollectionTree(... DEBUG Branch container 'ExampleTrackContainer_p1_MyTracks' -CollectionTree(... DEBUG Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree -ReadData INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 51 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000001]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000001]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000001] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #1, run #1 51 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 1 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 137.584 eta = -39.525 phi = 17.2679 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 52 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000002]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000002]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000002] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #2, run #1 52 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 2 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 228.154 eta = -6.2704 phi = 31.9197 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 53 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000003]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000003]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000003] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #3, run #1 53 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 3 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 324.306 eta = -15.8941 phi = 46.5715 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 54 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000004]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000004]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000004] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #4, run #1 54 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 4 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 422.255 eta = -13.279 phi = 61.2233 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 55 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000005]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000005]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000005] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #5, run #1 55 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 5 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 520.987 eta = -12.3511 phi = 75.8751 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 56 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #6, run #1 56 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 6 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 620.127 eta = -11.8468 phi = 90.5269 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 57 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000007]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000007]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000007] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #7, run #1 57 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 7 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 719.507 eta = -11.5247 phi = 105.179 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 58 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000008]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000008]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000008] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #8, run #1 58 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 8 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 819.038 eta = -11.2998 phi = 119.831 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 59 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000009]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000009]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000009] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #9, run #1 59 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 9 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 918.671 eta = -11.1334 phi = 134.482 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 60 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #10, run #1 60 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 10 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 61 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #11, run #1 61 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 11 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1118.13 eta = -10.9031 phi = 163.786 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 62 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #12, run #1 62 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 12 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1217.93 eta = -10.82 phi = 178.438 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 63 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #13, run #1 63 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 13 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1317.76 eta = -10.751 phi = 193.09 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 64 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #14, run #1 64 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 14 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1417.61 eta = -10.6927 phi = 207.741 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 65 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #15, run #1 65 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 15 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1517.49 eta = -10.6429 phi = 222.393 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 66 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #16, run #1 66 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 16 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1617.37 eta = -10.5997 phi = 237.045 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 67 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #17, run #1 67 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 17 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1717.27 eta = -10.562 phi = 251.697 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 68 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #18, run #1 68 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 18 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1817.19 eta = -10.5288 phi = 266.349 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 69 events processed so far <<<=== -EventSelector DEBUG Get AttributeList from the collection -EventSelector DEBUG AttributeList size 3 -EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013]. -EventSelector DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013]. -EventSelector DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013] -AthenaPoolAddre... DEBUG The current Event contains: 3 objects -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo -AthenaPoolAddre... DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks -AthenaEventLoopMgr INFO ===>>> start processing event #19, run #1 69 events processed so far <<<=== -ReadData DEBUG in execute() -ReadData INFO EventStreamInfo: Number of events = 20 -ReadData INFO EventStreamInfo: ItemList: -ReadData INFO CLID = 2101, key = McEventInfo -ReadData INFO CLID = 9103, key = MyTracks -ReadData INFO CLID = 222376821, key = StreamX -ReadData INFO EventType: Event type: sim/data - is sim , testbeam/atlas - is atlas , calib/physics - is physics -ReadData INFO TagInfo: -ReadData INFO EventInfo event: 19 run: 1 -ReadData INFO Get Smart data ptr 1 -ReadData INFO Track pt = 1917.11 eta = -10.4993 phi = 281 detector = Track made in: DummyHitDetector -DataProxy WARNING accessData: IOA pointer not set -ReadData WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits -ReadData INFO Could not find ExampleHitContainer/MyHits -PoolSvc INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 18967 -PoolSvc INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 22 -AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 70 events processed so far <<<=== -MetaDataSvc DEBUG handle() EndInputFile for FID:???? -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] ???? -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -MetaDataSvc DEBUG handle() LastInputFile for end -AthenaEventLoopMgr INFO No more events in event selection -ApplicationMgr INFO Application Manager Stopped successfully -IncidentProcAlg1 INFO Finalize -ReadData INFO in finalize() -IncidentProcAlg2 INFO Finalize -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -*****Chrono***** INFO **************************************************************************************************** -*****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) -*****Chrono***** INFO **************************************************************************************************** -cObjR_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.104(+- 1.01)/ 0/ 10 [ms] #=193 -cObj_ALL INFO Time User : Tot= 60 [ms] Ave/Min/Max=0.331(+- 2.08)/ 0/ 20 [ms] #=181 -ChronoStatSvc INFO Time User : Tot= 0.82 [s] #= 1 -*****Chrono***** INFO **************************************************************************************************** -ChronoStatSvc.f... INFO Service finalized successfully -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -Athena INFO leaving with code 0: "successful run" diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref index 6eb7a61a0ce081cdbcae969ed5a511edf12f6c96..026884eecfddf612da25894038d5103cd43b012a 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref @@ -1,19 +1,19 @@ -Mon Oct 22 10:37:16 CDT 2018 +Fri Oct 19 21:19:05 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_WCondJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5377 configurables from 18 genConfDb files +Py:ConfigurableDb INFO Read module info for 5521 configurables from 57 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Mon Oct 22 10:37:26 2018 + running on lxplus060.cern.ch on Fri Oct 19 21:19:22 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -33,9 +33,9 @@ PoolSvc DEBUG Property update for OutputLevel : new value = 2 PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-19T2309/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-10-18T2340/Athena/22.0.1/InstallArea/x86_64-slc6-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus060.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams @@ -50,10 +50,6 @@ ReadData INFO in initialize() MetaDataSvc DEBUG Property update for OutputLevel : new value = 2 MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 MetaDataSvc DEBUG Service base class initialized successfully -MetaDataSvc.IOV... DEBUG Property update for OutputLevel : new value = 2 -MetaDataSvc.IOV... DEBUG in initialize() -MetaDataSvc.IOV... DEBUG initialize(): need to modify folders -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray(['IOVDbMetaDataTool']) EventSelector DEBUG Property update for OutputLevel : new value = 2 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00 EventSelector DEBUG Service base class initialized successfully @@ -128,12 +124,6 @@ MetaDataHdrForm... DEBUG attributes# = 1 MetaDataHdrForm... DEBUG Branch container 'DataHeaderForm' MetaDataHdrForm... DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc.IOV... DEBUG handle() FirstInputFile for FID:???? -MetaDataSvc.IOV... DEBUG begin checkOverrideRunNumber -MetaDataSvc.IOV... DEBUG checkOverrideRunNumber: check if tag is set in jobOpts -MetaDataSvc.IOV... DEBUG resetRunNumber: unable to get OverrideRunNumberFromInput property from EventSelector -MetaDataSvc.IOV... DEBUG processInputFileMetaData: file name FID:???? -MetaDataSvc.IOV... DEBUG Could not retrieve IOVMetaDataContainer objects from InputMetaDataStore - cannot process input file meta data AthenaPoolAddre... DEBUG Property update for OutputLevel : new value = 2 AthenaPoolAddre... DEBUG Service base class initialized successfully ReadData DEBUG input handles: 2 @@ -223,9 +213,7 @@ MetaDataHdr(Dat... DEBUG Branch container 'DataHeader' MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree ClassIDSvc INFO getRegistryEntries: read 2 CLIDRegistry entries for module ALL MetaDataSvc DEBUG Loaded input meta data store proxies -MetaDataSvc DEBUG calling beginInputFile for MetaDataSvc.IOVDbMetaDataTool -MetaDataSvc.IOV... DEBUG handle() BeginInputFile for SimplePoolFile1.root -MetaDataSvc.IOV... DEBUG The first BeginInputFile incidence is fired along with the FirstInputFile incidence so we skip the processing of the Input File MetaData +MetaDataSvc DEBUG calling beginInputFile for ToolSvc.IOVDbMetaDataTool EventSelector DEBUG Get AttributeList from the collection EventSelector DEBUG AttributeList size 0 EventSelector DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]. @@ -1117,6 +1105,7 @@ MetaDataSvc DEBUG handle() LastInputFile for end AthenaEventLoopMgr INFO No more events in event selection WriteCond INFO in finalize() WriteCond INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o> +MetaDataSvc DEBUG calling metaDataStop for ToolSvc.IOVDbMetaDataTool ApplicationMgr INFO Application Manager Stopped successfully IncidentProcAlg1 INFO Finalize Stream1 INFO Finalize: preparing to write conditions objects @@ -1196,9 +1185,9 @@ commitOutput INFO Time User : Tot= 0 [us] cRep_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 2 fRep_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 2 cRepR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 3 -cObjR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.217(+- 1.46)/ 0/ 10 [ms] #= 46 -cObj_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.455(+- 2.08)/ 0/ 10 [ms] #= 44 -ChronoStatSvc INFO Time User : Tot= 0.71 [s] #= 1 +cObjR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 46 +cObj_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.909(+- 4.17)/ 0/ 20 [ms] #= 44 +ChronoStatSvc INFO Time User : Tot= 0.95 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref index 05ec60dd413758b18074ad49949a02ffd39f669e..48d9453092d1da0039723e74f8acf8c47ee7fc63 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref @@ -1,19 +1,19 @@ -Thu Sep 6 17:06:12 CDT 2018 +Wed Jul 18 20:12:16 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_WMetaJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5518 configurables from 19 genConfDb files +Py:ConfigurableDb INFO Read module info for 5511 configurables from 52 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Thu Sep 6 17:06:20 2018 + Welcome to ApplicationMgr (GaudiCoreSvc v30r2) + running on lxplus052.cern.ch on Wed Jul 18 20:12:25 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -21,7 +21,7 @@ ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to leve StatusCodeSvc INFO initialize AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 2918 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 2428 CLIDRegistry entries for module ALL CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 ClassIDSvc INFO getRegistryEntries: read 916 CLIDRegistry entries for module ALL @@ -35,25 +35,24 @@ PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:Catalog2.xml) [ok] PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-09-04T2107/Athena/22.0.1/InstallArea/x86_64-centos7-gcc62-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-07-17T2058/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus052.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:Catalog2.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray([]) WriteData DEBUG input handles: 0 WriteData DEBUG output handles: 2 WriteData DEBUG Data Deps for WriteData + OUTPUT ( 'ExampleHitContainer' , 'StoreGateSvc+MyHits' ) + OUTPUT ( 'ExampleHitContainer' , 'StoreGateSvc+PetersHits' ) WriteCond INFO in initialize() +ClassIDSvc INFO getRegistryEntries: read 1304 CLIDRegistry entries for module ALL Stream1 DEBUG Property update for OutputLevel : new value = 2 Stream1.Stream1... DEBUG Property update for OutputLevel : new value = 2 -ClassIDSvc INFO getRegistryEntries: read 1504 CLIDRegistry entries for module ALL Stream1 DEBUG In initialize Stream1 DEBUG Found IDecisionSvc. DecisionSvc INFO Inserting stream: Stream1 with no Algs @@ -83,6 +82,7 @@ AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +ClassIDSvc INFO getRegistryEntries: read 460 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #0, run #0 0 events processed so far <<<=== WriteData DEBUG in execute() @@ -127,7 +127,6 @@ SimplePoolFile5... DEBUG --->Adding Assoc :????/##Params [200] (2 , ffffffff) SimplePoolFile5... DEBUG ---->ClassID:???? ##Params DEBUG No objects passing selection criteria... Container has 0 Entries in total. AthenaPoolCnvSvc DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile5.root and cont: TTree=POOLContainerForm(DataHeaderForm) -ClassIDSvc INFO getRegistryEntries: read 461 CLIDRegistry entries for module ALL Stream1 DEBUG addItemObjects(2101,"*") called Stream1 DEBUG Key:* Stream1 DEBUG Added object 2101,"McEventInfo" @@ -187,6 +186,7 @@ SimplePoolFile5... DEBUG ---->Class:DataHeader_p5 SimplePoolFile5... DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile5.root and cont: POOLContainer(DataHeader) AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile5.root and cont: POOLContainerForm(DataHeaderForm) +ClassIDSvc INFO getRegistryEntries: read 80 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> done processing event #0, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 1 events processed so far <<<=== WriteData DEBUG in execute() @@ -203,7 +203,6 @@ WriteCond INFO Hit x = 123.704 y = -42.0973 z = -53.6841 detector = D WriteCond INFO Hit x = 126.915 y = -47.7762 z = -55.0735 detector = DummyHitDetector WriteCond INFO Hit x = 130.125 y = -53.4551 z = -56.169 detector = DummyHitDetector WriteCond INFO registered all data -ClassIDSvc INFO getRegistryEntries: read 80 CLIDRegistry entries for module ALL Stream1 DEBUG addItemObjects(2101,"*") called Stream1 DEBUG Key:* Stream1 DEBUG Added object 2101,"McEventInfo" @@ -667,7 +666,7 @@ Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 20 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 20 events processed so far <<<=== WriteCond INFO in finalize() WriteCond INFO Pedestal x = 193136 y = -5580.01 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o> -Stream1 INFO AthenaOutputStream Stream1 ::stop() +Stream1 DEBUG handle() incident type: MetaDataStop Stream1 DEBUG addItemObjects(9102,"PedestalWriteData") called Stream1 DEBUG Key:PedestalWriteData Stream1 DEBUG Added object 9102,"PedestalWriteData" @@ -711,6 +710,7 @@ SimplePoolFile5... DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] SimplePoolFile5... DEBUG ---->ClassID:???? ClassIDSvc INFO getRegistryEntries: read 7 CLIDRegistry entries for module ALL Stream1 INFO Records written: 21 +Stream1 DEBUG Leaving handle Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] ???? Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] @@ -731,10 +731,10 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** commitOutput INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 21 -fRep_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.476(+- 2.78)/ 0/ 20 [ms] #= 63 -cRep_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.635(+- 3.93)/ 0/ 30 [ms] #= 63 -cRepR_ALL INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.357(+- 2.41)/ 0/ 20 [ms] #= 84 -ChronoStatSvc INFO Time User : Tot= 0.72 [s] #= 1 +cRepR_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 84 +fRep_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.317(+- 1.75)/ 0/ 10 [ms] #= 63 +cRep_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.635(+- 3.51)/ 0/ 20 [ms] #= 63 +ChronoStatSvc INFO Time User : Tot= 0.74 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref index ef277f306fd0cb037c0316e9fdd541afe9b5fbe7..4e10cf9c7f5bf534ffe19170f89e495da7f86fbe 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref @@ -1,19 +1,19 @@ -Thu Sep 6 16:27:32 CDT 2018 +Wed Jul 18 18:17:23 CEST 2018 Preloading tcmalloc_minimal.so Athena INFO including file "AthenaCommon/Preparation.py" Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Athena INFO executing ROOT6Setup Athena INFO including file "AthenaCommon/Execution.py" Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_WriteJobOptions.py" -Py:ConfigurableDb INFO Read module info for 5518 configurables from 19 genConfDb files +Py:ConfigurableDb INFO Read module info for 5511 configurables from 52 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! Athena INFO including file "AthenaCommon/runbatch.py" -ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v30r3) - running on atlaslogin01.hep.anl.gov on Thu Sep 6 16:27:43 2018 + Welcome to ApplicationMgr (GaudiCoreSvc v30r2) + running on lxplus052.cern.ch on Wed Jul 18 18:17:32 2018 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -21,7 +21,7 @@ ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to leve StatusCodeSvc INFO initialize AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 2918 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 2428 CLIDRegistry entries for module ALL CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 ClassIDSvc INFO getRegistryEntries: read 916 CLIDRegistry entries for module ALL @@ -35,16 +35,15 @@ PoolSvc DEBUG Service base class initialized successfully PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:Catalog1.xml) [ok] PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-09-04T2107/Athena/22.0.1/InstallArea/x86_64-centos7-gcc62-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 1 servers found for host atlaslogin01.hep.anl.gov [ATLF ] +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-07-17T2058/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus052.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc DEBUG OutputLevel is PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:Catalog1.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PrivateToolHandleArray([]) WriteData DEBUG input handles: 0 WriteData DEBUG output handles: 2 WriteData DEBUG Data Deps for WriteData @@ -54,7 +53,7 @@ WriteTag INFO in initialize() MagicWriteTag INFO in initialize() Stream1 DEBUG Property update for OutputLevel : new value = 2 Stream1.Stream1... DEBUG Property update for OutputLevel : new value = 2 -ClassIDSvc INFO getRegistryEntries: read 1504 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 1304 CLIDRegistry entries for module ALL Stream1 DEBUG In initialize Stream1 DEBUG Found IDecisionSvc. DecisionSvc INFO Inserting stream: Stream1 with no Algs @@ -78,7 +77,7 @@ Stream1 DEBUG Registering all Tools in ToolHandleArray HelperTools Stream1 DEBUG Adding private ToolHandle tool Stream1.Stream1_MakeEventStreamInfo (MakeEventStreamInfo) from ToolHandleArray HelperTools Stream1 DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaOutputStreamTool) Stream1 DEBUG Data Deps for Stream1 -ClassIDSvc INFO getRegistryEntries: read 353 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 352 CLIDRegistry entries for module ALL Stream2 DEBUG Property update for OutputLevel : new value = 2 Stream2.Stream2... DEBUG Property update for OutputLevel : new value = 2 Stream2 DEBUG In initialize @@ -113,6 +112,7 @@ HistogramPersis...WARNING Histograms saving not required. EventSelector INFO Enter McEventSelector Initialization AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully +ClassIDSvc INFO getRegistryEntries: read 525 CLIDRegistry entries for module ALL ApplicationMgr INFO Application Manager Started successfully EventPersistenc... INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 1 <<<=== @@ -152,7 +152,6 @@ SimplePoolFile1... DEBUG --->Adding Assoc :????/##Params [200] (2 , ffffffff) SimplePoolFile1... DEBUG ---->ClassID:???? ##Params DEBUG No objects passing selection criteria... Container has 0 Entries in total. AthenaPoolCnvSvc DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile1.root and cont: TTree=POOLContainerForm(DataHeaderForm) -ClassIDSvc INFO getRegistryEntries: read 539 CLIDRegistry entries for module ALL Stream1 DEBUG addItemObjects(2101,"*") called Stream1 DEBUG Key:* Stream1 DEBUG Added object 2101,"McEventInfo" @@ -253,6 +252,7 @@ SimplePoolFile1... DEBUG --->Adding Assoc :????/POOLCollectionTree(MagicNumber) SimplePoolFile1... DEBUG ---->ClassID:???? AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile1.root and cont: POOLContainer(DataHeader) AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile1.root and cont: POOLContainerForm(DataHeaderForm) +ClassIDSvc INFO getRegistryEntries: read 83 CLIDRegistry entries for module ALL PersistencySvc:... DEBUG lookupPFN: SimplePoolFile2.root returned FID: '' tech= PersistencySvc:... DEBUG registered PFN: SimplePoolFile2.root with FID:???? Domain[ROOT_All] INFO -> Access DbDatabase CREATE [ROOT_All] ???? @@ -275,7 +275,6 @@ SimplePoolFile2... DEBUG --->Adding Assoc :????/##Params [200] (2 , ffffffff) SimplePoolFile2... DEBUG ---->ClassID:???? ##Params DEBUG No objects passing selection criteria... Container has 0 Entries in total. AthenaPoolCnvSvc DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile2.root and cont: TTree=POOLContainerForm(DataHeaderForm) -ClassIDSvc INFO getRegistryEntries: read 83 CLIDRegistry entries for module ALL Stream2 DEBUG addItemObjects(2101,"*") called Stream2 DEBUG Key:* Stream2 DEBUG Added object 2101,"McEventInfo" @@ -877,7 +876,7 @@ Stream2 DEBUG Key:* Stream2 DEBUG Collected objects: Stream2 DEBUG Object/count: EventInfo_McEventInfo, 20 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 20 events processed so far <<<=== -Stream1 INFO AthenaOutputStream Stream1 ::stop() +Stream1 DEBUG handle() incident type: MetaDataStop Stream1 DEBUG addItemObjects(167728019,"Stream1") called Stream1 DEBUG Key:Stream1 Stream1 DEBUG Added object 167728019,"Stream1" @@ -911,7 +910,8 @@ SimplePoolFile1... DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] SimplePoolFile1... DEBUG ---->ClassID:???? ClassIDSvc INFO getRegistryEntries: read 7 CLIDRegistry entries for module ALL Stream1 INFO Records written: 21 -Stream2 INFO AthenaOutputStream Stream2 ::stop() +Stream1 DEBUG Leaving handle +Stream2 DEBUG handle() incident type: MetaDataStop Stream2 DEBUG addItemObjects(167728019,"Stream2") called Stream2 DEBUG Key:Stream2 Stream2 DEBUG Added object 167728019,"Stream2" @@ -942,7 +942,7 @@ MetaDataHdr(Dat... DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_ SimplePoolFile2... DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] (c , ffffffff) SimplePoolFile2... DEBUG ---->ClassID:???? Stream2 INFO Records written: 21 -Stream3 INFO AthenaOutputStream Stream3 ::stop() +Stream2 DEBUG Leaving handle PersistencySvc:... DEBUG lookupPFN: EmptyPoolFile.root returned FID: '' tech= PersistencySvc:... DEBUG registered PFN: EmptyPoolFile.root with FID:???? Domain[ROOT_All] INFO -> Access DbDatabase CREATE [ROOT_All] ???? @@ -1027,10 +1027,10 @@ ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** commitOutput INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 43 -cRepR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.0324(+-0.568)/ 0/ 10 [ms] #=309 -fRep_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.189(+- 1.36)/ 0/ 10 [ms] #=106 -cRep_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.377(+- 3.05)/ 0/ 30 [ms] #=106 -ChronoStatSvc INFO Time User : Tot= 0.77 [s] #= 1 +cRepR_ALL INFO Time User : Tot= 20 [ms] Ave/Min/Max=0.0647(+-0.802)/ 0/ 10 [ms] #=309 +fRep_ALL INFO Time User : Tot= 40 [ms] Ave/Min/Max=0.377(+- 1.91)/ 0/ 10 [ms] #=106 +cRep_ALL INFO Time User : Tot= 50 [ms] Ave/Min/Max=0.472(+- 3.98)/ 0/ 40 [ms] #=106 +ChronoStatSvc INFO Time User : Tot= 0.84 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadMeta.h b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadMeta.h index c8ecfc9fd9d52dfc987a91611daa8659a9a7ba30..7784b8871dddc107ce14bfc512b7013b6b3f59fe 100755 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadMeta.h +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadMeta.h @@ -45,15 +45,6 @@ public: /// Function called when the tool should write out its metadata virtual StatusCode metaDataStop() {return StatusCode::SUCCESS;} - /// Function collecting the metadata from a new input file - virtual StatusCode beginInputFile(const SG::SourceID&) {return beginInputFile();} - - /// Function collecting the metadata from a new input file - virtual StatusCode endInputFile(const SG::SourceID&) {return endInputFile();} - - /// Function writing the collected metadata to the output - virtual StatusCode metaDataStop(const SG::SourceID&) {return metaDataStop();} - /// Incident service handle listening for BeginInputFile and EndInputFile. void handle(const Incident& incident); diff --git a/Database/AthenaPOOL/AthenaPoolTools/src/MetadataTest.cxx b/Database/AthenaPOOL/AthenaPoolTools/src/MetadataTest.cxx index 45f6b6c77124947b1ed6ca2094a30404984157ee..85ed9f1c73ef99bbe778f382145193d4c400e5f9 100755 --- a/Database/AthenaPOOL/AthenaPoolTools/src/MetadataTest.cxx +++ b/Database/AthenaPOOL/AthenaPoolTools/src/MetadataTest.cxx @@ -22,7 +22,7 @@ MetadataTest::MetadataTest(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name, pSvcLocator), m_hkey("CutBookkeepers","MetaDataStore"), m_eihkey("StreamAOD","MetaDataStore"), - //m_eihkey2("DataStream","MetaDataStore"), + m_eihkey2("DataStream","MetaDataStore"), m_esidone(false) { } @@ -35,7 +35,7 @@ StatusCode MetadataTest::start() // Get proper dbkey. ATH_CHECK( m_hkey.initialize() ); ATH_CHECK( m_eihkey.initialize() ); - //ATH_CHECK( m_eihkey2.initialize() ); + ATH_CHECK( m_eihkey2.initialize() ); m_esidone = false; return StatusCode::SUCCESS; } @@ -70,7 +70,6 @@ StatusCode MetadataTest::execute() } else { ATH_MSG_ERROR("Did not retrieve EventStreamInfo " << m_eihkey.objKey()); } -/* m_eihkey2.setDbKey(sid); SG::ReadMetaHandle<EventStreamInfo> eikey2(m_eihkey2,this->getContext()); const EventStreamInfo* esi2(*eikey2); @@ -79,7 +78,6 @@ StatusCode MetadataTest::execute() } else { ATH_MSG_ERROR("Did not retrieve EventStreamInfo " << m_eihkey2.objKey()); } -*/ m_esidone=true; } diff --git a/Database/AthenaPOOL/AthenaPoolTools/src/MetadataTest.h b/Database/AthenaPOOL/AthenaPoolTools/src/MetadataTest.h index e609a14f02089c01f3e0ce68fc7b2e0a154af7c3..c52374f8e1f5af64e73c1e83fe618a103b2bd5a7 100755 --- a/Database/AthenaPOOL/AthenaPoolTools/src/MetadataTest.h +++ b/Database/AthenaPOOL/AthenaPoolTools/src/MetadataTest.h @@ -41,7 +41,7 @@ public: private: SG::ReadMetaHandleKey<xAOD::CutBookkeeperContainer> m_hkey; SG::ReadMetaHandleKey<EventStreamInfo> m_eihkey; - //SG::ReadMetaHandleKey<EventStreamInfo> m_eihkey2; + SG::ReadMetaHandleKey<EventStreamInfo> m_eihkey2; bool m_esidone; diff --git a/Database/AthenaPOOL/OutputStreamAthenaPool/src/CopyEventStreamInfo.cxx b/Database/AthenaPOOL/OutputStreamAthenaPool/src/CopyEventStreamInfo.cxx index c4ff3c32725f7855ff4b651cbd963bc6d040ea78..beb317affac60652505079568ea5d4303676c22e 100644 --- a/Database/AthenaPOOL/OutputStreamAthenaPool/src/CopyEventStreamInfo.cxx +++ b/Database/AthenaPOOL/OutputStreamAthenaPool/src/CopyEventStreamInfo.cxx @@ -67,7 +67,7 @@ StatusCode CopyEventStreamInfo::finalize() { } -StatusCode CopyEventStreamInfo::beginInputFile(const SG::SourceID&) +StatusCode CopyEventStreamInfo::beginInputFile() { if (m_inputMetaDataStore->contains<EventStreamInfo>(m_key)) { std::list<SG::ObjectWithVersion<EventStreamInfo> > allVersions; @@ -120,11 +120,11 @@ StatusCode CopyEventStreamInfo::beginInputFile(const SG::SourceID&) } return(StatusCode::SUCCESS); } -StatusCode CopyEventStreamInfo::endInputFile(const SG::SourceID&) +StatusCode CopyEventStreamInfo::endInputFile() { return(StatusCode::SUCCESS); } -StatusCode CopyEventStreamInfo::metaDataStop(const SG::SourceID&) +StatusCode CopyEventStreamInfo::metaDataStop() { return(StatusCode::SUCCESS); } diff --git a/Database/AthenaPOOL/OutputStreamAthenaPool/src/CopyEventStreamInfo.h b/Database/AthenaPOOL/OutputStreamAthenaPool/src/CopyEventStreamInfo.h index 62bdee0caee3816d4e16e8c597ef299a73423cb1..df3aa7f21f5e45866a2c0a198886b55ba78c1a68 100644 --- a/Database/AthenaPOOL/OutputStreamAthenaPool/src/CopyEventStreamInfo.h +++ b/Database/AthenaPOOL/OutputStreamAthenaPool/src/CopyEventStreamInfo.h @@ -32,14 +32,14 @@ public: StatusCode finalize(); /// Function called when a new input file is opened - virtual StatusCode beginInputFile(const SG::SourceID& = "Serial"); + virtual StatusCode beginInputFile(); /// Function called when the currently open input file got completely /// processed - virtual StatusCode endInputFile(const SG::SourceID& = "Serial"); + virtual StatusCode endInputFile(); /// Function called when the tool should write out its metadata - virtual StatusCode metaDataStop(const SG::SourceID& = "Serial"); + virtual StatusCode metaDataStop(); /// Incident service handle listening for BeginInputFile and EndInputFile. //void handle(const Incident& incident); diff --git a/Database/IOVDbMetaDataTools/src/IOVDbMetaDataTool.h b/Database/IOVDbMetaDataTools/src/IOVDbMetaDataTool.h index e6a9b928c27c3e09ac3c49a66577e2ffd318b07a..6898ecbf62350729fe906018786a3819fca60bf8 100755 --- a/Database/IOVDbMetaDataTools/src/IOVDbMetaDataTool.h +++ b/Database/IOVDbMetaDataTools/src/IOVDbMetaDataTool.h @@ -80,16 +80,6 @@ public: /// Function called when the tool should write out its metadata StatusCode metaDataStop() {return StatusCode::SUCCESS;} - /// Function called when a new input file is opened - StatusCode beginInputFile(const SG::SourceID&) {return this->beginInputFile();} - - /// Function called when the currently open input file got completely - /// processed - StatusCode endInputFile(const SG::SourceID&) {return this->endInputFile();} - - /// Function called when the tool should write out its metadata - StatusCode metaDataStop(const SG::SourceID&) {return this->metaDataStop();} - /// Incident service handle listening for BeginInputFile and EndInputFile. void handle(const Incident& incident); diff --git a/Database/RegistrationServices/src/RegistrationStream.cxx b/Database/RegistrationServices/src/RegistrationStream.cxx index e2cc95cb7bb9db287880918704aed813577b01ea..654b76440c88568247a94292440920beb41992a2 100755 --- a/Database/RegistrationServices/src/RegistrationStream.cxx +++ b/Database/RegistrationServices/src/RegistrationStream.cxx @@ -125,7 +125,6 @@ RegistrationStream::initialize() ATH_MSG_DEBUG (" Tool initialized"); } -/* ServiceHandle<IIncidentSvc> incSvc("IncidentSvc", this->name()); status = incSvc.retrieve(); if (!status.isSuccess()) { @@ -136,7 +135,6 @@ RegistrationStream::initialize() } incSvc->addListener(this, "MetaDataStop", 30); ATH_MSG_DEBUG("Added MetaDataStop listener"); -*/ // Register this algorithm for 'I/O' events ServiceHandle<IIoComponentMgr> iomgr("IoComponentMgr", name()); @@ -179,14 +177,18 @@ RegistrationStream::finalize() return StatusCode::SUCCESS; } -StatusCode -RegistrationStream::stop() +void RegistrationStream::handle(const Incident& inc) { - StatusCode sc = m_regTool->commit(); - if (!sc.isSuccess()) ATH_MSG_INFO("Unable to commit"); - return StatusCode::SUCCESS; + // Now commit the results + ATH_MSG_DEBUG("handle() incident type: " << inc.type()); + if (inc.type() == "MetaDataStop") { + StatusCode sc = m_regTool->commit(); + if (!sc.isSuccess()) ATH_MSG_INFO("Unable to commit"); + + } } + // Work entry point StatusCode RegistrationStream::execute() @@ -521,12 +523,17 @@ std::vector<std::string> RegistrationStream::getCollMetadataKeys() StatusCode RegistrationStream::io_reinit() { ATH_MSG_DEBUG("I/O reinitialization..."); + ServiceHandle<IIncidentSvc> incSvc("IncidentSvc", this->name()); + if (!incSvc.retrieve().isSuccess()) { + ATH_MSG_FATAL("Cannot get the IncidentSvc"); + return StatusCode::FAILURE; + } + incSvc->addListener(this, "MetaDataStop", 30); return StatusCode::SUCCESS; } StatusCode RegistrationStream::io_finalize() { ATH_MSG_INFO("I/O finalization..."); -/* const Incident metaDataStopIncident(name(), "MetaDataStop"); this->handle(metaDataStopIncident); ServiceHandle<IIncidentSvc> incSvc("IncidentSvc", this->name()); @@ -535,6 +542,5 @@ StatusCode RegistrationStream::io_finalize() { return StatusCode::FAILURE; } incSvc->removeListener(this, "MetaDataStop"); -*/ return StatusCode::SUCCESS; } diff --git a/Database/RegistrationServices/src/RegistrationStream.h b/Database/RegistrationServices/src/RegistrationStream.h index d72572cde015f0fb19d9601f0b8da98ff7eb4d7b..58e0ff51c2fd735c1484bcdcdc1b11602feb92f3 100755 --- a/Database/RegistrationServices/src/RegistrationStream.h +++ b/Database/RegistrationServices/src/RegistrationStream.h @@ -25,6 +25,7 @@ #include "GaudiKernel/Property.h" #include "GaudiKernel/ServiceHandle.h" #include "GaudiKernel/ToolHandle.h" +#include "GaudiKernel/IIncidentListener.h" #include "GaudiKernel/IIoComponent.h" #include "AthenaBaseComps/FilteredAlgorithm.h" @@ -54,6 +55,7 @@ namespace SG */ class RegistrationStream : public FilteredAlgorithm, + virtual public IIncidentListener, virtual public IIoComponent { friend class AlgFactory<RegistrationStream>; @@ -65,7 +67,7 @@ public: /// Terminate RegistrationStream virtual StatusCode finalize(); - virtual StatusCode stop(); + virtual void handle(const Incident& incident); /// Working entry point virtual StatusCode execute(); diff --git a/Event/ByteStreamCnvSvc/src/ByteStreamMetadataTool.cxx b/Event/ByteStreamCnvSvc/src/ByteStreamMetadataTool.cxx index 3f58c4f1680648fb5fcaa3e6bce2b982e3ee1f18..92f7215b1ac8264fb5d6d1511e85a883112a12c6 100644 --- a/Event/ByteStreamCnvSvc/src/ByteStreamMetadataTool.cxx +++ b/Event/ByteStreamCnvSvc/src/ByteStreamMetadataTool.cxx @@ -58,11 +58,6 @@ StatusCode ByteStreamMetadataTool::finalize() { } -StatusCode ByteStreamMetadataTool::beginInputFile(const SG::SourceID&) -{ - return this->beginInputFile(); -} - StatusCode ByteStreamMetadataTool::beginInputFile() { std::vector<std::string> vKeys; @@ -148,20 +143,11 @@ StatusCode ByteStreamMetadataTool::beginInputFile() } -StatusCode ByteStreamMetadataTool::endInputFile(const SG::SourceID&) -{ - return StatusCode::SUCCESS; -} - StatusCode ByteStreamMetadataTool::endInputFile() { return StatusCode::SUCCESS; } -StatusCode ByteStreamMetadataTool::metaDataStop(const SG::SourceID&) -{ - return StatusCode::SUCCESS; -} StatusCode ByteStreamMetadataTool::metaDataStop() { diff --git a/Event/ByteStreamCnvSvc/src/ByteStreamMetadataTool.h b/Event/ByteStreamCnvSvc/src/ByteStreamMetadataTool.h index a9c579681ffc1676b5617f8de4ef00612b7fdbee..825855f3191b6df4b01e57c60ad93441e543881a 100644 --- a/Event/ByteStreamCnvSvc/src/ByteStreamMetadataTool.h +++ b/Event/ByteStreamCnvSvc/src/ByteStreamMetadataTool.h @@ -13,7 +13,6 @@ #include "GaudiKernel/ServiceHandle.h" #include "AthenaBaseComps/AthAlgTool.h" -#include "AthenaKernel/SourceID.h" #include "AthenaKernel/IMetaDataTool.h" #include <string> @@ -38,9 +37,6 @@ public: /// Incident service handle listening for BeginInputFile and EndInputFile. virtual StatusCode beginInputFile(); virtual StatusCode endInputFile(); - virtual StatusCode metaDataStop(const SG::SourceID&); - virtual StatusCode beginInputFile(const SG::SourceID&); - virtual StatusCode endInputFile(const SG::SourceID&); virtual StatusCode metaDataStop(); private: diff --git a/Event/EventBookkeeperTools/CMakeLists.txt b/Event/EventBookkeeperTools/CMakeLists.txt index c3f6b65e460dd10308ed0410ec06b756b38554b8..d12c167699e1f1356a28c92df5d092b49d01776f 100644 --- a/Event/EventBookkeeperTools/CMakeLists.txt +++ b/Event/EventBookkeeperTools/CMakeLists.txt @@ -15,7 +15,6 @@ atlas_depends_on_subdirs( PUBLIC PRIVATE Control/SGTools Control/StoreGate - Control/AthContainerInterfaces Event/EventBookkeeperMetaData Event/EventInfo Event/xAOD/xAODEventInfo ) diff --git a/Event/EventBookkeeperTools/EventBookkeeperTools/BookkeeperTool.h b/Event/EventBookkeeperTools/EventBookkeeperTools/BookkeeperTool.h index ebb5a272d71f9b4760cfd0a4f81f6341b4bfdf0d..0b1a2aad90ce268d310a649773739e5c0df15d2f 100644 --- a/Event/EventBookkeeperTools/EventBookkeeperTools/BookkeeperTool.h +++ b/Event/EventBookkeeperTools/EventBookkeeperTools/BookkeeperTool.h @@ -7,11 +7,19 @@ /** @file BookkeeperTool.h * @brief This file contains the class definition for the BookkeeperTool class. - * @author Jack Cranshaw <cranshaw@anl.gov> - * $Id: $ + * @author Peter van Gemmeren <gemmeren@anl.gov> + * $Id: BookkeeperTool.h 663679 2015-04-29 08:31:54Z krasznaa $ **/ -#include "AthenaKernel/GenericMetadataTool.h" +//#include "GaudiKernel/AlgTool.h" +#include "AthenaBaseComps/AthAlgTool.h" +#include "AsgTools/AsgMetadataTool.h" +#ifdef ASGTOOL_ATHENA +#include "AthenaKernel/IMetaDataTool.h" +#endif // ASGTOOL_ATHENA +#include "GaudiKernel/IIncidentListener.h" +#include "GaudiKernel/ServiceHandle.h" +#include "AthenaKernel/ICutFlowSvc.h" #include "xAODCutFlow/CutBookkeeper.h" #include "xAODCutFlow/CutBookkeeperContainer.h" @@ -24,22 +32,50 @@ **/ -class BookkeeperTool : public GenericMetadataTool <xAOD::CutBookkeeperContainer, xAOD::CutBookkeeperAuxContainer> +class BookkeeperTool : public asg::AsgMetadataTool +#ifdef ASGTOOL_ATHENA + , public virtual ::IMetaDataTool +#endif // ASGTOOL_ATHENA { -public: - // Constructor and Destructor + ASG_TOOL_CLASS0(BookkeeperTool) +public: // Constructor and Destructor /// Standard Service Constructor - BookkeeperTool(const std::string& type, - const std::string& name, - const IInterface* parent); + BookkeeperTool(const std::string& name = "BookkeeperTool"); /// Destructor virtual ~BookkeeperTool(); +public: + //void handle(const Incident& incident); + virtual StatusCode metaDataStop(); + virtual StatusCode beginInputFile(); + virtual StatusCode endInputFile(); + virtual StatusCode initialize(); + virtual StatusCode finalize(); + private: /// Helper class to update a container with information from another one - virtual StatusCode updateContainer(xAOD::CutBookkeeperContainer* contToUpdate, - const xAOD::CutBookkeeperContainer* otherCont ); + StatusCode updateContainer( xAOD::CutBookkeeperContainer* contToUpdate, + const xAOD::CutBookkeeperContainer* otherCont ); + + StatusCode copyContainerToOutput(const std::string& outname); + + /// Fill Cutflow information + StatusCode addCutFlow(); + + /// Pointer to cut flow svc + //ServiceHandle<ICutFlowSvc> m_cutflowsvc; + + /// The name of the output CutBookkeeperContainer + std::string m_outputCollName; + + /// The name of the input CutBookkeeperContainer + std::string m_inputCollName; + + /// The name of the CutFlowSvc CutBookkeeperContainer + std::string m_cutflowCollName; + + bool m_cutflowTaken; }; diff --git a/Event/EventBookkeeperTools/Root/BookkeeperTool.cxx b/Event/EventBookkeeperTools/Root/BookkeeperTool.cxx index 8bdabcef6f35bc6e58de94875fa7c19c63f6f626..f7de464878772bc2980fe958ad27272946052f22 100644 --- a/Event/EventBookkeeperTools/Root/BookkeeperTool.cxx +++ b/Event/EventBookkeeperTools/Root/BookkeeperTool.cxx @@ -13,28 +13,241 @@ // STL include #include <algorithm> -#include "AthenaKernel/MetaCont.h" -#include "AthenaKernel/ClassID_traits.h" +// #include "FillEBCFromFlat.h" + +#include "GaudiKernel/Incident.h" +#include "GaudiKernel/FileIncident.h" +#include "GaudiKernel/IIncidentSvc.h" #include "AthenaKernel/errorcheck.h" -#include "AthenaKernel/GenericMetadataTool.h" -#include "AthenaKernel/ICutFlowSvc.h" #include "AthenaBaseComps/AthCheckMacros.h" -#include "AthContainersInterfaces/IConstAuxStoreMeta.h" -BookkeeperTool::BookkeeperTool(const std::string& type, - const std::string& name, - const IInterface* parent) - : GenericMetadataTool <xAOD::CutBookkeeperContainer, xAOD::CutBookkeeperAuxContainer>(type,name,parent) + +BookkeeperTool::BookkeeperTool(const std::string& name) + : asg::AsgMetadataTool(name), + m_cutflowTaken(false) { + declareProperty("OutputCollName", m_outputCollName="CutBookkeepers", + "The default name of the xAOD::CutBookkeeperContainer for output files"); + declareProperty("InputCollName", m_inputCollName = "CutBookkeepers", + "The default name of the xAOD::CutBookkeeperContainer for input files"); + declareProperty("CutFlowCollName", m_cutflowCollName = "CutBookkeepersFile", + "The default name of the xAOD::CutBookkeeperContainer for CutFlowSvc"); +#ifdef ASGTOOL_ATHENA + declareInterface< ::IMetaDataTool >( this ); +#endif // ASGTOOL_ATHENA } + + BookkeeperTool::~BookkeeperTool() { } + +StatusCode +BookkeeperTool::initialize() +{ + ATH_MSG_DEBUG( "Initializing " << name() << " - package version " << PACKAGE_VERSION ); + + ATH_MSG_DEBUG("InputCollName = " << m_inputCollName); + ATH_MSG_DEBUG("OutputCollName = " << m_outputCollName); + ATH_MSG_DEBUG("CutFlowCollName = " << m_cutflowCollName); + + return StatusCode::SUCCESS; +} + + +//__________________________________________________________________________ +StatusCode BookkeeperTool::beginInputFile() +{ + //OPENING NEW INPUT FILE + //Things to do: + // 1) note that a file is currently opened + // 2) Load CutBookkeepers from input file + // 2a) if incomplete from input, directly propagate to output + // 2b) if complete from input, wait for EndInputFile to decide what to do in output + + // reset cutflow taken marker + m_cutflowTaken = false; + + // Get the incomplete bookkeeper collection of the input metadata store + const xAOD::CutBookkeeperContainer* input_inc = 0; + // Construct input and output incomplete names + std::string inCollName = "Incomplete" + m_inputCollName; + std::string outCollName = "Incomplete" + m_outputCollName; + if (inputMetaStore()->contains<xAOD::CutBookkeeperContainer>(inCollName) ) { + StatusCode ssc = inputMetaStore()->retrieve( input_inc, inCollName ); + if (ssc.isSuccess()) { + // First make sure there is an incomplete container in the output store + if( !(outputMetaStore()->contains<xAOD::CutBookkeeperContainer>(outCollName)) ) { + xAOD::CutBookkeeperContainer* inc = new xAOD::CutBookkeeperContainer(); + xAOD::CutBookkeeperAuxContainer* auxinc = new xAOD::CutBookkeeperAuxContainer(); + inc->setStore(auxinc); + ATH_CHECK(outputMetaStore()->record(inc,outCollName)); + ATH_CHECK(outputMetaStore()->record(auxinc,outCollName+"Aux.")); + } + // retrieve the incomplete output container + xAOD::CutBookkeeperContainer* incompleteBook(NULL); + ATH_CHECK(outputMetaStore()->retrieve( incompleteBook, outCollName)); + // update incomplete output with any incomplete input + ATH_CHECK(this->updateContainer(incompleteBook,input_inc)); + ATH_MSG_DEBUG("Successfully merged input incomplete bookkeepers with output"); + } + } + else { + ATH_MSG_INFO("No incomplete bookkeepers in this file " << inCollName); + } + + // Get the complete bookkeeper collection of the input metadata store + const xAOD::CutBookkeeperContainer* input_com = 0; + inCollName = m_inputCollName; + outCollName = m_outputCollName; + if (inputMetaStore()->contains<xAOD::CutBookkeeperContainer>(inCollName) ) { + if ( (inputMetaStore()->retrieve( input_com, inCollName )).isSuccess() ) { + // Check if a tmp is there. IT SHOULD NOT BE + //xAOD::CutBookkeeperContainer* incompleteBook(NULL); + if( !(outputMetaStore()->contains<xAOD::CutBookkeeperContainer>(outCollName+"tmp")) ) { + // Now create the tmp container + xAOD::CutBookkeeperContainer* tmp = new xAOD::CutBookkeeperContainer(); + xAOD::CutBookkeeperAuxContainer* auxtmp = new xAOD::CutBookkeeperAuxContainer(); + tmp->setStore(auxtmp); + if (updateContainer(tmp,input_com).isSuccess()) { + ATH_CHECK(outputMetaStore()->record(tmp,outCollName+"tmp")); + ATH_CHECK(outputMetaStore()->record(auxtmp,outCollName+"tmpAux.")); + } + else { + ATH_MSG_WARNING("Could not update tmp container from input complete conatiner"); + } + } + } + else { + ATH_MSG_WARNING("tmp collection already exists"); + return StatusCode::SUCCESS; + } + ATH_MSG_DEBUG("Successfully copied complete bookkeepers to temp container"); + } + + // Now make sure the output containers are in the output store + // + // Make sure complete container exists in output + if( !(outputMetaStore()->contains<xAOD::CutBookkeeperContainer>(m_outputCollName)) ) { + // Now create the complete container + xAOD::CutBookkeeperContainer* inc = new xAOD::CutBookkeeperContainer(); + xAOD::CutBookkeeperAuxContainer* auxinc = new xAOD::CutBookkeeperAuxContainer(); + inc->setStore(auxinc); + ATH_CHECK(outputMetaStore()->record(inc,m_outputCollName)); + ATH_CHECK(outputMetaStore()->record(auxinc,m_outputCollName+"Aux.")); + } + else { + ATH_MSG_WARNING("complete collection already exists"); + //return StatusCode::SUCCESS; + } + // Make sure incomplete container exists in output + std::string inc_name = "Incomplete"+m_outputCollName; + if( !(outputMetaStore()->contains<xAOD::CutBookkeeperContainer>(inc_name)) ) { + // Now create the complete container + xAOD::CutBookkeeperContainer* coll = new xAOD::CutBookkeeperContainer(); + xAOD::CutBookkeeperAuxContainer* auxcoll = new xAOD::CutBookkeeperAuxContainer(); + coll->setStore(auxcoll); + ATH_CHECK(outputMetaStore()->record(coll,inc_name)); + ATH_CHECK(outputMetaStore()->record(auxcoll,inc_name+"Aux.")); + } + else { + ATH_MSG_WARNING("incomplete collection already exists"); + } + + return StatusCode::SUCCESS; +} + + +StatusCode BookkeeperTool::endInputFile() +{ + + if (copyContainerToOutput(m_outputCollName).isFailure()) return StatusCode::FAILURE; + + if (!m_cutflowTaken) { + if (addCutFlow().isFailure()) { + ATH_MSG_ERROR("Could not add CutFlow information"); + } + m_cutflowTaken = true; + } + else { + ATH_MSG_DEBUG("Cutflow information written into container before endInputFile"); + } + + return StatusCode::SUCCESS; +} + +StatusCode BookkeeperTool::metaDataStop() +{ + //TERMINATING THE JOB (EndRun) + //Things to do: + // 1) Create new incomplete CutBookkeepers if relevant + // 2) Print cut flow summary + // 3) Write root file if requested + // Make sure incomplete container exists in output + std::string inc_name = "Incomplete"+m_outputCollName; + if (copyContainerToOutput(inc_name).isFailure()) return StatusCode::FAILURE; + + + if (!m_cutflowTaken) { + if (addCutFlow().isFailure()) { + ATH_MSG_ERROR("Could not add CutFlow information"); + } + } + else { + ATH_MSG_DEBUG("Cutflow information written into container before metaDataStop"); + } + + // Reset after metadata stop + m_cutflowTaken = false; + + return StatusCode::SUCCESS; +} + + +StatusCode +BookkeeperTool::finalize() +{ + ATH_MSG_DEBUG( "Finalizing " << name() << " - package version " << PACKAGE_VERSION ); + return StatusCode::SUCCESS; +} + + +StatusCode BookkeeperTool::addCutFlow() +{ + // Add the information from the current processing to the complete output + // --> same paradigm as original CutFlowSvc + // Get the complete bookkeeper collection of the output meta-data store + xAOD::CutBookkeeperContainer* completeBook(NULL); + if( !(outputMetaStore()->retrieve( completeBook, m_outputCollName) ).isSuccess() ) { + ATH_MSG_ERROR( "Could not get complete CutBookkeepers from output MetaDataStore" ); + return StatusCode::FAILURE; + } + + // Get the bookkeeper from the current processing + const xAOD::CutBookkeeperContainer* fileCompleteBook(NULL); + if( outputMetaStore()->contains<xAOD::CutBookkeeperContainer>(m_cutflowCollName) ) { + if( !(outputMetaStore()->retrieve( fileCompleteBook, m_cutflowCollName) ).isSuccess() ) { + ATH_MSG_WARNING( "Could not get CutFlowSvc CutBookkeepers from output MetaDataStore" ); + } + else { + // update the complete output with the complete input + ATH_CHECK(this->updateContainer(completeBook,fileCompleteBook)); + } + } + else { + ATH_MSG_INFO("No cutflow container " << m_cutflowCollName); + } + + return StatusCode::SUCCESS; +} + + namespace { + xAOD::CutBookkeeper* resolveLink (const xAOD::CutBookkeeper* old, xAOD::CutBookkeeperContainer& contToUpdate, @@ -168,3 +381,33 @@ BookkeeperTool::updateContainer( xAOD::CutBookkeeperContainer* contToUpdate, return StatusCode::SUCCESS; } + +StatusCode BookkeeperTool::copyContainerToOutput(const std::string& outname) +{ + + // Get the complete bookkeeper collection of the output meta-data store + xAOD::CutBookkeeperContainer* contBook(nullptr); + if( !(outputMetaStore()->retrieve( contBook, outname) ).isSuccess() ) { + ATH_MSG_ERROR( "Could not get " << outname << " CutBookkeepers from output MetaDataStore" ); + return StatusCode::FAILURE; + } + + // Get the tmp bookkeeper from the input + const xAOD::CutBookkeeperContainer* tmpBook(NULL); + if ( outputMetaStore()->contains<xAOD::CutBookkeeperContainer>(outname+"tmp") ) { + if( !(outputMetaStore()->retrieve( tmpBook, outname+"tmp") ).isSuccess() ) { + ATH_MSG_WARNING( "Could not get tmp CutBookkeepers from output MetaDataStore" ); + } + else { + // update the complete output with the complete input + ATH_CHECK(this->updateContainer(contBook,tmpBook)); + // remove the tmp container + const SG::IConstAuxStore* tmpBookAux = tmpBook->getConstStore(); + ATH_CHECK(outputMetaStore()->removeDataAndProxy(tmpBook)); + ATH_CHECK(outputMetaStore()->removeDataAndProxy(tmpBookAux)); + } + } + + return StatusCode::SUCCESS; +} + diff --git a/Event/EventBookkeeperTools/python/CutFlowHelpers.py b/Event/EventBookkeeperTools/python/CutFlowHelpers.py index 63135ea4f9de9a2363756e3ce2b15e80785bbd35..98b28176bd21aba0f69ecd1bce7de28cc76b0168 100644 --- a/Event/EventBookkeeperTools/python/CutFlowHelpers.py +++ b/Event/EventBookkeeperTools/python/CutFlowHelpers.py @@ -44,7 +44,6 @@ def GetCurrentStreamName( msg, athFile=None ): def CreateCutFlowSvc( svcName="CutFlowSvc", athFile=None, seq=None, addAlgInPlace=False, addMetaDataToAllOutputFiles=True, SGkey="CutBookkeepers" ): - print "CreateCutFlowSvc" """ Helper to create the CutFlowSvc, extract the needed information from the input file, and also schedule all the needed stuff. @@ -64,6 +63,8 @@ def CreateCutFlowSvc( svcName="CutFlowSvc", athFile=None, seq=None, addAlgInPlac import AthenaCommon.CfgMgr as CfgMgr if not hasattr(svcMgr,"CutFlowSvc"): svcMgr += CfgMgr.CutFlowSvc() svcMgr.CutFlowSvc.InputStream = inputStreamName + #if not hasattr(svcMgr,"FileCutFlowSvc"): svcMgr += CfgMgr.FileCutFlowSvc() + #svcMgr.FileCutFlowSvc.InputStream = inputStreamName # Make sure MetaDataSvc is ready if not hasattr(svcMgr,'MetaDataSvc'): @@ -79,23 +80,23 @@ def CreateCutFlowSvc( svcName="CutFlowSvc", athFile=None, seq=None, addAlgInPlac cutflowtool = BookkeeperTool(outname+"Tool", InputCollName = inname, OutputCollName= outname) - #svcMgr.ToolSvc += cutflowtool - + svcMgr.ToolSvc += cutflowtool # Add tool to MetaDataSvc svcMgr.MetaDataSvc.MetaDataTools += [cutflowtool] - for x in svcMgr.MetaDataSvc.MetaDataTools: - print x # Add pdf sum of weights counts if appropriate from AthenaCommon.GlobalFlags import globalflags if globalflags.DataSource() == 'geant4': + #from PyUtils import AthFile + #afc = AthFile.fopen( svcMgr.EventSelector.InputCollections[0] ) + # PDF name = "PDFSumOfWeights" pdfweighttool = BookkeeperTool(name, OutputCollName= name, InputCollName = name) - #svcMgr.ToolSvc += pdfweighttool + svcMgr.ToolSvc += pdfweighttool # Add tool to MetaDataSvc svcMgr.MetaDataSvc.MetaDataTools += [pdfweighttool] @@ -166,9 +167,9 @@ def CreateBookkeeperTool( name="CutBookkeepers" ): cutflowtool = BookkeeperTool(name, InputCollName=name, OutputCollName = name) - #svcMgr.ToolSvc += cutflowtool + svcMgr.ToolSvc += cutflowtool # Add tool to MetaDataSvc - svcMgr.MetaDataSvc.MetaDataTools += [cutflowtool] + #svcMgr.MetaDataSvc.MetaDataTools += [cutflowtool] return diff --git a/Event/xAOD/xAODCutFlow/xAODCutFlow/CutBookkeeperAuxContainer.h b/Event/xAOD/xAODCutFlow/xAODCutFlow/CutBookkeeperAuxContainer.h index 61ecf36f32c581746d0d1e208e2ce62d05f08e74..dfba7d648e125ec414062ceec6ee35acf07ae7dc 100644 --- a/Event/xAOD/xAODCutFlow/xAODCutFlow/CutBookkeeperAuxContainer.h +++ b/Event/xAOD/xAODCutFlow/xAODCutFlow/CutBookkeeperAuxContainer.h @@ -20,11 +20,5 @@ namespace xAOD { // Set up a CLID for the class: #include "xAODCore/CLASS_DEF.h" CLASS_DEF( xAOD::CutBookkeeperAuxContainer, 1147935274, 1 ) -#ifndef XAOD_STANDALONE -#include "AthenaKernel/MetaCont.h" -CLASS_DEF( MetaCont<xAOD::CutBookkeeperAuxContainer> , 1422109 , 1 ) -#include "SGTools/BaseInfo.h" -SG_BASE( MetaCont<xAOD::CutBookkeeperAuxContainer>, MetaContBase ); -#endif // not XAOD_STANDALONE #endif // XAODCUTFLOW_CUTBOOKKEEPERAUXCONTAINER_H diff --git a/Event/xAOD/xAODEventFormatCnv/src/EventFormatMetaDataTool.h b/Event/xAOD/xAODEventFormatCnv/src/EventFormatMetaDataTool.h index 33875ae4af58750780350060fcffdfa6288de596..b50053df42d962b77baf335d87f3a92999659cdd 100644 --- a/Event/xAOD/xAODEventFormatCnv/src/EventFormatMetaDataTool.h +++ b/Event/xAOD/xAODEventFormatCnv/src/EventFormatMetaDataTool.h @@ -46,15 +46,6 @@ namespace xAODMaker { /// Function initialising the tool virtual StatusCode initialize(); - /// Function collecting the metadata from a new input file - virtual StatusCode beginInputFile(const SG::SourceID&) {return beginInputFile();} - - /// Function collecting the metadata from a new input file - virtual StatusCode endInputFile(const SG::SourceID&) {return endInputFile();} - - /// Function writing the collected metadata to the output - virtual StatusCode metaDataStop(const SG::SourceID&) {return metaDataStop();} - /// Function called when a new input file is opened virtual StatusCode beginInputFile(); diff --git a/Event/xAOD/xAODMetaDataCnv/src/FileMetaDataCreatorTool.h b/Event/xAOD/xAODMetaDataCnv/src/FileMetaDataCreatorTool.h index 1059a9bb4f2b44d867c9fce39fe887b9a30d680c..f8915fc4ea649f0ace135c185315b95214d1705c 100644 --- a/Event/xAOD/xAODMetaDataCnv/src/FileMetaDataCreatorTool.h +++ b/Event/xAOD/xAODMetaDataCnv/src/FileMetaDataCreatorTool.h @@ -70,15 +70,6 @@ namespace xAODMaker { /// Function writing the collected metadata to the output virtual StatusCode metaDataStop(); - /// Function collecting the metadata from a new input file - virtual StatusCode beginInputFile(const SG::SourceID&) {return StatusCode::SUCCESS;} - - /// Function collecting the metadata from a new input file - virtual StatusCode endInputFile(const SG::SourceID&) {return StatusCode::SUCCESS;} - - /// Function writing the collected metadata to the output - virtual StatusCode metaDataStop(const SG::SourceID&) {return StatusCode::SUCCESS;} - /// @} private: diff --git a/Event/xAOD/xAODMetaDataCnv/xAODMetaDataCnv/FileMetaDataTool.h b/Event/xAOD/xAODMetaDataCnv/xAODMetaDataCnv/FileMetaDataTool.h index a0c1b5b441142cd056b4e3633683bb0dba2b1c3b..3f634650d3c4c0d86cbbc1fc047111eba5371028 100644 --- a/Event/xAOD/xAODMetaDataCnv/xAODMetaDataCnv/FileMetaDataTool.h +++ b/Event/xAOD/xAODMetaDataCnv/xAODMetaDataCnv/FileMetaDataTool.h @@ -70,15 +70,6 @@ namespace xAODMaker { /// Function writing the collected metadata to the output virtual StatusCode metaDataStop(); - /// Function collecting the metadata from a new input file - virtual StatusCode beginInputFile(const SG::SourceID&) {return beginInputFile();} - - /// Function collecting the metadata from a new input file - virtual StatusCode endInputFile(const SG::SourceID&) {return endInputFile();} - - /// Function writing the collected metadata to the output - virtual StatusCode metaDataStop(const SG::SourceID&) {return metaDataStop();} - /// @} private: diff --git a/Event/xAOD/xAODTriggerCnv/share/TriggerMenuMetaDataTool_jobOptions.py b/Event/xAOD/xAODTriggerCnv/share/TriggerMenuMetaDataTool_jobOptions.py index 3506b7054b008af87e943f1a09ba6e35e5b90ab6..c232c63fb29168423f32f943bca3fe746342646b 100644 --- a/Event/xAOD/xAODTriggerCnv/share/TriggerMenuMetaDataTool_jobOptions.py +++ b/Event/xAOD/xAODTriggerCnv/share/TriggerMenuMetaDataTool_jobOptions.py @@ -27,12 +27,9 @@ rec.doWriteAOD.set_Value_and_Lock( False ) include( "RecExCommon/RecExCommon_topOptions.py" ) # Configure the metadata tool: -#ToolSvc += CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool", -# OutputLevel = 1 ) -tmdt = xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool", - OutputLevel = 1 ) -svcMgr.MetaDataSvc.MetaDataTools += [ tmdt ] -#svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.TriggerMenuMetaDataTool ] +ToolSvc += CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool", + OutputLevel = 1 ) +svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.TriggerMenuMetaDataTool ] # Set up an output file: from OutputStreamAthenaPool.MultipleStreamManager import MSMgr diff --git a/Event/xAOD/xAODTriggerCnv/xAODTriggerCnv/TriggerMenuMetaDataTool.h b/Event/xAOD/xAODTriggerCnv/xAODTriggerCnv/TriggerMenuMetaDataTool.h index cc8488c03816fe5fdf3769ae2eadf8d341f4ff36..176e75a24df7dc59cf118d944e2326d5b8dd5eb0 100644 --- a/Event/xAOD/xAODTriggerCnv/xAODTriggerCnv/TriggerMenuMetaDataTool.h +++ b/Event/xAOD/xAODTriggerCnv/xAODTriggerCnv/TriggerMenuMetaDataTool.h @@ -66,15 +66,6 @@ namespace xAODMaker { /// Function writing out the collected metadata virtual StatusCode metaDataStop(); - /// Function collecting the metadata from a new input file - virtual StatusCode beginInputFile(const SG::SourceID&) {return beginInputFile();} - - /// Function collecting the metadata from a new input file - virtual StatusCode endInputFile(const SG::SourceID&) {return endInputFile();} - - /// Function writing the collected metadata to the output - virtual StatusCode metaDataStop(const SG::SourceID&) {return metaDataStop();} - /// @} private: diff --git a/Event/xAOD/xAODTruthCnv/xAODTruthCnv/TruthMetaDataTool.h b/Event/xAOD/xAODTruthCnv/xAODTruthCnv/TruthMetaDataTool.h index c54351c59f38e70b190d963dd4613cd520f913d4..155a53f06cd939875a3af4ead8d619fac909c87c 100644 --- a/Event/xAOD/xAODTruthCnv/xAODTruthCnv/TruthMetaDataTool.h +++ b/Event/xAOD/xAODTruthCnv/xAODTruthCnv/TruthMetaDataTool.h @@ -56,15 +56,6 @@ namespace xAODMaker { /// Function writing out the collected metadata virtual StatusCode metaDataStop(); - /// Function collecting the metadata from a new input file - virtual StatusCode beginInputFile(const SG::SourceID&) {return beginInputFile();} - - /// Function collecting the metadata from a new input file - virtual StatusCode endInputFile(const SG::SourceID&) {return endInputFile();} - - /// Function writing the collected metadata to the output - virtual StatusCode metaDataStop(const SG::SourceID&) {return metaDataStop();} - /// @} private: diff --git a/LumiBlock/LumiBlockComps/LumiBlockComps/LumiBlockMetaDataTool.h b/LumiBlock/LumiBlockComps/LumiBlockComps/LumiBlockMetaDataTool.h index 05f68664da1592a556c71b0329e93470e24f5701..c38da2c39117defa067ba5b725012ee47e5d5d36 100644 --- a/LumiBlock/LumiBlockComps/LumiBlockComps/LumiBlockMetaDataTool.h +++ b/LumiBlock/LumiBlockComps/LumiBlockComps/LumiBlockMetaDataTool.h @@ -57,15 +57,6 @@ public: /// Function writing the collected metadata to the output virtual StatusCode metaDataStop(); - /// Function collecting the metadata from a new input file - virtual StatusCode beginInputFile(const SG::SourceID&) {return this->beginInputFile();} - - /// Function collecting the metadata from a new input file - virtual StatusCode endInputFile(const SG::SourceID&) {return this->endInputFile();} - - /// Function writing the collected metadata to the output - virtual StatusCode metaDataStop(const SG::SourceID&) {return this->metaDataStop();} - /// functions from ILumiBlockMetaDataTool inline const Root::TGRLCollection* getGRLCollection() const { return m_grlcollection; } inline const TString& getUniqueGRLString() const { return m_grlxmlstring; } diff --git a/Reconstruction/RecExample/RecExCommon/share/RecExCommon_topOptions.py b/Reconstruction/RecExample/RecExCommon/share/RecExCommon_topOptions.py index a3e68dd70d0681f8a3a28c07ae7b12b01fbad103..0cf0bb1102499b540dcb8d7985179c1d160a0e40 100644 --- a/Reconstruction/RecExample/RecExCommon/share/RecExCommon_topOptions.py +++ b/Reconstruction/RecExample/RecExCommon/share/RecExCommon_topOptions.py @@ -1019,13 +1019,11 @@ if rec.doFileMetaData(): from LumiBlockComps.LumiBlockCompsConf import LumiBlockMetaDataTool svcMgr.MetaDataSvc.MetaDataTools += [ "LumiBlockMetaDataTool" ] # Trigger tool - #ToolSvc += CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool" ) - tmdt = CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool" ) - svcMgr.MetaDataSvc.MetaDataTools += [ tmdt ] + ToolSvc += CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool" ) + svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.TriggerMenuMetaDataTool ] # EventFormat tool - #ToolSvc += CfgMgr.xAODMaker__EventFormatMetaDataTool( "EventFormatMetaDataTool" ) - #svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.EventFormatMetaDataTool ] - svcMgr.MetaDataSvc.MetaDataTools += [ CfgMgr.xAODMaker__EventFormatMetaDataTool( "EventFormatMetaDataTool" ) ] + ToolSvc += CfgMgr.xAODMaker__EventFormatMetaDataTool( "EventFormatMetaDataTool" ) + svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.EventFormatMetaDataTool ] else: # Create LumiBlock meta data containers *before* creating the output StreamESD/AOD @@ -1425,15 +1423,13 @@ if rec.doWriteAOD(): if rec.doFileMetaData(): # Trigger tool - #ToolSvc += CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool") + ToolSvc += CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool") - #svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.TriggerMenuMetaDataTool ] - svcMgr.MetaDataSvc.MetaDataTools += [ CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool") ] + svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.TriggerMenuMetaDataTool ] # EventFormat tool - #ToolSvc += CfgMgr.xAODMaker__EventFormatMetaDataTool( "EventFormatMetaDataTool") + ToolSvc += CfgMgr.xAODMaker__EventFormatMetaDataTool( "EventFormatMetaDataTool") - #svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.EventFormatMetaDataTool ] - svcMgr.MetaDataSvc.MetaDataTools += [ CfgMgr.xAODMaker__EventFormatMetaDataTool( "EventFormatMetaDataTool") ] + svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.EventFormatMetaDataTool ] # Put MetaData in AOD stream via AugmentedPoolStream_ # Write all meta data containers StreamAOD_Augmented.AddMetaDataItem(dfMetadataItemList()) diff --git a/Reconstruction/RecJobTransforms/share/skeleton.RAWtoALL_tf.py b/Reconstruction/RecJobTransforms/share/skeleton.RAWtoALL_tf.py index a1a6d0b73d0a9ad59b0c2ffd977066e003d0554d..a33f1f71daec30b8353fa25bd6944fcafaedc47c 100644 --- a/Reconstruction/RecJobTransforms/share/skeleton.RAWtoALL_tf.py +++ b/Reconstruction/RecJobTransforms/share/skeleton.RAWtoALL_tf.py @@ -140,10 +140,9 @@ if len(rec.DPDMakerScripts()) > 0: include( "RecExCommon/RecExCommon_topOptions.py" ) if hasattr(runArgs,"inputRDO_TRIGFile") and rec.doFileMetaData(): - #ToolSvc += CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool", - # OutputLevel = 3 ) - #svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.TriggerMenuMetaDataTool ] - svcMgr.MetaDataSvc.MetaDataTools += [ CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool",OutputLevel = 3 ) ] + ToolSvc += CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool", + OutputLevel = 3 ) + svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.TriggerMenuMetaDataTool ] #========================================================== # Use LZIB for compression of temporary outputs of AthenaMP diff --git a/Reconstruction/RecJobTransforms/share/skeleton.RAWtoESD_tf.py b/Reconstruction/RecJobTransforms/share/skeleton.RAWtoESD_tf.py index 72fdfe1668789d084ceb0bd40fabc41d9077db59..59c331a419e829f405b0c314a5c263a687a06fc0 100644 --- a/Reconstruction/RecJobTransforms/share/skeleton.RAWtoESD_tf.py +++ b/Reconstruction/RecJobTransforms/share/skeleton.RAWtoESD_tf.py @@ -200,10 +200,9 @@ if hasattr(runArgs,"topOptions"): include(runArgs.topOptions) else: include( "RecExCommon/RecExCommon_topOptions.py" ) if hasattr(runArgs,"inputRDO_TRIGFile") and rec.doFileMetaData(): - #ToolSvc += CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool", - # OutputLevel = 3 ) - #svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.TriggerMenuMetaDataTool ] - svcMgr.MetaDataSvc.MetaDataTools += [ CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool",OutputLevel = 3 ) ] + ToolSvc += CfgMgr.xAODMaker__TriggerMenuMetaDataTool( "TriggerMenuMetaDataTool", + OutputLevel = 3 ) + svcMgr.MetaDataSvc.MetaDataTools += [ ToolSvc.TriggerMenuMetaDataTool ] #========================================================== # Use LZIB for compression of temporary outputs of AthenaMP