ProductID

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
#ifndef DataFormats_Provenance_ProductID_h
#define DataFormats_Provenance_ProductID_h

/*----------------------------------------------------------------------
  
ProductID: A unique identifier for each WrapperBase within a process.
Used only in Ref, Ptr, and similar classes.

The high order 16 bits is the process index, identifying the process
in which the product was created.  Exception: An index of 0 means that
the product was created prior to the new format (i.e. prior to CMSSW_3_0_0.

The low order 16 bits is the product index, identifying the product that
in which the product was created.  An index of zero means no product.


The 

----------------------------------------------------------------------*/

#include <iosfwd>

namespace edm {

  typedef unsigned short ProcessIndex;
  typedef unsigned short ProductIndex;
  class ProductID {
  public:
    ProductID() : processIndex_(0), productIndex_(0) {}
    explicit ProductID(ProductIndex prodIndex) : processIndex_(0), productIndex_(prodIndex) {}
    ProductID(ProcessIndex procIndex, ProductIndex prodIndex) : processIndex_(procIndex), productIndex_(prodIndex) {}
    bool isValid() const { return productIndex_ != 0; }
    ProcessIndex processIndex() const { return processIndex_; }
    ProcessIndex productIndex() const { return productIndex_; }
    ProductIndex id() const { return productIndex_; }  // backward compatibility
    void reset() { processIndex_ = productIndex_ = 0; }

    void swap(ProductID& other);

  private:
    ProcessIndex processIndex_;
    ProductIndex productIndex_;
  };

  inline void swap(ProductID& a, ProductID& b) { a.swap(b); }

  inline bool operator==(ProductID const& lh, ProductID const& rh) {
    return lh.processIndex() == rh.processIndex() && lh.productIndex() == rh.productIndex();
  }
  inline bool operator!=(ProductID const& lh, ProductID const& rh) { return !(lh == rh); }

  bool operator<(ProductID const& lh, ProductID const& rh);

  std::ostream& operator<<(std::ostream& os, ProductID const& id);
}  // namespace edm
#endif