source: ThirdParty/mpqc_open/src/lib/chemistry/cca/MPQC_GaussianBasis_Shell_Impl.hh

Candidate_v1.6.1
Last change on this file 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: 5.2 KB
Line 
1//
2// File: MPQC_GaussianBasis_Shell_Impl.hh
3// Symbol: MPQC.GaussianBasis_Shell-v0.2
4// Symbol Type: class
5// Babel Version: 0.10.2
6// Description: Server-side implementation for MPQC.GaussianBasis_Shell
7//
8// WARNING: Automatically generated; only changes within splicers preserved
9//
10// babel-version = 0.10.2
11//
12
13#ifndef included_MPQC_GaussianBasis_Shell_Impl_hh
14#define included_MPQC_GaussianBasis_Shell_Impl_hh
15
16#ifndef included_sidl_cxx_hh
17#include "sidl_cxx.hh"
18#endif
19#ifndef included_MPQC_GaussianBasis_Shell_IOR_h
20#include "MPQC_GaussianBasis_Shell_IOR.h"
21#endif
22//
23// Includes for all method dependencies.
24//
25#ifndef included_Chemistry_QC_GaussianBasis_AngularType_hh
26#include "Chemistry_QC_GaussianBasis_AngularType.hh"
27#endif
28#ifndef included_MPQC_GaussianBasis_Shell_hh
29#include "MPQC_GaussianBasis_Shell.hh"
30#endif
31#ifndef included_sidl_BaseInterface_hh
32#include "sidl_BaseInterface.hh"
33#endif
34#ifndef included_sidl_ClassInfo_hh
35#include "sidl_ClassInfo.hh"
36#endif
37
38
39// DO-NOT-DELETE splicer.begin(MPQC.GaussianBasis_Shell._includes)
40#include <chemistry/qc/basis/basis.h>
41using namespace std;
42using namespace Chemistry::QC::GaussianBasis;
43using namespace sc;
44// DO-NOT-DELETE splicer.end(MPQC.GaussianBasis_Shell._includes)
45
46namespace MPQC {
47
48 /**
49 * Symbol "MPQC.GaussianBasis_Shell" (version 0.2)
50 */
51 class GaussianBasis_Shell_impl
52 // DO-NOT-DELETE splicer.begin(MPQC.GaussianBasis_Shell._inherits)
53
54 /** GaussianBasis_Shell_impl implements a class interface for
55 gaussian shell data.
56
57 This is an implementation of a SIDL interface.
58 The stub code is generated by the Babel tool. Do not make
59 modifications outside of splicer blocks, as these will be lost.
60 This is a server implementation for a Babel class, the Babel
61 client code is provided by the cca-chem-generic package.
62 */
63
64 // Put additional inheritance here...
65 // DO-NOT-DELETE splicer.end(MPQC.GaussianBasis_Shell._inherits)
66 {
67
68 private:
69 // Pointer back to IOR.
70 // Use this to dispatch back through IOR vtable.
71 GaussianBasis_Shell self;
72
73 // DO-NOT-DELETE splicer.begin(MPQC.GaussianBasis_Shell._implementation)
74
75 GaussianShell *shell_ptr_;
76 Ref<GaussianShell> sc_shell_;
77 AngularType angular_type_;
78 int max_am_;
79
80 // DO-NOT-DELETE splicer.end(MPQC.GaussianBasis_Shell._implementation)
81
82 private:
83 // private default constructor (required)
84 GaussianBasis_Shell_impl()
85 {}
86
87 public:
88 // sidl constructor (required)
89 // Note: alternate Skel constructor doesn't call addref()
90 // (fixes bug #275)
91 GaussianBasis_Shell_impl( struct MPQC_GaussianBasis_Shell__object * s ) :
92 self(s,true) { _ctor(); }
93
94 // user defined construction
95 void _ctor();
96
97 // virtual destructor (required)
98 virtual ~GaussianBasis_Shell_impl() { _dtor(); }
99
100 // user defined destruction
101 void _dtor();
102
103 // static class initializer
104 static void _load();
105
106 public:
107
108 /**
109 * user defined non-static method.
110 */
111 void
112 initialize (
113 /* in */ void* scshell
114 )
115 throw ()
116 ;
117
118
119 /**
120 * Get the number of contractions in the shell.
121 * @return Number of contractions.
122 */
123 int64_t
124 get_n_contraction() throw ()
125 ;
126
127 /**
128 * Get the number of primitives in the shell.
129 * @return Number of primitives.
130 */
131 int64_t
132 get_n_primitive() throw ()
133 ;
134
135 /**
136 * Get the coefficient for an unnormalized primitive in a contraction.
137 * @param connum Contraction number.
138 * @param expnum Primitive number.
139 * @return The contraction coefficient.
140 */
141 double
142 get_contraction_coef (
143 /* in */ int64_t connum,
144 /* in */ int64_t expnum
145 )
146 throw ()
147 ;
148
149
150 /**
151 * Get the exponent for a primitive.
152 * @param expnum The primitive number.
153 * @return The exponent.
154 */
155 double
156 get_exponent (
157 /* in */ int64_t expnum
158 )
159 throw ()
160 ;
161
162
163 /**
164 * Get the angular momentum for a single contraction.
165 * @param connum Contraction number.
166 * @return Angular momentum value.
167 */
168 int64_t
169 get_angular_momentum (
170 /* in */ int64_t connum
171 )
172 throw ()
173 ;
174
175
176 /**
177 * Get the max angular momentum of any contraction in the shell.
178 * @return Maximum angular momentum value.
179 */
180 int64_t
181 get_max_angular_momentum() throw ()
182 ;
183
184 /**
185 * Get the angular type for a single contraction.
186 * @param connum Contraction number.
187 * @return enum AngularType {CARTESIAN,SPHERICAL,MIXED}
188 */
189 ::Chemistry::QC::GaussianBasis::AngularType
190 get_contraction_angular_type (
191 /* in */ int64_t connum
192 )
193 throw ()
194 ;
195
196
197 /**
198 * Get the angular type for the shell.
199 * @return enum AngularType {CARTESIAN,SPHERICAL,MIXED}
200 */
201 ::Chemistry::QC::GaussianBasis::AngularType
202 get_angular_type() throw ()
203 ;
204
205 /**
206 * Print the shell data.
207 */
208 void
209 print_shell() throw ()
210 ;
211 }; // end class GaussianBasis_Shell_impl
212
213} // end namespace MPQC
214
215// DO-NOT-DELETE splicer.begin(MPQC.GaussianBasis_Shell._misc)
216// Put miscellaneous things here...
217// DO-NOT-DELETE splicer.end(MPQC.GaussianBasis_Shell._misc)
218
219#endif
Note: See TracBrowser for help on using the repository browser.