CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
edm::IndexIntoFile::IndexRunKey Class Reference

#include <IndexIntoFile.h>

Public Member Functions

 IndexRunKey (int index, RunNumber_t run)
 
bool operator< (IndexRunKey const &right) const
 
int processHistoryIDIndex () const
 
RunNumber_t run () const
 

Private Attributes

int processHistoryIDIndex_
 
RunNumber_t run_
 

Detailed Description

Definition at line 792 of file IndexIntoFile.h.

Constructor & Destructor Documentation

edm::IndexIntoFile::IndexRunKey::IndexRunKey ( int  index,
RunNumber_t  run 
)
inline

Definition at line 794 of file IndexIntoFile.h.

Member Function Documentation

bool edm::IndexIntoFile::IndexRunKey::operator< ( IndexRunKey const &  right) const
inline

Definition at line 802 of file IndexIntoFile.h.

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

802  {
803  if (processHistoryIDIndex_ == right.processHistoryIDIndex()) {
804  return run_ < right.run();
805  }
806  return processHistoryIDIndex_ < right.processHistoryIDIndex();
807  }
int edm::IndexIntoFile::IndexRunKey::processHistoryIDIndex ( ) const
inline

Definition at line 799 of file IndexIntoFile.h.

References processHistoryIDIndex_.

Referenced by operator<().

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

Definition at line 800 of file IndexIntoFile.h.

References run_.

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

800 {return run_;}

Member Data Documentation

int edm::IndexIntoFile::IndexRunKey::processHistoryIDIndex_
private

Definition at line 810 of file IndexIntoFile.h.

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

RunNumber_t edm::IndexIntoFile::IndexRunKey::run_
private

Definition at line 811 of file IndexIntoFile.h.

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