DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
IOV.h
Go to the documentation of this file.
1 //==========================================================================
2 // AIDA Detector description implementation
3 //--------------------------------------------------------------------------
4 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
5 // All rights reserved.
6 //
7 // For the licensing terms see $DD4hepINSTALL/LICENSE.
8 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
9 //
10 // Author : M.Frank
11 //
12 //==========================================================================
13 #ifndef DD4HEP_IOV_H
14 #define DD4HEP_IOV_H
15 
16 // C/C++ include files
17 #include <string>
18 #include <limits>
19 #include <utility>
20 #include <cstdint>
21 
23 namespace dd4hep {
24 
25  // Forward declarations
26  class IOVType;
27  class IOV;
28 
30 
36  class IOVType {
37  public:
38  static constexpr unsigned int UNKNOWN_IOV = ~0x0;
40  unsigned int type = UNKNOWN_IOV;
42  std::string name;
44  IOVType() = default;
46  ~IOVType() = default;
48  IOVType(const IOVType& copy) = default; //: type(copy.type), name(copy.name) {}
50  IOVType(IOVType&& copy) = default;
52  IOVType& operator=(const IOVType& copy) = default;
54  IOVType& operator=(IOVType&& copy) = default;
56  std::string str() const;
57  };
58 
60 
66  class IOV {
67  private:
69  explicit IOV() = delete;
70  public:
72  using Key_value_type = std::int64_t;
73  using Key = std::pair<Key_value_type, Key_value_type>;
74 
75  static constexpr Key_value_type MIN_KEY = std::numeric_limits<Key_value_type>::min();
76  static constexpr Key_value_type MAX_KEY = std::numeric_limits<Key_value_type>::max();
77 
79  const IOVType* iovType = 0;
83  int optData = 0;
85  unsigned int type = IOVType::UNKNOWN_IOV;
86 
88  explicit IOV(const IOVType* typ);
90  explicit IOV(const IOVType* typ, const Key& key);
92  explicit IOV(const IOVType* typ, Key_value_type iov_value);
94  IOV(const IOV& copy) = default;
96  IOV(IOV&& copy) = default;
98  ~IOV() = default;
100  IOV& operator=(const IOV& c) = default;
102  IOV& operator=(IOV&& c) = default;
104  bool operator<(const IOV& test) const;
106  void move(IOV& from);
108  std::string str() const;
110  bool has_range() const { return keyData.first != keyData.second; }
112  bool is_discrete() const { return keyData.first == keyData.second; }
114  Key key() const { return keyData; }
116  void set(const Key& value);
118  void set(Key_value_type value);
120  void set(Key_value_type val_1, Key_value_type val_2);
122  IOV& reset();
124  IOV& invert();
126  void iov_intersection(const IOV& comparator);
128  void iov_intersection(const IOV::Key& comparator);
130  void iov_union(const IOV& comparator);
132  void iov_union(const IOV::Key& comparator);
133 
135 
138  bool contains(const IOV& iov) const;
140  static IOV forever(const IOVType* typ)
141  { return IOV(typ, Key(MIN_KEY, MAX_KEY)); }
143  static Key key_forever()
144  { return Key(MIN_KEY, MAX_KEY); }
146  static bool same_type(const IOV& iov, const IOV& test) {
147  unsigned int typ1 = iov.iovType ? iov.iovType->type : iov.type;
148  unsigned int typ2 = test.iovType ? test.iovType->type : test.type;
149  return typ1 == typ2;
150  }
152  static bool key_is_contained(const Key& key, const Key& test)
153  { return key.first >= test.first && key.second <= test.second; }
155  static bool key_contains_range(const Key& key, const Key& test)
156  { return key.first <= test.first && key.second >= test.second; }
158  static bool key_overlaps_lower_end(const Key& key, const Key& test)
159  { return key.first <= test.second && key.first >= test.first; }
161  static bool key_overlaps_higher_end(const Key& key, const Key& test)
162  { return key.second >= test.first && key.second <= test.second; }
164  static bool key_partially_contained(const Key& key, const Key& test)
165  {
166  return
167  (test.first <= key.first && key.second >= test.second) || // test fully contained in key
168  (test.first <= key.first && key.first <= test.second) || // test overlaps left edge of key
169  (test.first <= key.second && key.second <= test.second); // test overlaps right edge of key
170  }
172  static bool full_match(const IOV& iov, const IOV& test)
173  { return same_type(iov,test) && key_is_contained(iov.keyData,test.keyData); }
175  static bool partial_match(const IOV& iov, const IOV& test)
176  { return same_type(iov,test) && key_partially_contained(iov.keyData,test.keyData); }
177  };
178 
180  inline bool IOV::operator<(const IOV& test) const {
181  if ( type > test.type ) return false; // Actually this should never happen!
182  if ( keyData.first > test.keyData.first ) return false;
183  if ( keyData.second > test.keyData.second ) return false;
184  return true;
185  }
186 
187 } /* End namespace dd4hep */
188 #endif // DD4HEP_IOV_H
dd4hep::IOV::iov_intersection
void iov_intersection(const IOV &comparator)
Set the intersection of this IOV with the argument IOV.
Definition: IOV.cpp:99
dd4hep::IOVType::operator=
IOVType & operator=(IOVType &&copy)=default
Move assignment operator.
dd4hep::IOV::contains
bool contains(const IOV &iov) const
Check for validity containment.
Definition: IOV.cpp:180
dd4hep::IOVType::name
std::string name
String name.
Definition: IOV.h:42
dd4hep::IOV::key_partially_contained
static bool key_partially_contained(const Key &key, const Key &test)
Check if IOV 'test' has an overlap on the upper interval edge with IOV 'key'.
Definition: IOV.h:164
dd4hep::IOV::optData
int optData
Optional user data.
Definition: IOV.h:83
dd4hep::IOV::IOV
IOV(IOV &&copy)=default
Move constructor.
dd4hep::IOV::~IOV
~IOV()=default
Standard Destructor.
dd4hep::IOV::invert
IOV & invert()
Invert the key values (first=second and second=first)
Definition: IOV.cpp:92
dd4hep::IOV::Key_value_type
std::int64_t Key_value_type
Key definition. Use fixed width type, though not portable!
Definition: IOV.h:72
dd4hep::IOVType::UNKNOWN_IOV
static constexpr unsigned int UNKNOWN_IOV
Definition: IOV.h:38
dd4hep::IOV::forever
static IOV forever(const IOVType *typ)
Conditions key representing eternity.
Definition: IOV.h:140
dd4hep::IOVType::str
std::string str() const
Conversion to string.
Definition: IOV.cpp:43
dd4hep::IOV::str
std::string str() const
Create string representation of the IOV.
Definition: IOV.cpp:141
dd4hep::IOV::Key
std::pair< Key_value_type, Key_value_type > Key
Definition: IOV.h:73
dd4hep::IOVType::IOVType
IOVType(const IOVType &copy)=default
Copy constructor.
dd4hep::IOV::key_forever
static Key key_forever()
Conditions key representing eternity.
Definition: IOV.h:143
dd4hep::IOVType
Class describing the interval of validty type.
Definition: IOV.h:36
dd4hep::IOV::IOV
IOV()=delete
Initializing constructor: Does not set reference to IOVType !
dd4hep::IOV::set
void set(Key_value_type val_1, Key_value_type val_2)
Set range IOV value.
dd4hep::IOV
Class describing the interval of validty.
Definition: IOV.h:66
dd4hep::IOV::move
void move(IOV &from)
Move the data content: 'from' will be reset to NULL.
Definition: IOV.cpp:132
dd4hep::IOVType::operator=
IOVType & operator=(const IOVType &copy)=default
Assignment operator.
dd4hep::IOV::set
void set(const Key &value)
Set discrete IOV value.
Definition: IOV.cpp:69
dd4hep::IOV::is_discrete
bool is_discrete() const
Check if the IOV corresponds to a range.
Definition: IOV.h:112
dd4hep::IOV::key_overlaps_lower_end
static bool key_overlaps_lower_end(const Key &key, const Key &test)
Check if IOV 'test' has an overlap on the lower interval edge with IOV 'key'.
Definition: IOV.h:158
dd4hep::IOV::keyData
Key keyData
IOV key (if second==first, discrete, otherwise range)
Definition: IOV.h:81
dd4hep::IOV::key_overlaps_higher_end
static bool key_overlaps_higher_end(const Key &key, const Key &test)
Check if IOV 'test' has an overlap on the upper interval edge with IOV 'key'.
Definition: IOV.h:161
dd4hep::IOV::has_range
bool has_range() const
Check if the IOV corresponds to a range.
Definition: IOV.h:110
dd4hep::IOV::key_is_contained
static bool key_is_contained(const Key &key, const Key &test)
Check if IOV 'test' is fully contained in IOV 'key'.
Definition: IOV.h:152
dd4hep::IOV::partial_match
static bool partial_match(const IOV &iov, const IOV &test)
Check if IOV 'test' is of same type and is at least partially contained in iov.
Definition: IOV.h:175
dd4hep::IOV::key
Key key() const
Get the local key of the IOV.
Definition: IOV.h:114
dd4hep::IOVType::IOVType
IOVType(IOVType &&copy)=default
Move constructor.
dd4hep::IOV::type
unsigned int type
IOV buffer type: Must be a bitmap!
Definition: IOV.h:85
dd4hep::IOVType::IOVType
IOVType()=default
Standard Constructor.
dd4hep::IOV::MIN_KEY
static constexpr Key_value_type MIN_KEY
Definition: IOV.h:75
dd4hep::IOVType::~IOVType
~IOVType()=default
Standard Destructor.
dd4hep::IOV::iov_union
void iov_union(const IOV &comparator)
Set the union of this IOV with the argument IOV.
Definition: IOV.cpp:115
dd4hep::IOV::operator=
IOV & operator=(const IOV &c)=default
Assignment operator.
dd4hep::IOV::operator<
bool operator<(const IOV &test) const
Allow for IOV sorting in maps.
Definition: IOV.h:180
dd4hep::IOV::full_match
static bool full_match(const IOV &iov, const IOV &test)
Check if IOV 'test' is of same type and is fully contained in iov.
Definition: IOV.h:172
dd4hep::IOV::reset
IOV & reset()
Set keys to unphysical values (LONG_MAX, LONG_MIN)
Definition: IOV.cpp:85
dd4hep::IOV::iovType
const IOVType * iovType
Reference to IOV type.
Definition: IOV.h:79
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::IOV::IOV
IOV(const IOV &copy)=default
Copy constructor.
dd4hep::detail::tools::copy
void copy(Alignment from, Alignment to)
Copy alignment object from source object.
Definition: AlignmentTools.cpp:43
dd4hep::IOV::operator=
IOV & operator=(IOV &&c)=default
Move assignment operator.
dd4hep::IOV::MAX_KEY
static constexpr Key_value_type MAX_KEY
Definition: IOV.h:76
dd4hep::IOVType::type
unsigned int type
integer identifier used internally
Definition: IOV.h:40
dd4hep::IOV::key_contains_range
static bool key_contains_range(const Key &key, const Key &test)
Same as above, but reverse logic. Gives sometimes more understandable logic.
Definition: IOV.h:155
dd4hep::IOV::same_type
static bool same_type(const IOV &iov, const IOV &test)
Check if 2 IOV objects are of the same type.
Definition: IOV.h:146
dd4hep::IOV::set
void set(Key_value_type value)
Set discrete IOV value.