Skip to content
Snippets Groups Projects
Commit ffe6e449 authored by Walter Lampl's avatar Walter Lampl Committed by John Chapman
Browse files

Merge branch 'fix.TPyEvent.for.new.cppyy' into 'main'

Simplify xAOD::TPyEvent so the new cppyy can handle it. ATEAM-980

See merge request atlas/athena!70916
parent 6f9c8a2a
No related branches found
No related tags found
No related merge requests found
Pipeline #9341285 failed
// Dear emacs, this is -*- c++ -*- // Dear emacs, this is -*- c++ -*-
// //
// Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration // Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
// //
#ifndef XAODROOTACCESS_TPYEVENT_H #ifndef XAODROOTACCESS_TPYEVENT_H
#define XAODROOTACCESS_TPYEVENT_H #define XAODROOTACCESS_TPYEVENT_H
...@@ -29,8 +29,8 @@ namespace xAOD { ...@@ -29,8 +29,8 @@ namespace xAOD {
class TPyEvent : public TEvent { class TPyEvent : public TEvent {
public: public:
/// Inherit the constructor(s) of @c xAOD::TEvent /// Constructor with an access mode - only that one is used from the python TPyEvent
using TEvent::TEvent; TPyEvent(EAuxMode mode = kUndefinedAccess) : TEvent(mode) {}
/// Function checking if an object is available from the store /// Function checking if an object is available from the store
::Bool_t contains( const std::string& key, const std::string& type ); ::Bool_t contains( const std::string& key, const std::string& type );
......
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