Added control loops for all the subsystems.

Change-Id: Ie693940734fe0b45f010bb3da0bfb0ec3ba719f5
diff --git a/y2017/control_loops/superstructure/hood/BUILD b/y2017/control_loops/superstructure/hood/BUILD
new file mode 100644
index 0000000..7b03141
--- /dev/null
+++ b/y2017/control_loops/superstructure/hood/BUILD
@@ -0,0 +1,31 @@
+package(default_visibility = ['//visibility:public'])
+
+genrule(
+  name = 'genrule_hood',
+  visibility = ['//visibility:private'],
+  cmd = '$(location //y2017/control_loops/python:hood) $(OUTS)',
+  tools = [
+    '//y2017/control_loops/python:hood',
+  ],
+  outs = [
+    'hood_plant.h',
+    'hood_plant.cc',
+    'hood_integral_plant.h',
+    'hood_integral_plant.cc',
+  ],
+)
+
+cc_library(
+  name = 'hood_plants',
+  srcs = [
+    'hood_plant.cc',
+    'hood_integral_plant.cc',
+  ],
+  hdrs = [
+    'hood_plant.h',
+    'hood_integral_plant.h',
+  ],
+  deps = [
+    '//frc971/control_loops:state_feedback_loop',
+  ],
+)