1 | //
|
---|
2 | // obintcca.cc
|
---|
3 | //
|
---|
4 | // Copyright (C) 2004 Sandia National Laboratories
|
---|
5 | //
|
---|
6 | // Author: Joe Kenny <jpkenny@sandia.gov>
|
---|
7 | // Maintainer: Joe Kenny
|
---|
8 | //
|
---|
9 | // This file is part of the SC Toolkit.
|
---|
10 | //
|
---|
11 | // The SC Toolkit is free software; you can redistribute it and/or modify
|
---|
12 | // it under the terms of the GNU Library General Public License as published by
|
---|
13 | // the Free Software Foundation; either version 2, or (at your option)
|
---|
14 | // any later version.
|
---|
15 | //
|
---|
16 | // The SC Toolkit is distributed in the hope that it will be useful,
|
---|
17 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
19 | // GNU Library General Public License for more details.
|
---|
20 | //
|
---|
21 | // You should have received a copy of the GNU Library General Public License
|
---|
22 | // along with the SC Toolkit; see the file COPYING.LIB. If not, write to
|
---|
23 | // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
24 | //
|
---|
25 | // The U.S. Government is granted a limited license as per AL 91-7.
|
---|
26 | //
|
---|
27 |
|
---|
28 | #ifdef __GNUG__
|
---|
29 | #pragma implementation
|
---|
30 | #endif
|
---|
31 |
|
---|
32 | #include <chemistry/qc/intcca/obintcca.h>
|
---|
33 | #include <util/class/scexception.h>
|
---|
34 | #include <Chemistry_Chemistry_QC_GaussianBasis_DerivCenters.hh>
|
---|
35 |
|
---|
36 | using namespace std;
|
---|
37 | using namespace Chemistry;
|
---|
38 | using namespace Chemistry::QC::GaussianBasis;
|
---|
39 | using namespace sc;
|
---|
40 |
|
---|
41 | ////////////////////////////////////////////////////////////////////////////
|
---|
42 | // OneBodyIntCCA
|
---|
43 |
|
---|
44 | OneBodyIntCCA::OneBodyIntCCA(Integral* integral,
|
---|
45 | const Ref<GaussianBasisSet>&bs1,
|
---|
46 | const Ref<GaussianBasisSet>&bs2,
|
---|
47 | IntegralEvaluatorFactory eval_factory,
|
---|
48 | IntegralFunction ifunc,
|
---|
49 | bool use_opaque ):
|
---|
50 | OneBodyInt(integral,bs1,bs2), intfunc_(ifunc), eval_factory_(eval_factory),
|
---|
51 | use_opaque_(use_opaque)
|
---|
52 | {
|
---|
53 | std::string int_type;
|
---|
54 | if( ifunc == &Int1eCCA::overlap ) int_type = "overlap";
|
---|
55 | else if (ifunc == &Int1eCCA::kinetic ) int_type = "kinetic";
|
---|
56 | else if (ifunc == &Int1eCCA::nuclear ) int_type = "nuclear";
|
---|
57 | else if (ifunc == &Int1eCCA::hcore ) int_type = "1eham";
|
---|
58 | int1ecca_ = new Int1eCCA(integral,bs1,bs2,0,eval_factory,int_type,use_opaque);
|
---|
59 | buffer_ = int1ecca_->buffer();
|
---|
60 | }
|
---|
61 |
|
---|
62 | OneBodyIntCCA::~OneBodyIntCCA()
|
---|
63 | {
|
---|
64 | }
|
---|
65 |
|
---|
66 | void
|
---|
67 | OneBodyIntCCA::compute_shell(int i, int j)
|
---|
68 | {
|
---|
69 | (int1ecca_.pointer()->*intfunc_)(i, j);
|
---|
70 | }
|
---|
71 |
|
---|
72 | bool
|
---|
73 | OneBodyIntCCA::cloneable()
|
---|
74 | {
|
---|
75 | return true;
|
---|
76 | }
|
---|
77 |
|
---|
78 | Ref<OneBodyInt>
|
---|
79 | OneBodyIntCCA::clone()
|
---|
80 | {
|
---|
81 | return new OneBodyIntCCA(integral_, bs1_, bs2_,
|
---|
82 | eval_factory_, intfunc_, use_opaque_ );
|
---|
83 | }
|
---|
84 |
|
---|
85 | // ////////////////////////////////////////////////////////////////////////////
|
---|
86 | // // OneBodyDerivIntCCA
|
---|
87 |
|
---|
88 | OneBodyDerivIntCCA::OneBodyDerivIntCCA(Integral *integral,
|
---|
89 | const Ref<GaussianBasisSet>&bs1,
|
---|
90 | const Ref<GaussianBasisSet>&bs2,
|
---|
91 | IntegralEvaluatorFactory eval_factory,
|
---|
92 | bool use_opaque,
|
---|
93 | string eval_type ):
|
---|
94 | OneBodyDerivInt(integral,bs1,bs2), eval_factory_(eval_factory),
|
---|
95 | use_opaque_(use_opaque), eval_type_(eval_type)
|
---|
96 | {
|
---|
97 | int1ecca_ = new Int1eCCA(integral,bs1,bs2,1,eval_factory,eval_type,use_opaque);
|
---|
98 | buffer_ = int1ecca_->buffer();
|
---|
99 | }
|
---|
100 |
|
---|
101 | OneBodyDerivIntCCA::~OneBodyDerivIntCCA()
|
---|
102 | {
|
---|
103 | }
|
---|
104 |
|
---|
105 | void
|
---|
106 | OneBodyDerivIntCCA::compute_shell(int i, int j, DerivCenters& c)
|
---|
107 | {
|
---|
108 | c.clear();
|
---|
109 | c.add_center(0,basis1(),i);
|
---|
110 | c.add_omitted(1,basis2(),j);
|
---|
111 | Chemistry_QC_GaussianBasis_DerivCenters cca_dc;
|
---|
112 | cca_dc = Chemistry_QC_GaussianBasis_DerivCenters::_create();
|
---|
113 | for( int id=0; id<c.n(); ++id ) {
|
---|
114 | if( id == c.omitted_center() )
|
---|
115 | cca_dc.add_omitted(c.center(id),c.atom(id));
|
---|
116 | else
|
---|
117 | cca_dc.add_center(c.center(id),c.atom(id));
|
---|
118 | }
|
---|
119 |
|
---|
120 | if( eval_type_ == "overlap_1der" )
|
---|
121 | int1ecca_->overlap_1der(i,j,cca_dc);
|
---|
122 | else if( eval_type_ == "kinetic_1der" )
|
---|
123 | int1ecca_->kinetic_1der(i,j,cca_dc);
|
---|
124 | else if( eval_type_ == "nuclear_1der" )
|
---|
125 | int1ecca_->nuclear_1der(i,j,cca_dc);
|
---|
126 | else if( eval_type_ == "hcore_1der" )
|
---|
127 | int1ecca_->hcore_1der(i,j,cca_dc);
|
---|
128 | }
|
---|
129 |
|
---|
130 | void
|
---|
131 | OneBodyDerivIntCCA::compute_shell(int i, int j, int c) {
|
---|
132 |
|
---|
133 | Chemistry_QC_GaussianBasis_DerivCenters cca_dc;
|
---|
134 | cca_dc = Chemistry_QC_GaussianBasis_DerivCenters::_create();
|
---|
135 | if( basis1()->shell_to_center(i) == basis2()->shell_to_center(j) ) {
|
---|
136 | cca_dc.add_center(0,c);
|
---|
137 | cca_dc.add_omitted(1,c);
|
---|
138 | }
|
---|
139 | else if( basis1()->shell_to_center(i) == c ) {
|
---|
140 | cca_dc.add_center(0,c);
|
---|
141 | cca_dc.add_omitted( 1, basis2()->shell_to_center(j) );
|
---|
142 | }
|
---|
143 | else {
|
---|
144 | cca_dc.add_center(1,c);
|
---|
145 | cca_dc.add_omitted( 0, basis1()->shell_to_center(i) );
|
---|
146 | }
|
---|
147 |
|
---|
148 | std::cerr << "setting omitted atom to " << basis2()->shell_to_center(j) << std::endl;
|
---|
149 | cca_dc.add_omitted(1,basis2()->shell_to_center(j));
|
---|
150 |
|
---|
151 | if( eval_type_ == "overlap_1der" )
|
---|
152 | int1ecca_->overlap_1der(i,j,cca_dc);
|
---|
153 | else if( eval_type_ == "kinetic_1der" )
|
---|
154 | int1ecca_->kinetic_1der(i,j,cca_dc);
|
---|
155 | else if( eval_type_ == "nuclear_1der" )
|
---|
156 | int1ecca_->nuclear_1der(i,j,cca_dc);
|
---|
157 | else if( eval_type_ == "hcore_1der" )
|
---|
158 | int1ecca_->hcore_1der(i,j,cca_dc);
|
---|
159 | }
|
---|
160 |
|
---|
161 | /////////////////////////////////////////////////////////////////////////////
|
---|
162 |
|
---|
163 | // Local Variables:
|
---|
164 | // mode: c++
|
---|
165 | // c-file-style: "CLJ"
|
---|
166 | // End:
|
---|