CMS 3D CMS Logo

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

Public Member Functions

bool operator() (const cond::Time_t &x, const std::pair< cond::Time_t, boost::posix_time::ptime > &y)
 
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)
 

Detailed Description

Definition at line 274 of file IOVProxy.cc.

Member Function Documentation

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 82 of file CondDBTools.cc.

82 { return ( x < y.first ); }
bool cond::persistency::IOVComp::operator() ( const cond::Time_t x,
const cond::Time_t y 
)
inline

Definition at line 276 of file IOVProxy.cc.

276 { 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 278 of file IOVProxy.cc.

278 { return ( x < std::get<0>(y) ); }