CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions
cond::persistency::IOVComp Struct Reference

Public Member Functions

bool operator() (const cond::Time_t &x, const cond::Time_t &y)
 
bool operator() (const cond::Time_t &x, const std::tuple< cond::Time_t, cond::Hash > &y)
 
bool operator() (const cond::Time_t &x, const std::pair< cond::Time_t, boost::posix_time::ptime > &y)
 

Detailed Description

Definition at line 11 of file IOVProxy.cc.

Member Function Documentation

bool cond::persistency::IOVComp::operator() ( const cond::Time_t x,
const cond::Time_t y 
)
inline

Definition at line 12 of file IOVProxy.cc.

12 { return (x < y); }
bool cond::persistency::IOVComp::operator() ( const cond::Time_t x,
const std::tuple< cond::Time_t, cond::Hash > &  y 
)
inline

Definition at line 14 of file IOVProxy.cc.

14  {
15  return (x < std::get<0>(y));
16  }
bool cond::persistency::IOVComp::operator() ( const cond::Time_t x,
const std::pair< cond::Time_t, boost::posix_time::ptime > &  y 
)
inline

Definition at line 34 of file CondDBTools.cc.

34  {
35  return (x < y.first);
36  }