Simpatico  v1.10
mdPp.cpp
Go to the documentation of this file.
1 /*
2 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
3 *
4 * Copyright 2010 - 2017, The Regents of the University of Minnesota
5 * Distributed under the terms of the GNU General Public License.
6 */
9 #include <tools/processor/Processor.h>
10 
38 int main(int argc, char** argv)
39 {
40  Tools::Processor processor;
41  processor.setOptions(argc, argv);
42  processor.readParam();
43  processor.readCommands();
44  return 0;
45 }
A post-processor for analyzing outputs of MD simulations.
Definition: Processor.h:30
void readParam()
Read parameter file specified in command line.
Definition: Processor.cpp:76
void setOptions(int argc, char *const *argv)
Process command line options.
Definition: Processor.cpp:50
void readCommands()
Read command file specified in command line.
Definition: Processor.cpp:108