Index: branches/FEPSimulator/Main.cpp
===================================================================
--- branches/FEPSimulator/Main.cpp	(revision 100)
+++ branches/FEPSimulator/Main.cpp	(revision 233)
@@ -1,7 +1,9 @@
-/* 
- * File:   Main.cpp
- * Author: John A. Torres
- *
- * Created on October 7, 2017, 4:27 PM
+/**
+ * File: Main.cpp
+ * 
+ * Main driver for FEP Simulator. Creates an FEPSimulator that reads Highway
+ * Status from the ATMS Driver over a socket. Runs persistently.
+ * 
+ * @author John A. Torres
  */
 
@@ -11,13 +13,6 @@
 using namespace std;
 
-/**
- * Main driver for FEP Simulator. Creates a socket server that reads Highway
- * Status from the ATMS Driver over the socket, in XML form. Runs persistently.
- * 
- * @param argc argument count
- * @param argv args
- * @return 
- */
 int main(int argc, char *argv[]) {
+    // if argument count is not correct, display usage message
     if(argc != 5)
     {
@@ -26,4 +21,5 @@
         exit(1);
     }
+    // get the FEP Sim command line arguments
     char *FEPSimHost = argv[1];
     int fep_prog = atoi(argv[2]);
@@ -31,6 +27,6 @@
     int portno = atoi(argv[4]);
 
+    // run the FEPSim
     cout << "Running FEP Simulator..." << endl;
-    
     FEPSim fep = FEPSim(FEPSimHost, fep_prog, fep_rev, portno);
     fep.runSockServer();
