~ubuntu-branches/ubuntu/oneiric/mpqc/oneiric

« back to all changes in this revision

Viewing changes to src/lib/chemistry/qc/dft/hsosks.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2005-11-27 11:41:49 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051127114149-zgz9r3gk50w8ww2q
Tags: 2.3.0-1
* New upstream release.
* debian/rules (SONAME): Activate awk snippet for automatic so-name
  detection again, resulting in a bump to `7' and making a `c2a' for
  the C++ allocator change unnecessary; closes: #339232.
* debian/patches/00list (08_gcc-4.0_fixes): Removed, no longer needed.
* debian/rules (test): Remove workarounds, do not abort build if tests
  fail.
* debian/ref: Removed.
* debian/control.in (libsc): Added Conflict against libsc6c2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
// //////////////////////////////////////////////////////////////////////////
43
43
 
 
44
/**
 
45
   This provides a Kohn-Sham implementation for restricted-orbital
 
46
   high-spin open-shell systems.
 
47
 */
44
48
class HSOSKS: public HSOSSCF {
45
49
  protected:
46
50
    Ref<DenIntegrator> integrator_;
53
57
    
54
58
  public:
55
59
    HSOSKS(StateIn&);
 
60
    /**
 
61
       This KeyVal constructor reads the following keywords:
 
62
        <dl>
 
63
 
 
64
       <dt><tt>integrator</tt><dd>Specifies the DenIntegrator that will be
 
65
       used to integrate the density functional.  The default is
 
66
       RadialAngularIntegrator.
 
67
 
 
68
       <dt><tt>functional</tt><dd>Specifies the DenFunctional that will be
 
69
       used to compute the exchange/correlation contribution.  This is no
 
70
       default.
 
71
 
 
72
       </dl>
 
73
    */
56
74
    HSOSKS(const Ref<KeyVal>&);
57
75
    ~HSOSKS();
58
76