@@ -189,24 +189,24 @@ SUBROUTINE create_qmmm_section(section,error)
189189
190190 ! Centering keywords
191191 CALL keyword_create(keyword, name= " CENTER" ,&
192- description= " This keyword sets when the qm system is automatically " // &
192+ description= " This keyword sets when the QM system is automatically " // &
193193 " centered. Default is EVERY_STEP." ,&
194194 usage= " center (EVERY_STEP|SETUP_ONLY|NEVER)" ,&
195195 enum_c_vals= s2a(" EVERY_STEP" ," SETUP_ONLY" ," NEVER" ),&
196- enum_desc= s2a(" re -center every step" ,&
197- " center at first step only" , &
198- " never center" ),&
196+ enum_desc= s2a(" Re -center every step" ,&
197+ " Center at first step only" , &
198+ " Never center" ),&
199199 enum_i_vals= (/ do_qmmm_center_every_step, do_qmmm_center_setup_only, do_qmmm_center_never / ),&
200200 default_i_val= do_qmmm_center_every_step, error= error)
201201 CALL section_add_keyword(section,keyword,error= error)
202202 CALL keyword_release(keyword,error= error)
203203
204204 CALL keyword_create(keyword, name= " CENTER_TYPE" ,&
205- description= " How to do the centering" ,&
205+ description= " This keyword specifies how to do the QM system centering. " ,&
206206 usage= " center_type (MAX_MINUS_MIN|PBC_AWARE_MAX_MINUS_MIN)" ,&
207207 enum_c_vals= s2a(" MAX_MINUS_MIN" ," PBC_AWARE_MAX_MINUS_MIN" ),&
208- enum_desc= s2a(" center of box defined by maximum coordinate minus minimum coordinate" ,&
209- " PBC-aware centering. Useful for &QMMM&FORCE_MIXING. " ),&
208+ enum_desc= s2a(" Center of box defined by maximum coordinate minus minimum coordinate" ,&
209+ " PBC-aware centering (useful for &QMMM&FORCE_MIXING) " ),&
210210 enum_i_vals= (/ do_qmmm_center_max_minus_min, do_qmmm_center_pbc_aware / ),&
211211 default_i_val= do_qmmm_center_max_minus_min, error= error)
212212 CALL section_add_keyword(section,keyword,error= error)
@@ -302,7 +302,7 @@ SUBROUTINE create_qmmm_mm_kinds(section,error)
302302 NULLIFY(keyword)
303303 CPPrecondition(.NOT. ASSOCIATED(section),cp_failure_level,routineP,error,failure)
304304 CALL section_create(section,name= " MM_KIND" ,&
305- description= " Information about the mm kind in the qm/mm scheme" ,&
305+ description= " Information about the MM kind in the QM/MM scheme" ,&
306306 n_keywords= 2 , n_subsections= 0 , repeats= .TRUE. , required= .TRUE. ,&
307307 error= error)
308308
@@ -602,17 +602,17 @@ SUBROUTINE create_qmmm_qm_kinds(section,error)
602602 NULLIFY(keyword)
603603 CPPrecondition(.NOT. ASSOCIATED(section),cp_failure_level,routineP,error,failure)
604604 CALL section_create(section,name= " QM_KIND" ,&
605- description= " Information about the qm kind in the qm/mm scheme" ,&
605+ description= " Information about the QM kind in the QM/MM scheme" ,&
606606 n_keywords= 3 , n_subsections= 0 , repeats= .TRUE. , required= .TRUE. ,&
607607 error= error)
608608
609609 CALL keyword_create(keyword, name= " _SECTION_PARAMETERS_" ,&
610- description= " The qm kind" ,usage= " O" ,n_var= 1 ,type_of_var= char_t,error= error)
610+ description= " The QM kind" ,usage= " O" ,n_var= 1 ,type_of_var= char_t,error= error)
611611 CALL section_add_keyword(section,keyword,error= error)
612612 CALL keyword_release(keyword,error= error)
613613
614614 CALL keyword_create(keyword, name= " MM_INDEX" ,&
615- description= " The indexes of the mm atoms that have this kind. This keyword can be" // &
615+ description= " The indexes of the MM atoms that have this kind. This keyword can be" // &
616616 " repeated several times (useful if you have to specify many indexes)." ,&
617617 usage= " MM_INDEX 1 2" ,&
618618 n_var=- 1 ,type_of_var= integer_t,repeats= .TRUE. ,error= error)
@@ -1107,6 +1107,9 @@ SUBROUTINE create_qmmm_link_section(section,error)
11071107 usage= " LINK_TYPE char" ,&
11081108 enum_c_vals= s2a( " IMOMM" ," GHO" ," PSEUDO" ),&
11091109 enum_i_vals= (/ do_qmmm_link_imomm, do_qmmm_link_gho, do_qmmm_link_pseudo/ ),&
1110+ enum_desc= s2a(" Use Generalized Hybrid Orbital method" ,&
1111+ " Use Integrated Molecular Orbital Molecular Mechanics method" ,&
1112+ " Use a monovalent pseudo-potential" ),&
11101113 default_i_val= do_qmmm_link_imomm, error= error)
11111114 CALL section_add_keyword(section,keyword,error= error)
11121115 CALL keyword_release(keyword,error= error)
@@ -1461,7 +1464,7 @@ SUBROUTINE create_print_qmmm_section(section,error)
14611464
14621465 CALL cp_print_key_section_create(print_key," GRID_INFORMATION" ,&
14631466 description= " Controls the printing of information regarding the PW grid structures" // &
1464- " for PERIODIC qm/mm calculations." ,&
1467+ " for PERIODIC QM/MM calculations." ,&
14651468 print_level= medium_print_level,filename= " __STD_OUT__" ,&
14661469 error= error)
14671470 CALL section_add_subsection(section,print_key,error= error)
0 commit comments