CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
DQMRootSource::RunLumiPHIDKey Class Reference

Public Member Functions

unsigned int lumi () const
 
bool operator< (RunLumiPHIDKey const &right) const
 
edm::ProcessHistoryID const & processHistoryID () const
 
unsigned int run () const
 
 RunLumiPHIDKey (edm::ProcessHistoryID const &phid, unsigned int run, unsigned int lumi)
 

Private Attributes

unsigned int lumi_
 
edm::ProcessHistoryID processHistoryID_
 
unsigned int run_
 

Detailed Description

Definition at line 338 of file DQMRootSource.cc.

Constructor & Destructor Documentation

DQMRootSource::RunLumiPHIDKey::RunLumiPHIDKey ( edm::ProcessHistoryID const &  phid,
unsigned int  run,
unsigned int  lumi 
)
inline

Definition at line 340 of file DQMRootSource.cc.

340  :
341  processHistoryID_(phid), run_(run), lumi_(lumi) { }
unsigned int run() const
edm::ProcessHistoryID processHistoryID_

Member Function Documentation

unsigned int DQMRootSource::RunLumiPHIDKey::lumi ( ) const
inline

Definition at line 344 of file DQMRootSource.cc.

Referenced by operator<().

344 { return lumi_; }
bool DQMRootSource::RunLumiPHIDKey::operator< ( RunLumiPHIDKey const &  right) const
inline

Definition at line 345 of file DQMRootSource.cc.

References lumi(), processHistoryID(), and run().

345  {
346  if (processHistoryID_ == right.processHistoryID()) {
347  if (run_ == right.run()) {
348  return lumi_ < right.lumi();
349  }
350  return run_ < right.run();
351  }
352  return processHistoryID_ < right.processHistoryID();
353  }
edm::ProcessHistoryID processHistoryID_
edm::ProcessHistoryID const& DQMRootSource::RunLumiPHIDKey::processHistoryID ( ) const
inline

Definition at line 342 of file DQMRootSource.cc.

Referenced by operator<().

342 { return processHistoryID_; }
edm::ProcessHistoryID processHistoryID_
unsigned int DQMRootSource::RunLumiPHIDKey::run ( ) const
inline

Definition at line 343 of file DQMRootSource.cc.

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

343 { return run_; }

Member Data Documentation

unsigned int DQMRootSource::RunLumiPHIDKey::lumi_
private

Definition at line 357 of file DQMRootSource.cc.

edm::ProcessHistoryID DQMRootSource::RunLumiPHIDKey::processHistoryID_
private

Definition at line 355 of file DQMRootSource.cc.

unsigned int DQMRootSource::RunLumiPHIDKey::run_
private

Definition at line 356 of file DQMRootSource.cc.