Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/MapOfActions.cpp

    r980dd6 r4f7f34e  
    55 *      Author: heber
    66 */
     7
     8#include "Helpers/MemDebug.hpp"
    79
    810using namespace std;
     
    8183  DescriptionMap["fragment-mol"] = "create for a given molecule into fragments up to given order";
    8284  DescriptionMap["help"] = "Give this help screen";
     85  DescriptionMap["input"] = "specify input files";
    8386  DescriptionMap["linear-interpolate"] = "linear interpolation in discrete steps between start and end position of a molecule";
    8487  DescriptionMap["nonconvex-envelope"] = "create the non-convex envelope for a molecule";
    8588  DescriptionMap["molecular-volume"] = "calculate the volume of a given molecule";
     89  DescriptionMap["output"] = "specify output formats";
    8690  DescriptionMap["pair-correlation"] = "pair correlation analysis between two elements, element and point or element and surface";
    8791  DescriptionMap["parse-xyz"] = "parse xyz file into World";
     
    183187  TypeMap["fastparsing"] = Boolean;
    184188  TypeMap["fill-molecule"] = String;
    185   TypeMap["fragment-mol"] = Molecule;
     189  TypeMap["fragment-mol"] = String;
    186190  TypeMap["input"] = String;
    187191  TypeMap["linear-interpolate"] = String;
    188192  TypeMap["molecular-volume"] = Molecule;
    189193  TypeMap["nonconvex-envelope"] = Molecule;
     194  TypeMap["output"] = String;
    190195  TypeMap["parse-xyz"] = String;
    191196  TypeMap["pair-correlation"] = String;
     
    260265  generic.insert("fragment-mol");
    261266  generic.insert("help");
    262         generic.insert("linear-interpolate");
     267  generic.insert("input");
     268  generic.insert("linear-interpolate");
    263269//  generic.insert("molecular-volume");
    264270  generic.insert("nonconvex-envelope");
     271  generic.insert("output");
    265272        generic.insert("pair-correlation");
    266 //      generic.insert("parse-xyz");
     273        generic.insert("parse-xyz");
    267274//  generic.insert("principal-axis-system");
    268275  generic.insert("remove-atom");
Note: See TracChangeset for help on using the changeset viewer.