ATLAS Offline Software
IbeamHandler.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 #include "AGDDModel/AGDDIbeam.h"
8 #include <iostream>
9 
10 IbeamHandler::IbeamHandler(const std::string& s,
12  : XMLHandler(s, c)
13 {
14 }
15 
17  xercesc::DOMNode *t)
18 {
19  bool res;
20  std::string name=getAttributeAsString(c, t, "name",res);
21  std::string material=getAttributeAsString(c, t, "material",res);
22 
23  double l=getAttributeAsDouble(c, t, "length",res);
24  double w=getAttributeAsDouble(c, t, "width",res);
25  double sw=getAttributeAsDouble(c, t, "small_width",res);
26  double h=getAttributeAsDouble(c, t, "heigth",res);
27  double sh=getAttributeAsDouble(c, t, "small_heigth",res);
28 
29  AGDDIbeam *b=new AGDDIbeam(name, c.GetVolumeStore(), c.GetSectionStore());
30  b->SetMaterial(material);
31  b->SetLength(l);
32  b->SetWidth(w);
33  b->SetSmallWidth(sw);
34  b->SetHeigth(h);
35  b->SetSmallHeigth(sh);
36 
37  std::string col=getAttributeAsString(c, t, "color",res);
38  if (!col.empty())
39  b->SetColor(col);
40 }
AGDDController.h
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
IbeamHandler::IbeamHandler
IbeamHandler(const std::string &, AGDDController &c)
Definition: IbeamHandler.cxx:10
UploadAMITag.l
list l
Definition: UploadAMITag.larcaf.py:158
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
XMLHandler::getAttributeAsDouble
double getAttributeAsDouble(AGDDController &c, const xercesc::DOMNode *t, const std::string &) const
Definition: XMLHandler.cxx:78
AGDDController
Definition: AGDDController.h:30
IbeamHandler::ElementHandle
virtual void ElementHandle(AGDDController &c, xercesc::DOMNode *t) override
Definition: IbeamHandler.cxx:16
RCU::Shell
Definition: ShellExec.cxx:28
res
std::pair< std::vector< unsigned int >, bool > res
Definition: JetGroupProductTest.cxx:14
AGDDIbeam.h
XMLHandler::getAttributeAsString
std::string getAttributeAsString(AGDDController &c, const xercesc::DOMNode *t, const std::string &) const
Definition: XMLHandler.cxx:69
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:221
plotBeamSpotMon.b
b
Definition: plotBeamSpotMon.py:77
XMLHandler
Definition: XMLHandler.h:15
query_example.col
col
Definition: query_example.py:7
IbeamHandler.h
h
AGDDIbeam
Definition: AGDDIbeam.h:13
python.IoTestsLib.w
def w
Definition: IoTestsLib.py:200
python.compressB64.c
def c
Definition: compressB64.py:93