Skip to content

Commit

Permalink
Add "deprotonate" and "tautomerize" to TOML input file runtypes (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
pprcht authored Dec 6, 2024
2 parents e5c4985 + 5aaa60a commit 04fcf76
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/parsing/parse_maindata.f90
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,14 @@ subroutine parse_main_c(env,key,val,rd)
env%properties = p_protonate
env%crestver = crest_protonate

case ('deprotonate')
env%properties = p_deprotonate
env%crestver = crest_deprotonate

case ('tautomerize')
env%properties = p_tautomerize
env%crestver = crest_tautomerize

case default
!>--- keyword was recognized, but invalid argument supplied
write (stdout,fmtura) val
Expand Down

0 comments on commit 04fcf76

Please sign in to comment.