ParamGetDDBaseBaseParamNodeClass.php
1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
define ("PARAMGETDDBASEBASEPARAM_NAME", "baseParam");
define ("PARAMGETDDBASEBASEPARAM_NAMEATT", "name");
define ("PARAMGETDDBASEBASEPARAM_TENSORORDER", "tensor_order");
define ("PARAMGETDDBASEBASEPARAM_CALIB", "clb");
define ("PARAMGETDDBASEBASEPARAM_CALIBNAME", "name");
/**
* @class ParamGetDDBaseBaseParamNodeClass
* @brief Definition of a DDBase parameter
* @details
*/
class ParamGetDDBaseBaseParamNodeClass extends NodeClass
{
public function __construct()
{
parent::__construct(PARAMGETDDBASEBASEPARAM_NAME);
}
public function setName($name)
{
$this->setAttribute(PARAMGETDDBASEBASEPARAM_NAMEATT, $name);
}
public function getName()
{
return $this->getAttribute(PARAMGETDDBASEBASEPARAM_NAMEATT);
}
public function setTensorOrder($tensor_order)
{
$tensorNode = $this->getChildInstanceByName(PARAMGETDDBASEBASEPARAM_TENSORORDER, true);
$tensorNode->setValue($tensor_order);
}
public function addCalibInfo($calibInfo)
{
if ($this->calibInfoExist($calibInfo))
return;
$node = new NodeClass(PARAMGETDDBASEBASEPARAM_CALIB);
$node->setAttribute(PARAMGETDDBASEBASEPARAM_CALIBNAME,$calibInfo);
$this->addChild($node);
}
public function calibInfoExist($calibInfo)
{
$calibNodes = $this->getChildrenByName(PARAMGETDDBASEBASEPARAM_CALIB);
foreach ($calibNodes as $calibNode)
if ($calibNode->getAttribute(PARAMGETDDBASEBASEPARAM_CALIBNAME) == $calibInfo)
return true;
return false;
}
}
?>