CMS 3D CMS Logo

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

Public Member Functions

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

Private Attributes

edm::ProcessHistoryID processHistoryID_
 
unsigned int run_
 

Detailed Description

Definition at line 321 of file DQMRootSource.cc.

Constructor & Destructor Documentation

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

Definition at line 323 of file DQMRootSource.cc.

323  :
324  processHistoryID_(phid), run_(run) { }
unsigned int run() const
edm::ProcessHistoryID processHistoryID_

Member Function Documentation

bool DQMRootSource::RunPHIDKey::operator< ( RunPHIDKey const &  right) const
inline

Definition at line 327 of file DQMRootSource.cc.

References processHistoryID(), and run().

327  {
328  if (processHistoryID_ == right.processHistoryID()) {
329  return run_ < right.run();
330  }
331  return processHistoryID_ < right.processHistoryID();
332  }
edm::ProcessHistoryID processHistoryID_
edm::ProcessHistoryID const& DQMRootSource::RunPHIDKey::processHistoryID ( ) const
inline

Definition at line 325 of file DQMRootSource.cc.

Referenced by operator<().

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

Definition at line 326 of file DQMRootSource.cc.

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

326 { return run_; }

Member Data Documentation

edm::ProcessHistoryID DQMRootSource::RunPHIDKey::processHistoryID_
private

Definition at line 334 of file DQMRootSource.cc.

unsigned int DQMRootSource::RunPHIDKey::run_
private

Definition at line 335 of file DQMRootSource.cc.