|
@@ -65,7 +65,7 @@ namespace SAGA.GplotManage
|
|
|
public override Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
|
|
|
{
|
|
|
//RelationTypeManager.GetSystemRelationTypeNames()
|
|
|
- List<string> useRelations =new List<string>() { "ChillWaterLoop" };
|
|
|
+ List<string> useRelations = RelationTypeManager.GetSystemRelationTypeNames();//new List<string>() { "ChillWaterLoop" };
|
|
|
SystemComputerHandler handler1 = new SystemComputerHandler();
|
|
|
handler1.ComputerWidthCache(useRelations);
|
|
|
WinSystem floorWin = new WinSystem(GplotShowType.ViewPlan);
|
|
@@ -90,7 +90,7 @@ namespace SAGA.GplotManage
|
|
|
{
|
|
|
public override Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
|
|
|
{
|
|
|
- List<string> useRelations = new List<string>() { "ChillWaterLoop" };
|
|
|
+ List<string> useRelations = RelationTypeManager.GetSystemRelationTypeNames();
|
|
|
SystemComputerHandler handler1 = new SystemComputerHandler();
|
|
|
handler1.ComputerWidthCache(useRelations);
|
|
|
WinSystem floorWin = new WinSystem(GplotShowType.ViewPlan);
|
|
@@ -115,7 +115,7 @@ namespace SAGA.GplotManage
|
|
|
{
|
|
|
public override Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
|
|
|
{
|
|
|
- List<string> useRelations = new List<string>() { "ChillWaterLoop" };
|
|
|
+ List<string> useRelations = RelationTypeManager.GetSystemRelationTypeNames();
|
|
|
SystemComputerHandler handler1 = new SystemComputerHandler();
|
|
|
handler1.ComputerWidthCache(useRelations);
|
|
|
WinSystem verticalWin = new WinSystem(GplotShowType.VerticalPlan);
|