Changeset bdd1d0
- Timestamp:
- Dec 26, 2025, 9:40:14 PM (6 days ago)
- Branches:
- Candidate_v1.7.1, stable
- Children:
- f2d5ce
- Parents:
- f0234e
- git-author:
- Frederik Heber <frederik.heber@…> (11/25/25 08:07:46)
- git-committer:
- Frederik Heber <frederik.heber@…> (12/26/25 21:40:14)
- Location:
- src/Actions/PotentialAction
- Files:
-
- 2 edited
-
GeneratePotentialsAction.cpp (modified) (1 diff)
-
GeneratePotentialsAction.def (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/PotentialAction/GeneratePotentialsAction.cpp
rf0234e rbdd1d0 84 84 // gather list of potential candidates 85 85 std::vector<std::string> potentials; 86 if ( !params.potential_list.isSet()) {86 if ((!params.potential_list.isSet()) || (params.potential_list.get().empty())) { 87 87 for (unsigned int i=0; i<PotentialTypesMax; ++i) 88 88 potentials.push_back(PotentialFactory::getNameForType((enum PotentialTypes)i)); -
src/Actions/PotentialAction/GeneratePotentialsAction.def
rf0234e rbdd1d0 19 19 #define paramtokens ("fragment-charges")("potential-list") 20 20 #define paramdescriptions ("charges specifying the fragment")("list of potentials to generate or empty for all") 21 #define paramdefaults (NOPARAM_DEFAULT)( NOPARAM_DEFAULT)21 #define paramdefaults (NOPARAM_DEFAULT)(PARAM_DEFAULT(std::vector<std::string>())) 22 22 #define paramreferences (fragment)(potential_list) 23 23 #define paramvalids \
Note:
See TracChangeset
for help on using the changeset viewer.
