Skip to content
Snippets Groups Projects
Commit a93e765d authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'asg/met-edm' into 'master'

Recompute MET name hash in standalone code if not available

See merge request atlas/athena!39391
parents ebab5995 7752fb51
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-2020 CERN for the benefit of the ATLAS collaboration
*/
......@@ -20,8 +20,6 @@ MissingET_v1::MissingET_v1( bool createStore )
createPrivateStore();
setName(this->name());
}
else
m_nameHash = 0;
}
MissingET_v1::MissingET_v1( const std::string& name,
......
......@@ -5,6 +5,12 @@
<class name="xAOD::MissingET_v1" >
<field name="m_nameHash" transient="true" />
</class>
<read sourceClass="xAOD::MissingET_v1" version="[1-]"
targetClass="xAOD::MissingET_v1" source="" target="m_nameHash" >
<![CDATA[
m_nameHash.reset();
]]>
</read>
<class name="DataVector<xAOD::MissingET_v1>" />
<class name="xAOD::MissingETContainer_v1"
id="F49162FE-6BC0-49BC-A7DA-A792136BD939" />
......
// -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
#ifndef XAODMISSINGET_VERSIONS_MISSINGET_V1_H
......@@ -9,8 +9,9 @@
#include "AthContainers/AuxElement.h"
#include "xAODBase/IParticle.h"
#include "CxxUtils/CachedValue.h"
#include "xAODBase/IParticle.h"
#include "xAODMissingET/versions/MissingETBase.h"
#include <string>
......@@ -108,12 +109,12 @@ namespace xAOD
float& f_mpy(); /*!< @brief Returns reference to @f$ p_{y} @f$ store */
float& f_sumet(); /*!< @brief Returns reference to @f$ \Sigma E_{\rm T} @f$ store */
std::string& f_name(); /*!< @brief Returns reference to MET object name store */
const std::string& f_nameConst(); /*!< @brief Returns const reference to the MET object name store*/
const std::string& f_nameConst() const; /*!< @brief Returns const reference to the MET object name store*/
MissingETBase::Types::bitmask_t& f_source(); /*!< @brief Returns reference to MET object source store */
/*!@}*/
private:
std::size_t m_nameHash;/*!< @brief Stores the hash for the current f_name string */
CxxUtils::CachedValue<std::size_t> m_nameHash; /*!< @brief Stores the hash for the current f_name string */
static const SG::AuxElement::Accessor<float> m_acc_mpx;
static const SG::AuxElement::Accessor<float> m_acc_mpy;
......
// -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
......@@ -16,7 +16,10 @@ inline float xAOD::MissingET_v1::mpy() const { return m_acc_mpy(*this); }
inline float xAOD::MissingET_v1::sumet() const { return m_acc_sumet(*this); }
inline const std::string& xAOD::MissingET_v1::name() const { static const SG::AuxElement::Accessor<std::string> acc("name"); return acc(*this); }
inline std::size_t xAOD::MissingET_v1::nameHash() const { return m_nameHash; }
inline std::size_t xAOD::MissingET_v1::nameHash() const {
if (!m_nameHash.isValid()) { m_nameHash.set(std::hash<std::string>()(this->f_nameConst())); }
return *m_nameHash.ptr();
}
inline MissingETBase::Types::bitmask_t xAOD::MissingET_v1::source() const { static const SG::AuxElement::Accessor<MissingETBase::Types::bitmask_t> acc("source"); return acc(*this); }
////////////////////////////////////////////
......@@ -28,7 +31,7 @@ inline float& xAOD::MissingET_v1::f_mpy() { return m_acc_mpy(*this); }
inline float& xAOD::MissingET_v1::f_sumet() { return m_acc_sumet(*this); }
inline std::string& xAOD::MissingET_v1::f_name() { static const SG::AuxElement::Accessor<std::string> acc("name"); return acc(*this); }
inline const std::string& xAOD::MissingET_v1::f_nameConst() { static const SG::AuxElement::ConstAccessor<std::string> acc("name"); return acc(*this); }
inline const std::string& xAOD::MissingET_v1::f_nameConst() const { static const SG::AuxElement::ConstAccessor<std::string> acc("name"); return acc(*this); }
inline MissingETBase::Types::bitmask_t& xAOD::MissingET_v1::f_source() { static const SG::AuxElement::Accessor<MissingETBase::Types::bitmask_t> acc("source"); return acc(*this); }
inline void xAOD::MissingET_v1::setMpx(float mpx) { this->f_mpx() = mpx; }
......@@ -40,7 +43,10 @@ inline void xAOD::MissingET_v1::setName(const std::string& name) {
updateHash();
}
inline void xAOD::MissingET_v1::updateHash() { m_nameHash = std::hash<std::string>()(this->f_nameConst()); }
inline void xAOD::MissingET_v1::updateHash() {
m_nameHash.reset();
m_nameHash.set(std::hash<std::string>()(this->f_nameConst()));
}
inline void xAOD::MissingET_v1::setSource(MissingETBase::Types::bitmask_t src) { this->f_source() = src; }
///////////////////////////////////////////////////
......
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
// Local include(s):
#include "xAODMissingETContainerCnv.h"
xAOD::MissingETContainer*
xAODMissingETContainerCnv::createTransientWithKey (const std::string& key)
{
xAOD::MissingETContainer* c = xAODMissingETContainerCnvBase::createTransientWithKey (key);
for(xAOD::MissingET* metObj : *c) metObj->updateHash();
return c;
}
// Dummy source file so that the build system knows that this
// is a custom converter.
// Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
// $Id: xAODMissingETContainerCnv.h 795699 2017-02-05 23:26:05Z khoo $
#ifndef XAODMISSINGETATHENAPOOL_XAODMISSINGETCONTAINERCNV_H
#define XAODMISSINGETATHENAPOOL_XAODMISSINGETCONTAINERCNV_H
// System include(s):
#include <string>
// Gaudi/Athena include(s):
#include "AthenaPoolCnvSvc/T_AthenaPoolxAODCnv.h"
// EDM include(s):
#include "xAODMissingET/MissingET.h"
#include "xAODMissingET/MissingETContainer.h"
/// Type definition for the converter's base
typedef T_AthenaPoolxAODCnv< xAOD::MissingETContainer >
xAODMissingETContainerCnvBase;
/**
* @short POOL converter for the xAOD::MissingETContainer class
*
* We need to extend the default version to handle maintaining the name hashing
* in the interface class.
*/
class xAODMissingETContainerCnv : public xAODMissingETContainerCnvBase
{
public:
using xAODMissingETContainerCnvBase::xAODMissingETContainerCnvBase;
/// Function reading in the persistent object
virtual xAOD::MissingETContainer* createTransientWithKey (const std::string& key) override;
}; // class xAODMissingETContainerCnv
xAODMissingETContainerCnv;
#endif // XAODMISSINGETATHENAPOOL_XAODMISSINGETCONTAINERCNV_H
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