Gaudi Framework, version v23r7

Home   Generated: Wed Mar 20 2013
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | List of all members
DataHistory::DataHistoryOrder Class Reference

#include <DataHistory.h>

Public Member Functions

bool operator() (const DataHistory *lhs, const DataHistory *rhs) const
 
bool operator() (const DataHistory &lhs, const DataHistory &rhs) const
 

Detailed Description

Definition at line 29 of file DataHistory.h.

Member Function Documentation

bool DataHistory::DataHistoryOrder::operator() ( const DataHistory lhs,
const DataHistory rhs 
) const
inline

Definition at line 31 of file DataHistory.h.

{
if (lhs->m_dataClassID == rhs->m_dataClassID) {
if (lhs->m_dataKey == rhs->m_dataKey) {
return ( lhs->m_algHist < rhs->m_algHist );
} else {
return ( lhs->m_dataKey < rhs->m_dataKey );
}
} else {
return (lhs->m_dataClassID < rhs->m_dataClassID);
}
}
bool DataHistory::DataHistoryOrder::operator() ( const DataHistory lhs,
const DataHistory rhs 
) const
inline

Definition at line 43 of file DataHistory.h.

{
if (lhs.m_dataClassID == rhs.m_dataClassID) {
if (lhs.m_dataKey == rhs.m_dataKey) {
return ( lhs.m_algHist < rhs.m_algHist );
} else {
return ( lhs.m_dataKey < rhs.m_dataKey );
}
} else {
return (lhs.m_dataClassID < rhs.m_dataClassID);
}
}

The documentation for this class was generated from the following file:

Generated at Wed Mar 20 2013 17:59:43 for Gaudi Framework, version v23r7 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004