DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
XMLParsers.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 Markus Frank
11 // \date 2017-03-15
12 // \version 1.0
13 //
14 //==========================================================================
15 #ifndef DD4HEP_NONE
16 
17 // Framework include files
18 #include <DD4hep/Objects.h>
19 #include <DD4hep/Printout.h>
20 #include <DD4hep/OpaqueData.h>
22 #include <XML/XMLParsers.h>
23 #include <XML/XMLDimension.h>
24 #include <XML/DocumentHandler.h>
25 
26 
27 // C/C++ include files
28 
29 using std::string;
30 using namespace dd4hep;
32 typedef dd4hep::xml::Dimension xml_dim_t;
34 
35 namespace {
36  PrintLevel s_print = DEBUG;
37 }
38 
41  bool old = s_print==ALWAYS;
42  s_print = value ? ALWAYS : DEBUG;
43  return old;
44 }
45 
48  xml_dim_t r(e);
49  rot.SetComponents(r.z(), r.y(), r.x());
50  printout(s_print,"<rotation>",
51  " Rotation: x=%9.3f y=%9.3f z=%9.3f phi=%7.4f psi=%7.4f theta=%7.4f",
52  r.x(), r.y(), r.z(), rot.Phi(), rot.Psi(), rot.Theta());
53 }
54 
57  xml_dim_t p(e);
58  pos.SetXYZ(p.x(), p.y(), p.z());
59  printout(s_print,"<position>"," Position: x=%9.3f y=%9.3f z=%9.3f",
60  pos.X(), pos.Y(), pos.Z());
61 }
62 
65  xml_dim_t p(e);
66  double x,y,z;
67  tr.SetXYZ(x=p.x(), y=p.y(), z=p.z());
68  printout(s_print,"<translation>"," Pivot: x=%9.3f y=%9.3f z=%9.3f",x,y,z);
69 }
70 
73  Position pos;
74  RotationZYX rot;
75  Translation3D piv;
76  xml_h child_rot, child_pos, child_piv;
77 
78  if ( (child_pos=e.child(_U(position),false)) )
79  parse(child_pos, delta.translation);
80  if ( (child_rot=e.child(_U(rotation),false)) ) {
81  parse(child_rot, delta.rotation);
82  if ( (child_piv=e.child(_U(pivot),false)) )
83  parse(child_piv, delta.pivot);
84  }
85  if ( child_rot && child_pos && child_piv )
87  else if ( child_rot && child_pos )
89  else if ( child_rot && child_piv )
91  else if ( child_rot )
93  else if ( child_pos )
95 }
96 
99  Delta& delta = block.bind<Delta>();
100  parse(e, delta);
101 }
102 
105  string val_type = e.attr<string>(_U(value));
106  string key_type = e.attr<string>(_U(key));
107  detail::MapBinder binder;
108 
109  detail::OpaqueDataBinder::bind_map(binder, b, key_type, val_type);
110  for(xml_coll_t i(e,_U(item)); i; ++i) {
111  // If explicit key, value data are present in attributes:
112  if ( i.hasAttr(_U(key)) && i.hasAttr(_U(value)) ) {
113  string key = i.attr<string>(_U(key));
114  string val = i.attr<string>(_U(value));
115  detail::OpaqueDataBinder::insert_map(binder, b, key_type, key, val_type, val);
116  continue;
117  }
118  // Otherwise interprete the data directly from the data content
119  detail::OpaqueDataBinder::insert_map(binder, b, key_type, val_type, i.text());
120  }
121 }
122 
125  xml_dim_t elt(e);
126  string typ = elt.typeStr();
127  string val = elt.hasAttr(_U(value)) ? elt.valueStr() : elt.text();
128  if ( !detail::OpaqueDataBinder::bind_sequence(block, typ, val) ) {
129  except("XMLParsers",
130  "++ Failed to convert unknown sequence conditions type: %s",typ.c_str());
131  }
132 }
133 
134 #endif
dd4hep::xml::Collection_t
Class to support the access to collections of XmlNodes (or XmlElements)
Definition: XMLElements.h:636
dd4hep::Delta::HAVE_TRANSLATION
@ HAVE_TRANSLATION
Definition: AlignmentData.h:48
Objects.h
dd4hep::detail::OpaqueDataBinder::bind_sequence
static bool bind_sequence(OBJECT &object, const std::string &typ, const std::string &val)
Binding function for sequences (unmapped STL containers)
dd4hep::Delta::HAVE_PIVOT
@ HAVE_PIVOT
Definition: AlignmentData.h:50
dd4hep::xml::parse_sequence
void parse_sequence(Handle_t e, OpaqueDataBlock &block)
Converts linear STL containers from their string representation.
Definition: XMLParsers.cpp:124
dd4hep::Delta::HAVE_ROTATION
@ HAVE_ROTATION
Definition: AlignmentData.h:49
dd4hep::Delta::rotation
RotationZYX rotation
Definition: AlignmentData.h:43
delta
const Delta * delta
Definition: AlignmentsCalculator.cpp:67
dd4hep::OpaqueDataBlock
Class describing an opaque conditions data block.
Definition: OpaqueData.h:91
dd4hep::Delta::flags
unsigned int flags
Definition: AlignmentData.h:44
dd4hep::xml::Handle_t
Class to easily access the properties of single XmlElements.
Definition: XMLElements.h:380
dd4hep::xml::parse_delta
void parse_delta(Handle_t e, OpaqueDataBlock &block)
Parse delta into an opaque data block.
Definition: XMLParsers.cpp:98
dd4hep::Delta
Class describing an condition to re-adjust an alignment.
Definition: AlignmentData.h:38
dd4hep::xml::parse
void parse(Handle_t e, RotationZYX &rot)
Convert rotation XML objects to dd4hep::RotationZYX.
Definition: XMLParsers.cpp:47
dd4hep::OpaqueDataBlock::bind
void * bind(const BasicGrammar *grammar)
Bind data value.
Definition: OpaqueData.cpp:124
dd4hep::xml::setXMLParserDebug
bool setXMLParserDebug(bool new_value)
Set debug print level for this module. Default is OFF.
Definition: XMLParsers.cpp:40
DocumentHandler.h
dd4hep::Translation3D
ROOT::Math::Translation3D Translation3D
Definition: Objects.h:118
dd4hep::Delta::translation
Position translation
Definition: AlignmentData.h:41
XMLDimension.h
XMLParsers.h
dd4hep::Delta::pivot
Pivot pivot
Definition: AlignmentData.h:42
_U
#define _U(a)
Definition: Tags.h:23
xml_coll_t
dd4hep::xml::Collection_t xml_coll_t
Definition: XMLParsers.cpp:33
dd4hep::xml::Handle_t::child
Handle_t child(const XmlChar *tag, bool throw_exception=true) const
Access a single child by its tag name (unicode)
Definition: XMLElements.cpp:713
OpaqueData.h
dd4hep::detail::OpaqueDataBinder::insert_map
static bool insert_map(const BINDER &b, OBJECT &o, const std::string &key_type, const std::string &key, const std::string &val_type, const std::string &val)
Filling function for STL maps.
Definition: OpaqueDataBinder.cpp:302
dd4hep::Position
ROOT::Math::XYZVector Position
Definition: Objects.h:80
key
unsigned char key
Definition: AlignmentsCalculator.cpp:69
xml_dim_t
dd4hep::xml::Dimension xml_dim_t
Definition: XMLParsers.cpp:32
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::xml::parse_mapping
void parse_mapping(Handle_t e, OpaqueDataBlock &block)
Converts opaque maps to OpaqueDataBlock objects.
Definition: XMLParsers.cpp:104
dd4hep::detail::OpaqueDataBinder::bind_map
static bool bind_map(const BINDER &b, OBJECT &o, const std::string &key_type, const std::string &val_type)
Binding function for STL maps. Does not fill data!
Definition: OpaqueDataBinder.cpp:272
dd4hep::RotationZYX
ROOT::Math::RotationZYX RotationZYX
Definition: Objects.h:104
xml_h
dd4hep::xml::Handle_t xml_h
Definition: XMLParsers.cpp:31
dd4hep::detail::MapBinder
Helper class to bind STL map objects.
Definition: OpaqueDataBinder.h:66
dd4hep::xml::Handle_t::attr
T attr(const Attribute a) const
Access typed attribute value by the XmlAttr.
Definition: XMLElements.h:454
Printout.h
OpaqueDataBinder.h
xml_dim_t
dd4hep::xml::Dimension xml_dim_t
Definition: XML.h:31