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 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 221 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 223 of file IOVProxy.cc.

223 { 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 225 of file IOVProxy.cc.

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