M1M3 Support System
Loading...
Searching...
No Matches
SafetyControllerSettings.h
1/*
2 * This file is part of LSST M1M3 support system package.
3 *
4 * Developed for the Vera C. Rubin Telescope and Site System.
5 * This product includes software developed by the LSST Project
6 * (https://www.lsst.org).
7 * See the COPYRIGHT file at the top-level directory of this distribution
8 * for details of code ownership.
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
24#ifndef SAFETYCONTROLLERSETTINGS_H_
25#define SAFETYCONTROLLERSETTINGS_H_
26
27#include <string>
28
29#include <yaml-cpp/yaml.h>
30
31#include <AirControllerSafetySettings.h>
32#include <CellLightsSafetySettings.h>
33#include <DisplacementSafetySettings.h>
34#include <ForceControllerSafetySettings.h>
35#include <ILCSafetySettings.h>
36#include <InclinometerSafetySettings.h>
37#include <InterlockControllerSafetySettings.h>
38#include <LowerOperationSafetySettings.h>
39#include <PositionControllerSafetySettings.h>
40#include <PowerControllerSafetySettings.h>
41#include <RaiseOperationSafetySettings.h>
42#include <TMASafetySettings.h>
43
44namespace LSST {
45namespace M1M3 {
46namespace SS {
47
52public:
53 AirControllerSafetySettings AirController;
54 DisplacementSafetySettings Displacement;
55 InclinometerSafetySettings Inclinometer;
57
58 ForceControllerSafetySettings ForceController;
59 CellLightsSafetySettings CellLights;
60 PositionControllerSafetySettings PositionController;
61 PowerControllerSafetySettings PowerController;
62 RaiseOperationSafetySettings RaiseOperation;
63 LowerOperationSafetySettings LowerOperation;
66
74 void load(YAML::Node doc);
75};
76
77} /* namespace SS */
78} /* namespace M1M3 */
79} /* namespace LSST */
80
81#endif /* SAFETYCONTROLLERSETTINGS_H_ */
Force Controller Safety settings - which force checks should be run.
Definition ForceControllerSafetySettings.h:33
Safety controller class.
Definition SafetyControllerSettings.h:51
void load(YAML::Node doc)
Loads safety settings.
Definition SafetyControllerSettings.cpp:31
Definition AirControllerSafetySettings.h:29
Definition DisplacementSafetySettings.h:29
Definition InclinometerSafetySettings.h:29
Definition InterlockControllerSafetySettings.h:29
Definition CellLightsSafetySettings.h:33
Definition ILCSafetySettings.h:33
Settings for Telescope Mount Assembly timeouts and elevation deviation from inclinometer value.
Definition TMASafetySettings.h:37
Definition LowerOperationSafetySettings.h:27
Definition PositionControllerSafetySettings.h:29
Definition PowerControllerSafetySettings.h:29
Definition RaiseOperationSafetySettings.h:27