Changes in / [0ea063:9e1bfb]
- Files:
-
- 7 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/userguide/userguide.xml
r0ea063 r9e1bfb 955 955 domain.</para> 956 956 </section> 957 958 <section xml:id='atoms.mirror-atoms'> 959 <title xml:id='atoms.mirror-atoms.title'>Mirroring atoms</title> 960 961 <para>Present (and selected) atoms can be mirrored with respect to 962 a certain plane. You have to specify the normal vector of the plane 963 and the offset with respect to the origin as follows</para> 964 965 <programlisting> 966 ... --mirror-atoms "1,0,0" \ 967 --plane-offset 10.1 \ 968 --periodic 0 969 </programlisting> 970 </section> 957 971 958 972 <section xml:id='atoms.change-element'> -
src/Actions/GlobalListOfActions.hpp
r0ea063 r9e1bfb 31 31 (AtomAdd) \ 32 32 (AtomChangeElement) \ 33 (AtomMirror) \ 33 34 (AtomRemove) \ 34 35 (AtomRotateAroundOriginByAngle) \ -
src/Actions/Makefile.am
r0ea063 r9e1bfb 144 144 Actions/AtomAction/AddAction.cpp \ 145 145 Actions/AtomAction/ChangeElementAction.cpp \ 146 Actions/AtomAction/MirrorAction.cpp \ 146 147 Actions/AtomAction/RemoveAction.cpp \ 147 148 Actions/AtomAction/RotateAroundOriginByAngleAction.cpp \ … … 151 152 Actions/AtomAction/AddAction.hpp \ 152 153 Actions/AtomAction/ChangeElementAction.hpp \ 154 Actions/AtomAction/MirrorAction.hpp \ 153 155 Actions/AtomAction/RemoveAction.hpp \ 154 156 Actions/AtomAction/RotateAroundOriginByAngleAction.hpp \ … … 158 160 Actions/AtomAction/AddAction.def \ 159 161 Actions/AtomAction/ChangeElementAction.def \ 162 Actions/AtomAction/MirrorAction.def \ 160 163 Actions/AtomAction/RemoveAction.def \ 161 164 Actions/AtomAction/RotateAroundOriginByAngleAction.def \ -
src/Actions/SelectionAction/Atoms/AtomByIdAction.cpp
r0ea063 r9e1bfb 93 93 break; 94 94 default: 95 ASSERT(0, "SelectionAtomByIdAction::performCall() - this must not happen.");95 STATUS("No atoms have been selected."); 96 96 return Action::failure; 97 97 break; -
src/Actions/SelectionAction/Atoms/NotAtomByIdAction.cpp
r0ea063 r9e1bfb 93 93 break; 94 94 default: 95 ASSERT(0, "SelectionAtomByIdAction::performCall() - this must not happen.");95 STATUS("No atoms have been selected."); 96 96 return Action::failure; 97 97 break; -
tests/Python/AllActions/options.dat
r0ea063 r9e1bfb 99 99 mesh-size "10,10,10" 100 100 min-distance "1." 101 mirror-atoms "1.,1.,1." 101 102 molecule-by-id "0" 102 103 near-field-cells "3" … … 130 131 parser-parameters "psi3" 131 132 periodic "0" 133 plane-offset "5." 132 134 position "0 0 0" 133 135 position "0 0 1" -
tests/regression/Atoms/testsuite-atoms.at
r0ea063 r9e1bfb 38 38 # Undo and redo a translation 39 39 m4_include([Atoms/Translation/testsuite-atoms-translation.at]) 40 41 # mirror atoms 42 m4_include([Atoms/Mirror/testsuite-atoms-mirror.at]) -
tests/regression/Makefile.am
r0ea063 r9e1bfb 35 35 $(srcdir)/Atoms/Add/testsuite-atoms-add.at \ 36 36 $(srcdir)/Atoms/ChangeElement/testsuite-atoms-change-element.at \ 37 $(srcdir)/Atoms/Mirror/testsuite-atoms-mirror.at \ 37 38 $(srcdir)/Atoms/Remove/testsuite-atoms-remove.at \ 38 39 $(srcdir)/Atoms/RemoveCuboid/testsuite-atoms-remove-cuboid.at \
Note:
See TracChangeset
for help on using the changeset viewer.