ATLAS Offline Software
Toggle main menu visibility
Loading...
Searching...
No Matches
DetectorDescription
AGDD
AGDDHandlers
src
unionHandler.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
AGDDHandlers/unionHandler.h
"
6
#include "
AGDDControl/XercesParser.h
"
7
#include "
AGDDControl/AGDDController.h
"
8
#include "
AGDDModel/AGDDUnion.h
"
9
#include <iostream>
10
#include "
AGDDKernel/AGDDPositioner.h
"
11
#include "
AGDDKernel/AGDDVolumeStore.h
"
12
#include "
AGDDKernel/AGDDPositionerStore.h
"
13
14
using namespace
xercesc;
15
16
unionHandler::unionHandler
(
const
std::string& s,
17
AGDDController
& c)
18
:
XMLHandler
(s, c)
19
{
20
// std::cout<<"Creating handler for composition"<<std::endl;
21
}
22
23
void
unionHandler::ElementHandle
(
AGDDController
& c,
24
xercesc::DOMNode *t)
25
{
26
AGDDVolumeStore
& vs = c.GetVolumeStore();
27
AGDDSectionStore
&
ss
= c.GetSectionStore();
28
AGDDPositionerStore
& ps = c.GetPositionerStore();
29
30
bool
res
;
31
std::string name=
getAttributeAsString
(c, t,
"name"
,
res
);
32
33
AGDDUnion
*u=
new
AGDDUnion
(name, vs,
ss
);
34
35
StopLoop
(
true
);
36
37
DOMNode* child;
38
39
int
before=ps.NrOfPositioners();
40
41
IAGDDParser
& parser = *c.GetParser();
42
for
(child=t->getFirstChild();child!=0;child=child->getNextSibling())
43
{
44
if
(child->getNodeType()==DOMNode::ELEMENT_NODE) {
45
parser.elementLoop(c, child);
46
}
47
}
48
49
int
after=ps.NrOfPositioners();
50
for
(
int
i=before;i<after;i++)
51
{
52
AGDDPositioner
*posit=ps.GetPositioner(i);
53
if
(vs.
Exist
(posit->
Volume
()))
54
u->AddDaughter(posit);
55
}
56
57
std::string col=
getAttributeAsString
(c, t,
"color"
,
res
);
58
if
(
res
)
59
u->SetColor(col);
60
}
AGDDController.h
AGDDPositionerStore.h
AGDDPositioner.h
AGDDUnion.h
AGDDVolumeStore.h
res
std::pair< std::vector< unsigned int >, bool > res
Definition
JetGroupProductTest.cxx:11
ss
static Double_t ss
Definition
LArPhysWaveHECTool.cxx:37
XercesParser.h
AGDDController
Definition
AGDDController.h:30
AGDDPositionerStore
Definition
AGDDPositionerStore.h:14
AGDDPositioner
Definition
AGDDPositioner.h:18
AGDDPositioner::Volume
const std::string & Volume()
Definition
AGDDPositioner.cxx:21
AGDDSectionStore
Definition
AGDDSectionStore.h:15
AGDDUnion
Definition
AGDDUnion.h:13
AGDDVolumeStore
Definition
AGDDVolumeStore.h:15
AGDDVolumeStore::Exist
bool Exist(std::string)
Definition
AGDDVolumeStore.cxx:20
IAGDDParser
Definition
IAGDDParser.h:15
XMLHandler::StopLoop
void StopLoop(bool)
Definition
XMLHandler.cxx:28
XMLHandler::XMLHandler
XMLHandler(const std::string &n, AGDDController &c)
Definition
XMLHandler.cxx:15
XMLHandler::getAttributeAsString
std::string getAttributeAsString(AGDDController &c, const xercesc::DOMNode *t, const std::string &) const
Definition
XMLHandler.cxx:69
unionHandler::unionHandler
unionHandler(const std::string &, AGDDController &c)
Definition
unionHandler.cxx:16
unionHandler::ElementHandle
virtual void ElementHandle(AGDDController &c, xercesc::DOMNode *t) override
Definition
unionHandler.cxx:23
unionHandler.h
Generated on
for ATLAS Offline Software by
1.17.0