DHH Struct Reference
Collaboration diagram for DHH:

Public Member Functions

 DHH (const CLID &i, std::string k)
 
bool operator< (DHH const &rhs) const
 

Public Attributes

CLID id
 
std::string key
 

Detailed Description

Definition at line 61 of file HistorySvc.cpp.

Constructor & Destructor Documentation

DHH::DHH ( const CLID i,
std::string  k 
)
inline

Definition at line 65 of file HistorySvc.cpp.

65 :id(i), key(std::move(k)) {}
CLID id
Definition: HistorySvc.cpp:62
std::string key
Definition: HistorySvc.cpp:63
list i
Definition: ana.py:128

Member Function Documentation

bool DHH::operator< ( DHH const &  rhs) const
inline

Definition at line 67 of file HistorySvc.cpp.

67  {
68  if (id != rhs.id) {
69  return (id < rhs.id);
70  } else {
71  return (key < rhs.key);
72  }
73  }
std::string key
Definition: HistorySvc.cpp:63

Member Data Documentation

CLID DHH::id

Definition at line 62 of file HistorySvc.cpp.

std::string DHH::key

Definition at line 63 of file HistorySvc.cpp.


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