The Gaudi Framework  v36r1 (3e2fb5a8)
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 144 of file Converter.h.

Constructor & Destructor Documentation

◆ ConverterID()

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

Definition at line 146 of file Converter.h.

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

Member Function Documentation

◆ operator==()

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

Definition at line 147 of file Converter.h.

147 { 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 155 of file Converter.h.

155  {
156  return s << "CNV_" << id.m_stype << "_" << id.m_clid;
157 }

Member Data Documentation

◆ m_clid

CLID ConverterID::m_clid
private

Definition at line 152 of file Converter.h.

◆ m_stype

long ConverterID::m_stype
private

Definition at line 151 of file Converter.h.


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