ATLAS Offline Software
Loading...
Searching...
No Matches
EventInfoCnv_p4.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef EVENTATHENAPOOL_EVENTINFOCNV_P4_H
6#define EVENTATHENAPOOL_EVENTINFOCNV_P4_H
7
9#include "EventInfo/EventInfo.h"
11
12class MsgStream;
13class EventInfoCnv_p4 : public T_AthenaPoolTPCnvConstBase<EventInfo, EventInfo_p4> {
14public:
18
19 virtual void persToTrans(const EventInfo_p4* persObj, EventInfo* transObj, MsgStream &log) const override;
20 virtual void transToPers(const EventInfo* transObj, EventInfo_p4* persObj, MsgStream &log) const override;
21
22 // needed to handle specific default constructor of EventInfo
23 virtual EventInfo *createTransientConst( const EventInfo_p4* persObj, MsgStream &log) const override;
24};
25
26template<>
28 : public EventInfoCnv_p4
29{
30public:
31};
32
33
34#endif
This class is the persistent representation of EventInfo.
TPConverterConstBase< TRANS, PERS > T_AthenaPoolTPCnvConstBase
virtual void persToTrans(const EventInfo_p4 *persObj, EventInfo *transObj, MsgStream &log) const override
virtual EventInfo * createTransientConst(const EventInfo_p4 *persObj, MsgStream &log) const override
virtual void transToPers(const EventInfo *transObj, EventInfo_p4 *persObj, MsgStream &log) const override
virtual void transToPers(const TRANS *transObj, PERS *persObj, MsgStream &log) const =0
Convert transient representation to persistent one.
virtual void persToTrans(const PERS *persObj, TRANS *transObj, MsgStream &log) const =0
Convert persistent representation to transient one.