ATLAS Offline Software
Loading...
Searching...
No Matches
VHKASupport Namespace Reference

functions in this namespace are to reduce a boiler plate code from the Ath* base classes More...

Functions

void insertInput (const std::vector< SG::VarHandleKeyArray * > &src, std::vector< Gaudi::DataHandle * > &dest)
 Copies all VHKAs which are readers from the src to dest.
void insertOutput (const std::vector< SG::VarHandleKeyArray * > &src, std::vector< Gaudi::DataHandle * > &dest)

Detailed Description

functions in this namespace are to reduce a boiler plate code from the Ath* base classes

Function Documentation

◆ insertInput()

void VHKASupport::insertInput ( const std::vector< SG::VarHandleKeyArray * > & src,
std::vector< Gaudi::DataHandle * > & dest )

Copies all VHKAs which are readers from the src to dest.

Definition at line 23 of file VHKASupport.cxx.

23 {
24 insert( src, dest, Gaudi::DataHandle::Reader );
25 }

◆ insertOutput()

void VHKASupport::insertOutput ( const std::vector< SG::VarHandleKeyArray * > & src,
std::vector< Gaudi::DataHandle * > & dest )
See also
insertInput but for writers

Definition at line 27 of file VHKASupport.cxx.

27 {
28 insert( src, dest, Gaudi::DataHandle::Writer );
29 }