CMS 3D CMS Logo

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

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

Definition at line 306 of file IOVProxy.cc.

306 { 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 308 of file IOVProxy.cc.

308  {
309  return (x < std::get<0>(y));
310  }