The Gaudi Framework  master (37c0b60a)
ConverterID Class Referencefinal

#include </builds/gaudi/Gaudi/GaudiKernel/include/GaudiKernel/Converter.h>

Public Member Functions

 ConverterID (long stype, CLID clid)
 
bool operator== (const ConverterID &id) const
 

Private Attributes

long m_stype
 
CLID m_clid
 

Friends

std::ostreamoperator<< (std::ostream &, const ConverterID &)
 

Detailed Description

Definition at line 147 of file Converter.h.

Constructor & Destructor Documentation

◆ ConverterID()

ConverterID::ConverterID ( long  stype,
CLID  clid 
)
inline

Definition at line 149 of file Converter.h.

149 : m_stype( stype ), m_clid( clid ) {}

Member Function Documentation

◆ operator==()

bool ConverterID::operator== ( const ConverterID id) const
inline

Definition at line 150 of file Converter.h.

150 { return m_stype == id.m_stype && m_clid == id.m_clid; }

Friends And Related Function Documentation

◆ operator<<

std::ostream& operator<< ( std::ostream s,
const ConverterID id 
)
friend

Definition at line 158 of file Converter.h.

158  {
159  return s << "CNV_" << id.m_stype << "_" << id.m_clid;
160 }

Member Data Documentation

◆ m_clid

CLID ConverterID::m_clid
private

Definition at line 155 of file Converter.h.

◆ m_stype

long ConverterID::m_stype
private

Definition at line 154 of file Converter.h.


The documentation for this class was generated from the following file:
gaudirun.s
string s
Definition: gaudirun.py:346
ConverterID::m_clid
CLID m_clid
Definition: Converter.h:155
ConverterID::m_stype
long m_stype
Definition: Converter.h:154