Warning, file /include/DD4hep/PropertyTable.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef DD4HEP_PROPERTYTABLE_H
0014 #define DD4HEP_PROPERTYTABLE_H
0015
0016
0017 #include <DD4hep/Handle.h>
0018
0019
0020 #include <TGDMLMatrix.h>
0021
0022
0023 namespace dd4hep {
0024
0025
0026
0027
0028
0029
0030
0031
0032 class PropertyTable : public Handle<TGDMLMatrix> {
0033 public:
0034 typedef TGDMLMatrix Object;
0035
0036 public:
0037
0038 PropertyTable() = default;
0039
0040 PropertyTable(const PropertyTable& e) = default;
0041
0042 PropertyTable(const Handle<Object>& e) : Handle<Object>(e) { }
0043
0044 template <typename Q>
0045 PropertyTable(const Handle<Q>& e) : Handle<Object>(e) { }
0046
0047 PropertyTable(Object* obj) : Handle<Object>(obj) { }
0048
0049 PropertyTable(Detector& description,
0050 const std::string& table_name,
0051 const std::string& property_name,
0052 size_t num_rows,
0053 size_t num_cols);
0054
0055
0056 PropertyTable& operator=(const PropertyTable& m) = default;
0057 };
0058
0059 }
0060 #endif