// // int2e.h // // Copyright (C) 2001 Edward Valeev // // Author: Edward Valeev // Maintainer: EV // // This file is part of the SC Toolkit. // // The SC Toolkit is free software; you can redistribute it and/or modify // it under the terms of the GNU Library General Public License as published by // the Free Software Foundation; either version 2, or (at your option) // any later version. // // The SC Toolkit is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Library General Public License for more details. // // You should have received a copy of the GNU Library General Public License // along with the SC Toolkit; see the file COPYING.LIB. If not, write to // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // // The U.S. Government is granted a limited license as per AL 91-7. // #ifdef __GNUG__ #pragma interface #endif #ifndef _chemistry_qc_cints_int2e_h #define _chemistry_qc_cints_int2e_h #include #include #include #include namespace sc { class Integral; /** Int2eCints is an interface to various specializations of two-electron integral evaluators implemented in Cints. It is used by TwoBodyIntCints and TwoBodyDerivIntCints to implement IntegralCints. */ class Int2eCints: public RefCount { protected: Integral *integral_; Ref bs1_; Ref bs2_; Ref bs3_; Ref bs4_; Ref grp_; GaussianShell *int_shell1_; GaussianShell *int_shell2_; GaussianShell *int_shell3_; GaussianShell *int_shell4_; // Whether shells can be permuted int permute_; // Whether redundant integrals are needed or only unique ones int redundant_; /*--- Storage related stuff ---*/ // Available storage size_t storage_; // Storage currently used size_t storage_used_; // Checks if too much storage is used void check_storage_() const; // Reports minimum "significant" storage needed to initialize the Int2e base static size_t storage_required_(const Ref& b1, const Ref& b2 = 0, const Ref& b3 = 0, const Ref& b4 = 0); /*--- Scratch ---*/ double *tformbuf_; // stores one partially transformed contraction quartet /*--- helper functions ---*/ // cart.->sph.harm. transform functions void transform_contrquartets_(double *,double *); // sort from by-contraction-quartet to shell-quartet order void sort_contrquartets_to_shellquartet_(double *,double *); // permute perm_ints_ into target_int_buf_ void permute_target_(double *, double *, int, int, int); void permute_1234_to_1243_(double *, double *); void permute_1234_to_2134_(double *, double *); void permute_1234_to_2143_(double *, double *); void permute_1234_to_3412_(double *, double *); void permute_1234_to_3421_(double *, double *); void permute_1234_to_4312_(double *, double *); void permute_1234_to_4321_(double *, double *); // retrieve nonredundant integrals void get_nonredundant_ints_(double *, double *, int, int, int); public: Int2eCints(Integral *, const Ref&, const Ref&, const Ref&, const Ref&, size_t storage); ~Int2eCints(); /// Sets storage limit and starts storage tracking void init_storage(size_t); /// Finishes storage tracking void done_storage(); /// Reports how much storage is actually used at a given time size_t storage_used() const { return storage_used_; } /// Whether redundant integrals are returned int redundant() const { return redundant_; } /// Set redundant flag void set_redundant(int flag) { redundant_ = flag; } /// Whether shells can be permuted int permute() const { return permute_; } /// Set shell permutation flag void set_permute(int flag) { permute_ = flag; } /// Evaluate the target quartet of integrals virtual void compute_quartet(int *, int*, int*, int*) =0; /// Returns the location of the buffer with target integrals virtual double *buffer(TwoBodyInt::tbint_type = TwoBodyInt::eri) const =0; Ref basis() { if (bs1_==bs2_ && bs1_ == bs3_ && bs1_ == bs4_) return bs1_; return 0; } Ref basis1() { return bs1_; } Ref basis2() { return bs2_; } Ref basis3() { return bs3_; } Ref basis4() { return bs4_; } }; } #endif // Local Variables: // mode: c++ // c-file-style: "CLJ" // End: