CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 885 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 892 of file IndexIntoFile.h.

References lumi_.

Referenced by operator<(), and upgradeWorkflowComponents.UpgradeWorkflowAging::setup_().

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

Definition at line 894 of file IndexIntoFile.h.

References lumi(), lumi_, processHistoryIDIndex(), processHistoryIDIndex_, run(), and run_.

894  {
895  if (processHistoryIDIndex_ == right.processHistoryIDIndex()) {
896  if (run_ == right.run()) {
897  return lumi_ < right.lumi();
898  }
899  return run_ < right.run();
900  }
901  return processHistoryIDIndex_ < right.processHistoryIDIndex();
902  }
LuminosityBlockNumber_t lumi_
int edm::IndexIntoFile::IndexRunLumiKey::processHistoryIDIndex ( ) const
inline

Definition at line 890 of file IndexIntoFile.h.

References processHistoryIDIndex_.

Referenced by operator<().

RunNumber_t edm::IndexIntoFile::IndexRunLumiKey::run ( ) const
inline

Definition at line 891 of file IndexIntoFile.h.

References run_.

Referenced by Types.EventID::cppID(), Types.LuminosityBlockID::cppID(), and operator<().

891 { return run_; }

Member Data Documentation

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

Definition at line 907 of file IndexIntoFile.h.

Referenced by lumi(), and operator<().

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

Definition at line 905 of file IndexIntoFile.h.

Referenced by operator<(), and processHistoryIDIndex().

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

Definition at line 906 of file IndexIntoFile.h.

Referenced by operator<(), and run().