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

158 { return ( x < y.first ); }
Definition: DDAxes.h:10
bool cond::persistency::IOVComp::operator() ( const cond::Time_t x,
const cond::Time_t y 
)
inline

Definition at line 246 of file IOVProxy.cc.

246 { return (x < y); }
Definition: DDAxes.h:10
bool cond::persistency::IOVComp::operator() ( const cond::Time_t x,
const std::tuple< cond::Time_t, cond::Hash > &  y 
)
inline

Definition at line 248 of file IOVProxy.cc.

248 { return ( x < std::get<0>(y) ); }
Definition: DDAxes.h:10