CMS 3D CMS Logo

Public Member Functions | Private Attributes

DQMRootSource::RunPHIDKey Class Reference

List of all members.

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 309 of file DQMRootSource.cc.


Constructor & Destructor Documentation

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

Definition at line 311 of file DQMRootSource.cc.

                                                                      : 
          processHistoryID_(phid), run_(run) { }

Member Function Documentation

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

Definition at line 315 of file DQMRootSource.cc.

References processHistoryID(), processHistoryID_, run(), and run_.

                                                      {
          if (processHistoryID_ == right.processHistoryID()) {
            return run_ < right.run();
          }
          return processHistoryID_ < right.processHistoryID();
        }
edm::ProcessHistoryID const& DQMRootSource::RunPHIDKey::processHistoryID ( ) const [inline]

Definition at line 313 of file DQMRootSource.cc.

References processHistoryID_.

Referenced by operator<().

{ return processHistoryID_; }
unsigned int DQMRootSource::RunPHIDKey::run ( void  ) const [inline]

Definition at line 314 of file DQMRootSource.cc.

References run_.

Referenced by operator<().

{ return run_; }

Member Data Documentation

Definition at line 322 of file DQMRootSource.cc.

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

unsigned int DQMRootSource::RunPHIDKey::run_ [private]

Definition at line 323 of file DQMRootSource.cc.

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