DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
Conditions.cpp
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 
14 // Framework includes
15 #include <DD4hep/Printout.h>
17 
18 // C/C++ include files
19 #include <climits>
20 #include <cstdio>
21 
22 using namespace dd4hep;
23 
24 namespace {
25  int s_have_inventory = 0;
26  struct KeyTracer {
27  std::map<Condition::itemkey_type,std::string> item_names;
28  std::mutex lock;
29  void add(Condition::itemkey_type key,const std::string& item) {
30  if ( s_have_inventory > 0 ) {
31  std::lock_guard<std::mutex> protect(lock);
32  item_names.emplace(key, item);
33  }
34  }
35  std::string get(Condition::itemkey_type key) const {
36  auto i = item_names.find(key);
37  if( i != item_names.end() ) {
38  return (*i).second;
39  }
40  char text[32];
41  std::snprintf(text,sizeof(text),"%08X",key);
42  return text;
43  }
44  } s_key_tracer;
45 }
46 
49  if ( value >= 0 ) {
50  s_have_inventory = value;
51  }
52  return s_have_inventory;
53 }
54 
56  return s_key_tracer.get(ConditionKey::KeyMaker(key).values.item_key);
57 }
58 
60  return s_key_tracer.get(key);
61 }
62 
65 {
66  if ( hash_key != 0 && hash_key != ~0x0ULL ) {
67  Object* o = new Object();
68  assign(o,"","");
69  o->hash = hash_key;
70  return;
71  }
72  except("Condition","+++ Cannot create a condition with an invalid key: %016llX",hash_key);
73 }
74 
76 Condition::Condition(const std::string& nam, const std::string& typ) : Handle<Object>()
77 {
78  Object* o = new Object();
79  assign(o,nam,typ);
80  o->hash = 0;
81 }
82 
84 Condition::Condition(const std::string& nam,const std::string& typ, size_t memory)
85  : Handle<Object>()
86 {
87  void* ptr = ::operator new(sizeof(Object)+memory);
88  Object* o = new(ptr) Object();
89  assign(o,nam,typ);
90  o->hash = 0;
91 }
92 
94 std::string Condition::str(int flags) const {
95  std::stringstream output;
96  Object* o = access();
97 #if defined(DD4HEP_CONDITIONS_HAVE_NAME)
98  if ( 0 == (flags&NO_NAME) )
99  output << std::setw(16) << std::left << o->name;
100 #endif
101  if ( flags&WITH_IOV ) {
102  const IOV* ptr_iov = o->iovData();
103  output << " " << (ptr_iov ? ptr_iov->str().c_str() : "IOV:[UNKNOWN]");
104  }
105 #if !defined(DD4HEP_MINIMAL_CONDITIONS)
106  if ( flags&WITH_TYPE )
107  output << " (" << o->type << ")";
108 #endif
109  if ( flags&WITH_DATATYPE )
110  output << " -> " << o->data.dataType();
111  if ( flags&WITH_DATA )
112  output << " Data:" << o->data.str();
113 #if !defined(DD4HEP_MINIMAL_CONDITIONS)
114  if ( flags&WITH_ADDRESS )
115  output << " " << o->address;
116  if ( flags&WITH_COMMENT )
117  output << " \"" << o->comment << "\"";
118 #endif
119  return output.str();
120 }
121 
123 int Condition::dataType() const {
124  return access()->data.type;
125 }
126 
129  return access()->data;
130 }
131 
134  return *(access()->iovType());
135 }
136 
138 const dd4hep::IOV& Condition::iov() const {
139  return *(access()->iovData());
140 }
141 
142 #if !defined(DD4HEP_MINIMAL_CONDITIONS)
143 const std::string& Condition::type() const {
145  return access()->type;
146 }
147 
149 const std::string& Condition::value() const {
150  return access()->value;
151 }
152 
154 const std::string& Condition::comment() const {
155  return access()->comment;
156 }
157 
159 const std::string& Condition::address() const {
160  return access()->address;
161 }
162 #endif
163 
165 const std::type_info& Condition::typeInfo() const {
166  return descriptor().type();
167 }
168 
171  return access()->hash;
172 }
173 
177 }
178 
182 }
183 
186  return access()->flags;
187 }
188 
191  access()->setFlag(option);
192 }
193 
196  access()->unFlag(option);
197 }
198 
200 bool Condition::testFlag(mask_type option) const {
201  return access()->testFlag(option);
202 }
203 
206  const BasicGrammar* grammar = access()->data.grammar;
207  if ( !grammar ) {
208  invalidHandleError<Condition>();
209  // This code is never reached, since function above throws exception!
210  // Needed to satisfay CppCheck
211  throw std::runtime_error("Null pointer in Grammar object");
212  }
213  return *grammar;
214 }
215 
218 }
219 
221 ConditionKey::KeyMaker::KeyMaker(DetElement detector, const std::string& value) {
222  KeyMaker key_maker(detector.key(), detail::hash32(value));
223  hash = key_maker.hash;
224  s_key_tracer.add(key_maker.values.item_key, value);
225 }
226 
229  hash = KeyMaker(detector.key(), item_key).hash;
230 }
231 
233 ConditionKey::KeyMaker::KeyMaker(Condition::detkey_type det_key, const std::string& value) {
234  KeyMaker key_maker(det_key, detail::hash32(value));
235  hash = key_maker.hash;
236  s_key_tracer.add(key_maker.values.item_key, value);
237 }
238 
240 ConditionKey::ConditionKey(DetElement detector, const std::string& value) {
241  KeyMaker key_maker(detector.key(), value);
242  hash = key_maker.hash;
243  s_key_tracer.add(key_maker.values.item_key, value);
244 #ifdef DD4HEP_CONDITIONS_HAVE_NAME
245  name = detector.path()+"#"+value;
246 #endif
247 }
248 
250 ConditionKey::ConditionKey(Condition::detkey_type det_key, const std::string& value) {
251  KeyMaker key_maker(det_key, value);
252  s_key_tracer.add(key_maker.values.item_key, value);
253  hash = key_maker.hash;
254 #ifdef DD4HEP_CONDITIONS_HAVE_NAME
255  char text[32];
256  ::snprintf(text,sizeof(text),"%08X#",det_key);
257  name = text+value;
258 #endif
259 }
260 
263  hash = KeyMaker(detector.key(),item_key).hash;
264 #ifdef DD4HEP_CONDITIONS_HAVE_NAME
265  char text[32];
266  ::snprintf(text,sizeof(text),"#%08X",item_key);
267  name = detector.path()+text;
268 #endif
269 }
270 
273  KeyMaker key_maker(detector.key(), value);
274  s_key_tracer.add(key_maker.values.item_key, value);
275  return key_maker.hash;
276 }
277 
279 Condition::key_type ConditionKey::hashCode(DetElement detector, const std::string& value) {
280  KeyMaker key_maker(detector.key(), value);
281  s_key_tracer.add(key_maker.values.item_key, value);
282  return key_maker.hash;
283 }
284 
287  Condition::itemkey_type code = detail::hash32(value);
288  s_key_tracer.add(code, value);
289  return code;
290 }
291 
294  Condition::itemkey_type code = detail::hash32(value);
295  s_key_tracer.add(code, value);
296  return code;
297 }
298 
300 std::string ConditionKey::toString() const {
302  char text[64];
303  ::snprintf(text,sizeof(text),"%08X-%08X",key.values.det_key, key.values.item_key);
304 #if defined(DD4HEP_CONDITIONS_HAVE_NAME)
305  if ( !name.empty() ) {
306  std::stringstream str;
307  str << "(" << name << ") " << text;
308  return str.str();
309  }
310 #endif
311  return text;
312 }
313 
dd4hep::detail::ConditionObject::value
std::string value
Condition value (in string form)
Definition: ConditionsInterna.h:71
dd4hep::Condition::dataType
int dataType() const
Access the data type.
Definition: Conditions.cpp:123
dd4hep::DetElement::path
const std::string & path() const
Path of the detector element (not necessarily identical to placement path!)
Definition: DetElement.cpp:158
dd4hep::Condition::value
const std::string & value() const
Access the value field of the condition as a string.
Definition: Conditions.cpp:149
dd4hep::ConditionKey::hashCode
static Condition::key_type hashCode(DetElement detector, const char *value)
Hash code generation from input string.
Definition: Conditions.cpp:272
dd4hep::ConditionsSelect::~ConditionsSelect
virtual ~ConditionsSelect()
Default destructor.
Definition: Conditions.cpp:217
dd4hep::detail::have_condition_item_inventory
int have_condition_item_inventory(int value=-1)
Setup conditions item name inventory for debugging.
Definition: Conditions.cpp:48
dd4hep::Condition::NO_NAME
@ NO_NAME
Definition: Conditions.h:71
dd4hep::DetElement::key
unsigned int key() const
Access hash key of this detector element (Only valid once geometry is closed!)
Definition: DetElement.cpp:134
dd4hep::Condition::typeInfo
const std::type_info & typeInfo() const
Access to the type information.
Definition: Conditions.cpp:165
dd4hep::Condition::flags
mask_type flags() const
Flag operations: Get condition flags.
Definition: Conditions.cpp:185
dd4hep::detail::ConditionObject::hash
Condition::key_type hash
Hash value of the name.
Definition: ConditionsInterna.h:85
dd4hep::Condition::WITH_DATA
@ WITH_DATA
Definition: Conditions.h:70
dd4hep::Handle< detail::ConditionObject >::Object
detail::ConditionObject Object
Extern accessible definition of the contained element type.
Definition: Handle.h:86
ConditionsInterna.h
dd4hep::Condition::testFlag
bool testFlag(mask_type option) const
Flag operations: Test for a given a conditons flag.
Definition: Conditions.cpp:200
dd4hep::Condition::comment
const std::string & comment() const
Access the comment field of the condition.
Definition: Conditions.cpp:154
dd4hep::OpaqueDataBlock::type
unsigned int type
Data buffer type: Must be a bitmap of enum _DataTypes!
Definition: OpaqueData.h:118
dd4hep::ConditionKey::hash
Condition::key_type hash
Hashed key representation.
Definition: Conditions.h:287
dd4hep::ConditionKey::ConditionKey
ConditionKey()=default
Default constructor.
dd4hep::detail::ConditionObject::flags
Condition::mask_type flags
Flags.
Definition: ConditionsInterna.h:87
dd4hep::OpaqueDataBlock
Class describing an opaque conditions data block.
Definition: OpaqueData.h:91
dd4hep::Handle
Handle: a templated class like a shared pointer, which allows specialized access to tgeometry objects...
Definition: Handle.h:82
dd4hep::IOV::str
std::string str() const
Create string representation of the IOV.
Definition: IOV.cpp:141
dd4hep::Condition::key
key_type key() const
Hash identifier.
Definition: Conditions.cpp:170
dd4hep::detail::ConditionObject::address
std::string address
Condition address.
Definition: ConditionsInterna.h:76
dd4hep::ConditionKey::toString
std::string toString() const
Conversion to string.
Definition: Conditions.cpp:300
dd4hep::ConditionKey::KeyMaker
Helper union to interprete conditions keys.
Definition: Conditions.h:295
dd4hep::IOVType
Class describing the interval of validty type.
Definition: IOV.h:36
dd4hep::Condition::detector_key
detkey_type detector_key() const
DetElement part of the identifier.
Definition: Conditions.cpp:175
dd4hep::detail::ConditionObject::unFlag
void unFlag(Condition::mask_type option)
Flag operations: UN-Set a conditons flag.
Definition: ConditionsInterna.h:124
dd4hep::Condition::WITH_ADDRESS
@ WITH_ADDRESS
Definition: Conditions.h:66
dd4hep::Condition::detkey_type
unsigned int detkey_type
High part of the key identifies the detector element.
Definition: Conditions.h:56
dd4hep::IOV
Class describing the interval of validty.
Definition: IOV.h:66
dd4hep::DetElement
Handle class describing a detector element.
Definition: DetElement.h:187
dd4hep::BasicGrammar
Base class describing string evaluation to C++ objects using boost::spirit.
Definition: Grammar.h:55
dd4hep::Handle< detail::ConditionObject >::assign
void assign(Object *n, const std::string &nam, const std::string &title)
Assign a new named object. Note: object references must be managed by the user.
dd4hep::detail::ConditionObject::iovType
const IOVType * iovType() const
Access safely the IOV-type.
Definition: ConditionsInterna.cpp:92
dd4hep::ConditionKey::itemCode
static Condition::itemkey_type itemCode(const char *value)
32 bit hashcode of the item
Definition: Conditions.cpp:286
dd4hep::Condition::item_key
itemkey_type item_key() const
Item part of the identifier.
Definition: Conditions.cpp:180
dd4hep::Condition::WITH_COMMENT
@ WITH_COMMENT
Definition: Conditions.h:68
dd4hep::Condition::WITH_IOV
@ WITH_IOV
Definition: Conditions.h:65
dd4hep::ConditionKey::KeyMaker::KeyMaker
KeyMaker()
Definition: Conditions.h:305
dd4hep::Condition::WITH_DATATYPE
@ WITH_DATATYPE
Definition: Conditions.h:69
dd4hep::Condition::WITH_TYPE
@ WITH_TYPE
Definition: Conditions.h:67
dd4hep::Condition::str
std::string str(int with_data=WITH_IOV|WITH_ADDRESS|WITH_DATATYPE) const
Output method.
Definition: Conditions.cpp:94
dd4hep::detail::ConditionObject::comment
std::string comment
Comment string.
Definition: ConditionsInterna.h:78
dd4hep::Condition::itemkey_type
unsigned int itemkey_type
Low part of the key identifies the item identifier.
Definition: Conditions.h:58
dd4hep::Condition::unFlag
void unFlag(mask_type option)
Flag operations: UN-Set a conditons flag.
Definition: Conditions.cpp:195
dd4hep::detail::ConditionObject::setFlag
void setFlag(Condition::mask_type option)
Flag operations: Set a conditons flag.
Definition: ConditionsInterna.h:122
dd4hep::Condition::key_type
unsigned long long int key_type
Forward definition of the key type.
Definition: Conditions.h:54
dd4hep::detail::ConditionObject::iovData
const IOV * iovData() const
Access safely the IOV.
Definition: ConditionsInterna.cpp:85
dd4hep::Condition::mask_type
unsigned int mask_type
Forward definition of the object properties.
Definition: Conditions.h:60
dd4hep::Condition::type
const std::string & type() const
Access the type field of the condition.
Definition: Conditions.cpp:144
dd4hep::detail::ConditionObject
The data class behind a conditions handle.
Definition: ConditionsInterna.h:68
dd4hep::BasicGrammar::type
virtual const std::type_info & type() const =0
Access to the type information.
dd4hep::Condition::setFlag
void setFlag(mask_type option)
Flag operations: Set a conditons flag.
Definition: Conditions.cpp:190
key
unsigned char key
Definition: AlignmentsCalculator.cpp:69
dd4hep::Handle< detail::ConditionObject >::access
detail::ConditionObject * access() const
Checked object access. Throws invalid handle runtime exception if invalid handle.
dd4hep::Handle< detail::ConditionObject >::ptr
detail::ConditionObject * ptr() const
Access to the held object.
Definition: Handle.h:151
dd4hep::ConditionKey::KeyMaker::det_key
Condition::detkey_type det_key
Definition: Conditions.h:303
dd4hep::detail::get_condition_item_name
std::string get_condition_item_name(Condition::itemkey_type key)
Resolve key from conditions item name inventory for debugging.
Definition: Conditions.cpp:59
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::ConditionKey::KeyMaker::hash
Condition::key_type hash
Definition: Conditions.h:296
dd4hep::ConditionKey::item_key
Condition::itemkey_type item_key() const
Access the detector element part of the key.
Definition: Conditions.h:355
dd4hep::sim::hash
unsigned int hash(unsigned int initialSeed, unsigned int eventNumber, unsigned int runNumber)
calculate hash from initialSeed, eventID and runID
Definition: Geant4EventSeed.h:201
dd4hep::Condition::Condition
Condition()=default
Default constructor.
dd4hep::detail::ConditionObject::data
OpaqueDataBlock data
Data block.
Definition: ConditionsInterna.h:81
dd4hep::OpaqueData::grammar
const BasicGrammar * grammar
Data type.
Definition: OpaqueData.h:52
dd4hep::Condition::iovType
const IOVType & iovType() const
Access the IOV type.
Definition: Conditions.cpp:133
dd4hep::OpaqueData::dataType
const std::string & dataType() const
Access type name of the condition data block.
Definition: OpaqueData.cpp:50
dd4hep::OpaqueData::str
std::string str() const
Create string representation of the data block.
Definition: OpaqueData.cpp:34
dd4hep::ConditionKey::KeyMaker::values
struct dd4hep::ConditionKey::KeyMaker::@2 values
dd4hep::Condition::descriptor
const BasicGrammar & descriptor() const
Access to the grammar type.
Definition: Conditions.cpp:205
dd4hep::detail::ConditionObject::testFlag
bool testFlag(Condition::mask_type option) const
Flag operations: Test for a given a conditons flag.
Definition: ConditionsInterna.h:126
dd4hep::Condition::address
const std::string & address() const
Access the address string [e.g. database identifier].
Definition: Conditions.cpp:159
Printout.h
dd4hep::Condition::iov
const IOV & iov() const
Access the IOV block.
Definition: Conditions.cpp:138
dd4hep::Condition::data
OpaqueDataBlock & data() const
Access the opaque data block.
Definition: Conditions.cpp:128
dd4hep::ConditionKey::KeyMaker::item_key
Condition::itemkey_type item_key
Definition: Conditions.h:302