#include <IndexIntoFile.h>
Public Member Functions | |
bool | operator() (IndexIntoFile::RunOrLumiIndexes const &lh, IndexIntoFile::RunOrLumiIndexes const &rh) |
Definition at line 1056 of file IndexIntoFile.h.
bool edm::Compare_Index_Run::operator() | ( | IndexIntoFile::RunOrLumiIndexes const & | lh, |
IndexIntoFile::RunOrLumiIndexes const & | rh | ||
) |
Definition at line 1809 of file IndexIntoFile.cc.
References edm::IndexIntoFile::RunOrLumiIndexes::processHistoryIDIndex(), and edm::IndexIntoFile::RunOrLumiIndexes::run().
{ if(lh.processHistoryIDIndex() == rh.processHistoryIDIndex()) { return lh.run() < rh.run(); } return lh.processHistoryIDIndex() < rh.processHistoryIDIndex(); }