00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _chemistry_qc_scf_scfops_h
00029 #define _chemistry_qc_scf_scfops_h
00030
00031 #ifdef __GNUC__
00032 #pragma interface
00033 #endif
00034
00035 #include <math/scmat/elemop.h>
00036 #include <math/scmat/blocked.h>
00037
00038 #include <chemistry/qc/scf/scf.h>
00039
00040 class SCFEnergy : public SCElementOp2 {
00041 private:
00042 double eelec;
00043 int deferred_;
00044
00045 public:
00046 SCFEnergy();
00047 ~SCFEnergy();
00048
00049 int has_collect();
00050 void defer_collect(int h);
00051 void collect(const Ref<MessageGrp>&grp);
00052 double result();
00053 void reset();
00054
00055 void process(SCMatrixBlockIter&i, SCMatrixBlockIter&j);
00056 };
00057
00058 class LevelShift : public BlockedSCElementOp {
00059 protected:
00060 SCF *scf_;
00061 double shift;
00062
00063 public:
00064 LevelShift(SCF*);
00065 ~LevelShift();
00066
00067 int has_side_effects();
00068 void set_shift(double);
00069
00070 void process(SCMatrixBlockIter&);
00071 };
00072
00073 class ALevelShift : public LevelShift {
00074 public:
00075 ALevelShift(SCF*);
00076 ~ALevelShift();
00077 void process(SCMatrixBlockIter&);
00078 };
00079
00080 class BLevelShift : public LevelShift {
00081 public:
00082 BLevelShift(SCF*);
00083 ~BLevelShift();
00084 void process(SCMatrixBlockIter&);
00085 };
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095 class MOLagrangian : public BlockedSCElementOp2 {
00096 private:
00097 SCF *scf_;
00098
00099 public:
00100 MOLagrangian(SCF* s);
00101 ~MOLagrangian();
00102
00103 int has_side_effects();
00104
00105 void process(SCMatrixBlockIter& bi1, SCMatrixBlockIter& bi2);
00106 };
00107
00108 #endif
00109
00110
00111
00112
00113