CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
edm::IndexIntoFile::IndexRunLumiKey Class Reference

#include <IndexIntoFile.h>

Public Member Functions

 IndexRunLumiKey (int index, RunNumber_t run, LuminosityBlockNumber_t lumi)
 
LuminosityBlockNumber_t lumi () const
 
bool operator< (IndexRunLumiKey const &right) const
 
int processHistoryIDIndex () const
 
RunNumber_t run () const
 

Private Attributes

LuminosityBlockNumber_t lumi_
 
int processHistoryIDIndex_
 
RunNumber_t run_
 

Detailed Description

Definition at line 859 of file IndexIntoFile.h.

Constructor & Destructor Documentation

edm::IndexIntoFile::IndexRunLumiKey::IndexRunLumiKey ( int  index,
RunNumber_t  run,
LuminosityBlockNumber_t  lumi 
)
inline

Member Function Documentation

LuminosityBlockNumber_t edm::IndexIntoFile::IndexRunLumiKey::lumi ( ) const
inline

Definition at line 869 of file IndexIntoFile.h.

References edm::IndexIntoFile::RunOrLumiEntry::lumi_.

Referenced by operator<().

869 {return lumi_;}
LuminosityBlockNumber_t lumi_
bool edm::IndexIntoFile::IndexRunLumiKey::operator< ( IndexRunLumiKey const &  right) const
inline

Definition at line 871 of file IndexIntoFile.h.

References lumi(), edm::IndexIntoFile::RunOrLumiEntry::lumi_, processHistoryIDIndex(), edm::IndexIntoFile::RunOrLumiEntry::processHistoryIDIndex_, run(), and edm::IndexIntoFile::RunOrLumiEntry::run_.

871  {
872  if (processHistoryIDIndex_ == right.processHistoryIDIndex()) {
873  if (run_ == right.run()) {
874  return lumi_ < right.lumi();
875  }
876  return run_ < right.run();
877  }
878  return processHistoryIDIndex_ < right.processHistoryIDIndex();
879  }
LuminosityBlockNumber_t lumi_
int edm::IndexIntoFile::IndexRunLumiKey::processHistoryIDIndex ( ) const
inline
RunNumber_t edm::IndexIntoFile::IndexRunLumiKey::run ( ) const
inline

Member Data Documentation

LuminosityBlockNumber_t edm::IndexIntoFile::IndexRunLumiKey::lumi_
private

Definition at line 884 of file IndexIntoFile.h.

int edm::IndexIntoFile::IndexRunLumiKey::processHistoryIDIndex_
private

Definition at line 882 of file IndexIntoFile.h.

RunNumber_t edm::IndexIntoFile::IndexRunLumiKey::run_
private

Definition at line 883 of file IndexIntoFile.h.