Skip to content
Snippets Groups Projects

Draft: [trigEGam] Integration beteween mongroups and TrigEgammaMonitoring

Closed Edmar Egidio Purcino De Souza requested to merge eegidiop/athena:tegmonGroups into 22.0
4 files
+ 28
22
Compare changes
  • Side-by-side
  • Inline
Files
4
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
#ifndef TRACKPARTICLETRUTHCOLLECTIONCNV_P1_H
@@ -15,23 +15,26 @@ namespace Rec { class TrackParticleTruthCollection_p1; }
class TrackParticleTruthCollectionCnv_p1
: public T_AthenaPoolTPCnvBase<TrackParticleTruthCollection,
Rec::TrackParticleTruthCollection_p1>
: public T_AthenaPoolTPCnvConstBase<TrackParticleTruthCollection,
Rec::TrackParticleTruthCollection_p1>
{
public:
public:
using base_class::persToTrans;
using base_class::transToPers;
/** Method creating the transient representation of @c Analysis::TrackParticleTruthCollection
* from its persistent representation @c TrackParticleTruthCollection_p1
*/
virtual void persToTrans( const Rec::TrackParticleTruthCollection_p1* persObj,
TrackParticleTruthCollection* transObj,
MsgStream& msg );
MsgStream& msg ) const override;
/** Method creating the persistent representation @c TrackParticleTruthCollection_p1
* from its transient representation @c Analysis::TrackParticleTruthCollection
*/
virtual void transToPers( const TrackParticleTruthCollection* transObj,
Rec::TrackParticleTruthCollection_p1* persObj,
MsgStream& msg );
MsgStream& msg ) const override;
};
Loading