Skip to content
Snippets Groups Projects
Commit 1e2d88d9 authored by Peter van Gemmeren's avatar Peter van Gemmeren
Browse files

Revert some changes to CopyEventStreamInfo, as they break EventStreamInfo propagation.

parent 0363b74c
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/** @file CopyEventStreamInfo.cxx /** @file CopyEventStreamInfo.cxx
...@@ -10,48 +10,125 @@ ...@@ -10,48 +10,125 @@
#include "CopyEventStreamInfo.h" #include "CopyEventStreamInfo.h"
#include "GaudiKernel/FileIncident.h"
#include "EventInfo/EventStreamInfo.h"
#include "StoreGate/StoreGateSvc.h"
//___________________________________________________________________________ //___________________________________________________________________________
CopyEventStreamInfo::CopyEventStreamInfo(const std::string& type, CopyEventStreamInfo::CopyEventStreamInfo(const std::string& type,
const std::string& name, const std::string& name,
const IInterface* parent) const IInterface* parent) : ::AthAlgTool(type, name, parent),
: GenericMetadataToolNoAux <EventStreamInfo>(type, name, parent) m_metaDataStore("StoreGateSvc/MetaDataStore", name),
{ m_inputMetaDataStore("StoreGateSvc/InputMetaDataStore", name) {
// Declare IMetaDataTool interface
declareInterface<IMetaDataTool>(this);
// Declare the properties
declareProperty("Key", m_key = std::string());
} }
//___________________________________________________________________________ //___________________________________________________________________________
CopyEventStreamInfo::~CopyEventStreamInfo() { CopyEventStreamInfo::~CopyEventStreamInfo() {
} }
//___________________________________________________________________________
StatusCode CopyEventStreamInfo::initialize() {
StatusCode CopyEventStreamInfo::updateContainer( ATH_MSG_INFO("Initializing " << name() << " - package version " << PACKAGE_VERSION);
EventStreamInfo* evtStrInfo_out, // Locate the MetaDataStore and InputMetaDataStore
const EventStreamInfo* evtStrInfo_in ) if (!m_metaDataStore.retrieve().isSuccess()) {
{ ATH_MSG_FATAL("Could not find MetaDataStore");
evtStrInfo_out->addEvent(evtStrInfo_in->getNumberOfEvents()); return(StatusCode::FAILURE);
for (auto elem = evtStrInfo_in->getRunNumbers().begin(), }
lastElem = evtStrInfo_in->getRunNumbers().end(); if (!m_inputMetaDataStore.retrieve().isSuccess()) {
elem != lastElem; elem++) { ATH_MSG_FATAL("Could not find InputMetaDataStore");
evtStrInfo_out->insertRunNumber(*elem); return(StatusCode::FAILURE);
} }
for (auto elem = evtStrInfo_in->getLumiBlockNumbers().begin(), return(StatusCode::SUCCESS);
lastElem = evtStrInfo_in->getLumiBlockNumbers().end(); }
elem != lastElem; elem++) { //___________________________________________________________________________
evtStrInfo_out->insertLumiBlockNumber(*elem); StatusCode CopyEventStreamInfo::finalize() {
ATH_MSG_DEBUG("in finalize()");
// release the MetaDataStore and InputMetaDataStore
if (!m_metaDataStore.release().isSuccess()) {
ATH_MSG_WARNING("Could not release MetaDataStore");
} }
for (auto elem = evtStrInfo_in->getProcessingTags().begin(), if (!m_inputMetaDataStore.release().isSuccess()) {
lastElem = evtStrInfo_in->getProcessingTags().end(); ATH_MSG_WARNING("Could not release InputMetaDataStore");
elem != lastElem; elem++) {
evtStrInfo_out->insertProcessingTag(*elem);
} }
for (auto elem = evtStrInfo_in->getItemList().begin(), return(StatusCode::SUCCESS);
lastElem = evtStrInfo_in->getItemList().end(); }
elem != lastElem; elem++) {
evtStrInfo_out->insertItemList((*elem).first, (*elem).second);
StatusCode CopyEventStreamInfo::beginInputFile(const SG::SourceID&)
{
std::vector<std::string> keys;
if (m_key.value().empty()) {
m_inputMetaDataStore->keys<EventStreamInfo>(keys);
} else {
keys.push_back(m_key);
} }
for (auto elem = evtStrInfo_in->getEventTypes().begin(), for (const auto &key : keys) {
lastElem = evtStrInfo_in->getEventTypes().end(); // Ignore versioned container
elem != lastElem; elem++) { if (key.substr(0, 1) == ";" && key.substr(3, 1) == ";") {
evtStrInfo_out->insertEventType(*elem); ATH_MSG_VERBOSE( "Ignore versioned container: " << key );
continue;
}
if (m_inputMetaDataStore->contains<EventStreamInfo>(key)) {
std::list<SG::ObjectWithVersion<EventStreamInfo> > allVersions;
if (!m_inputMetaDataStore->retrieveAllVersions(allVersions, key).isSuccess()) {
ATH_MSG_ERROR("Could not retrieve all versions for EventStreamInfo");
return StatusCode::FAILURE;
}
EventStreamInfo* evtStrInfo_out = 0;
for (SG::ObjectWithVersion<EventStreamInfo>& obj : allVersions) {
const EventStreamInfo* evtStrInfo_in = obj.dataObject.cptr();
if (!m_metaDataStore->contains<EventStreamInfo>(key)) {
evtStrInfo_out = new EventStreamInfo(*evtStrInfo_in);
if (!m_metaDataStore->record(evtStrInfo_out, key).isSuccess()) {
ATH_MSG_ERROR("Could not record DataObject: " << key);
return StatusCode::FAILURE;
}
} else {
if (!m_metaDataStore->retrieve(evtStrInfo_out, key).isSuccess()) {
ATH_MSG_ERROR("Could not find DataObject in output: " << key);
return StatusCode::FAILURE;
}
evtStrInfo_out->addEvent(evtStrInfo_in->getNumberOfEvents());
for (auto elem = evtStrInfo_in->getRunNumbers().begin(),
lastElem = evtStrInfo_in->getRunNumbers().end();
elem != lastElem; elem++) {
evtStrInfo_out->insertRunNumber(*elem);
}
for (auto elem = evtStrInfo_in->getLumiBlockNumbers().begin(),
lastElem = evtStrInfo_in->getLumiBlockNumbers().end();
elem != lastElem; elem++) {
evtStrInfo_out->insertLumiBlockNumber(*elem);
}
for (auto elem = evtStrInfo_in->getProcessingTags().begin(),
lastElem = evtStrInfo_in->getProcessingTags().end();
elem != lastElem; elem++) {
evtStrInfo_out->insertProcessingTag(*elem);
}
for (auto elem = evtStrInfo_in->getItemList().begin(),
lastElem = evtStrInfo_in->getItemList().end();
elem != lastElem; elem++) {
evtStrInfo_out->insertItemList((*elem).first, (*elem).second);
}
for (auto elem = evtStrInfo_in->getEventTypes().begin(),
lastElem = evtStrInfo_in->getEventTypes().end();
elem != lastElem; elem++) {
evtStrInfo_out->insertEventType(*elem);
}
}
}
}
} }
return(StatusCode::SUCCESS); return(StatusCode::SUCCESS);
} }
StatusCode CopyEventStreamInfo::endInputFile(const SG::SourceID&)
{
return(StatusCode::SUCCESS);
}
StatusCode CopyEventStreamInfo::metaDataStop()
{
return(StatusCode::SUCCESS);
}
...@@ -4,13 +4,17 @@ ...@@ -4,13 +4,17 @@
#ifndef COPYEVENTSTREAMINFO_H #ifndef COPYEVENTSTREAMINFO_H
#define COPYEVENTSTREAMINFO_H #define COPYEVENTSTREAMINFO_H
/** @file CopyEventStreamInfo.h /** @file CopyEventStreamInfo.h
* @brief This file contains the class definition for the CopyEventStreamInfo class. * @brief This file contains the class definition for the CopyEventStreamInfo class.
* @author Peter van Gemmeren <gemmeren@anl.gov> * @author Peter van Gemmeren <gemmeren@anl.gov>
**/ **/
#include "AthenaKernel/GenericMetadataToolNoAux.h" #include "GaudiKernel/ServiceHandle.h"
#include "EventInfo/EventStreamInfo.h"
#include "AthenaBaseComps/AthAlgTool.h"
#include "AthenaKernel/IMetaDataTool.h"
#include <string> #include <string>
...@@ -19,21 +23,33 @@ class StoreGateSvc; ...@@ -19,21 +23,33 @@ class StoreGateSvc;
/** @class CopyEventStreamInfo /** @class CopyEventStreamInfo
* @brief This class provides an algorithm to make the EventStreamInfo object and update it. * @brief This class provides an algorithm to make the EventStreamInfo object and update it.
**/ **/
class CopyEventStreamInfo : public GenericMetadataToolNoAux <EventStreamInfo> { class CopyEventStreamInfo : public ::AthAlgTool, virtual public IMetaDataTool {
public: public:
/// Standard AlgTool Constructor /// Standard AlgTool Constructor
CopyEventStreamInfo(const std::string& type, CopyEventStreamInfo(const std::string& type, const std::string& name, const IInterface* parent);
const std::string& name,
const IInterface* parent);
/// Destructor /// Destructor
virtual ~CopyEventStreamInfo(); virtual ~CopyEventStreamInfo();
/// AthAlgTool Interface method implementations: /// AthAlgTool Interface method implementations:
//StatusCode initialize(); StatusCode initialize();
//StatusCode finalize(); StatusCode finalize();
/// Helper class to update a container with information from another one
virtual StatusCode updateContainer(EventStreamInfo* evtStrInfo_out, /// Function called when a new input file is opened
const EventStreamInfo* evtStrInfo_in ); virtual StatusCode beginInputFile(const SG::SourceID& = "Serial");
/// Function called when the currently open input file got completely
/// processed
virtual StatusCode endInputFile(const SG::SourceID& = "Serial");
/// Function called when the tool should write out its metadata
virtual StatusCode metaDataStop();
private:
/// Key, the StoreGate key for the EventStreamInfo object.
StringProperty m_key;
/// Pointer to the metadata stores
ServiceHandle<StoreGateSvc> m_metaDataStore;
ServiceHandle<StoreGateSvc> m_inputMetaDataStore;
}; };
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment