--- branches/development/src/mdParser/MDParser.g 2012/06/05 18:08:06 1745 +++ branches/development/src/mdParser/MDParser.g 2012/06/06 02:18:54 1746 @@ -43,6 +43,7 @@ tokens ORIENTATION = "orientation"; FLUCQ = "flucQ"; RNEMD = "RNEMD"; + MINIMIZER = "minimizer"; ENDBLOCK; } @@ -57,6 +58,7 @@ statement : assignment | restraintblock | flucqblock | rnemdblock + | minimizerblock ; assignment : ID ASSIGNEQUAL^ constant SEMICOLON! @@ -82,6 +84,9 @@ rnemdblock : RNEMD^ LCURLY! (assignment)* RCURLY {#RC rnemdblock : RNEMD^ LCURLY! (assignment)* RCURLY {#RCURLY->setType(ENDBLOCK);} ; + +minimizerblock : MINIMIZER^ LCURLY! (assignment)* RCURLY {#RCURLY->setType(ENDBLOCK);} + ; moleculeblock : MOLECULE^ LCURLY! (moleculestatement)* RCURLY {#RCURLY->setType(ENDBLOCK);} ;