CMS 3D CMS Logo

RunIndex.h
Go to the documentation of this file.
1 #ifndef FWCore_Utilities_RunIndex_h
2 #define FWCore_Utilities_RunIndex_h
3 // -*- C++ -*-
4 //
5 // Package: FWCore/Utilities
6 // Class : edm::RunIndex
7 //
19 //
20 // Original Author: Chris Jones
21 // Created: Fri, 26 Apr 2013 19:38:56 GMT
22 //
23 
24 // system include files
25 
26 // user include files
27 
28 // forward declarations
29 namespace edm {
30  class RunPrincipal;
31 
32  class RunIndex {
33  public:
34  ~RunIndex() = default;
35  RunIndex() = delete;
36  RunIndex(const RunIndex&) = default;
37  RunIndex& operator=(const RunIndex&) = default;
38 
39  // ---------- const member functions ---------------------
40  bool operator==(const RunIndex& iIndex) const { return value() == iIndex.value(); }
41  operator unsigned int() const { return value_; }
42 
45  unsigned int value() const { return value_; }
46 
47  static RunIndex invalidRunIndex();
48 
49  private:
51  friend class RunPrincipal;
52  explicit RunIndex(unsigned int iIndex) : value_(iIndex) {}
53 
54  // ---------- member data --------------------------------
55  unsigned int value_;
56 
57  static const unsigned int invalidValue_;
58  };
59 } // namespace edm
60 
61 #endif
edm::RunIndex::~RunIndex
~RunIndex()=default
edm
HLT enums.
Definition: AlignableModifier.h:19
edm::RunIndex::invalidValue_
static const unsigned int invalidValue_
Definition: RunIndex.h:57
edm::RunIndex::RunIndex
RunIndex(unsigned int iIndex)
Definition: RunIndex.h:52
edm::RunIndex::operator==
bool operator==(const RunIndex &iIndex) const
Definition: RunIndex.h:40
createfilelist.int
int
Definition: createfilelist.py:10
edm::RunIndex::value_
unsigned int value_
Definition: RunIndex.h:55
edm::RunIndex::invalidRunIndex
static RunIndex invalidRunIndex()
Definition: RunIndex.cc:9
edm::RunIndex::operator=
RunIndex & operator=(const RunIndex &)=default
edm::RunIndex
Definition: RunIndex.h:32
edm::RunPrincipal
Definition: RunPrincipal.h:34
edm::RunIndex::value
unsigned int value() const
Definition: RunIndex.h:45
edm::RunIndex::RunIndex
RunIndex()=delete