source: ThirdParty/mpqc_open/src/lib/chemistry/cca/MPQC_Chemistry_Molecule_Impl.cc@ 860145

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 860145 was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 6.5 KB
Line 
1//
2// File: MPQC_Chemistry_Molecule_Impl.cc
3// Symbol: MPQC.Chemistry_Molecule-v0.2
4// Symbol Type: class
5// Babel Version: 0.8.6
6// Description: Server-side implementation for MPQC.Chemistry_Molecule
7//
8// WARNING: Automatically generated; only changes within splicers preserved
9//
10// babel-version = 0.8.6
11//
12#include "MPQC_Chemistry_Molecule_Impl.hh"
13
14// DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule._includes)
15#include "MPQC_Physics_Units_Impl.hh"
16// DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule._includes)
17
18// user defined constructor
19void MPQC::Chemistry_Molecule_impl::_ctor() {
20 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule._ctor)
21 net_charge = 0;
22 mol = new sc::Molecule;
23 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule._ctor)
24}
25
26// user defined destructor
27void MPQC::Chemistry_Molecule_impl::_dtor() {
28 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule._dtor)
29 // add destruction details here
30 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule._dtor)
31}
32
33// user defined static methods: (none)
34
35// user defined non-static methods:
36/**
37 * Method: initialize_pointer[]
38 */
39void
40MPQC::Chemistry_Molecule_impl::initialize_pointer (
41 /*in*/ void* ptr )
42throw ()
43{
44 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.initialize_pointer)
45
46 mol = static_cast<sc::Molecule*>(ptr);
47
48 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.initialize_pointer)
49}
50
51/**
52 * Obtain Services handle, through which the
53 * component communicates with the framework.
54 * This is the one method that every CCA Component
55 * must implement. The component will be called
56 * with a nil/null Services pointer when it is
57 * to shut itself down.
58 */
59void
60MPQC::Chemistry_Molecule_impl::setServices (
61 /*in*/ ::gov::cca::Services services )
62throw ()
63{
64 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.setServices)
65 // insert implementation here
66 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.setServices)
67}
68
69/**
70 * Method: initialize[]
71 */
72void
73MPQC::Chemistry_Molecule_impl::initialize (
74 /*in*/ int32_t natom )
75throw ()
76{
77 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.initialize)
78 // insert implementation here
79 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.initialize)
80}
81
82/**
83 * Method: get_units[]
84 */
85::Physics::Units
86MPQC::Chemistry_Molecule_impl::get_units ()
87throw ()
88
89{
90 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.get_units)
91 MPQC::Physics_Units units = MPQC::Physics_Units::_create();
92 MPQC::Physics_Units_impl *unitsi
93 = reinterpret_cast<MPQC::Physics_Units_impl*>(units._get_ior()->d_data);
94 unitsi->set_units(new sc::Units("bohr"));
95 return units;
96 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.get_units)
97}
98
99/**
100 * Method: get_n_atom[]
101 */
102int64_t
103MPQC::Chemistry_Molecule_impl::get_n_atom ()
104throw ()
105
106{
107 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.get_n_atom)
108 return mol->natom();
109 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.get_n_atom)
110}
111
112/**
113 * Method: get_atomic_number[]
114 */
115int64_t
116MPQC::Chemistry_Molecule_impl::get_atomic_number (
117 /*in*/ int64_t atomnum )
118throw ()
119{
120 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.get_atomic_number)
121 return mol->Z(atomnum);
122 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.get_atomic_number)
123}
124
125/**
126 * Method: set_atomic_number[]
127 */
128void
129MPQC::Chemistry_Molecule_impl::set_atomic_number (
130 /*in*/ int64_t atomnum,
131 /*in*/ int64_t atomic_number )
132throw ()
133{
134 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.set_atomic_number)
135 // insert implementation here
136 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.set_atomic_number)
137}
138
139/**
140 * Method: get_net_charge[]
141 */
142double
143MPQC::Chemistry_Molecule_impl::get_net_charge ()
144throw ()
145
146{
147 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.get_net_charge)
148 return net_charge;
149 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.get_net_charge)
150}
151
152/**
153 * Method: set_net_charge[]
154 */
155void
156MPQC::Chemistry_Molecule_impl::set_net_charge (
157 /*in*/ double charge )
158throw ()
159{
160 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.set_net_charge)
161 net_charge = charge;
162 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.set_net_charge)
163}
164
165/**
166 * Method: get_cart_coor[]
167 */
168double
169MPQC::Chemistry_Molecule_impl::get_cart_coor (
170 /*in*/ int64_t atomnum,
171 /*in*/ int32_t xyz )
172throw ()
173{
174 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.get_cart_coor)
175 return mol->r(atomnum)[xyz];
176 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.get_cart_coor)
177}
178
179/**
180 * Method: set_cart_coor[]
181 */
182void
183MPQC::Chemistry_Molecule_impl::set_cart_coor (
184 /*in*/ int64_t atomnum,
185 /*in*/ int32_t xyz,
186 /*in*/ double val )
187throw ()
188{
189 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.set_cart_coor)
190 mol->r(atomnum)[xyz] = val;
191 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.set_cart_coor)
192}
193
194/**
195 * Method: get_atomic_label[]
196 */
197::std::string
198MPQC::Chemistry_Molecule_impl::get_atomic_label (
199 /*in*/ int64_t atomnum )
200throw ()
201{
202 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.get_atomic_label)
203 return mol->label(atomnum);
204 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.get_atomic_label)
205}
206
207/**
208 * Method: set_atomic_label[]
209 */
210void
211MPQC::Chemistry_Molecule_impl::set_atomic_label (
212 /*in*/ int64_t atomnum,
213 /*in*/ const ::std::string& label )
214throw ()
215{
216 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.set_atomic_label)
217 // insert implementation here
218 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.set_atomic_label)
219}
220
221/**
222 * Method: get_symmetry[]
223 */
224::Physics::PointGroup
225MPQC::Chemistry_Molecule_impl::get_symmetry ()
226throw ()
227
228{
229 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.get_symmetry)
230 // insert implementation here
231 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.get_symmetry)
232}
233
234/**
235 * Method: get_coor[]
236 */
237::sidl::array<double>
238MPQC::Chemistry_Molecule_impl::get_coor ()
239throw ()
240
241{
242 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.get_coor)
243 // insert implementation here
244 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.get_coor)
245}
246
247/**
248 * Method: set_coor[]
249 */
250void
251MPQC::Chemistry_Molecule_impl::set_coor (
252 /*in*/ ::sidl::array<double> x )
253throw ()
254{
255 // DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule.set_coor)
256 // insert implementation here
257 // DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule.set_coor)
258}
259
260
261// DO-NOT-DELETE splicer.begin(MPQC.Chemistry_Molecule._misc)
262// Put miscellaneous code here
263// DO-NOT-DELETE splicer.end(MPQC.Chemistry_Molecule._misc)
264
Note: See TracBrowser for help on using the repository browser.