00001 // hagfphole.h 00002 // 00003 // Classes 00004 // to define paticle-hole propagators related 00005 // many-electron Green-Functions in HARLEM 00006 // 00007 // Igor Kurnikov , University of Pittsburgh 00008 // 00009 // Revisions: March 25 1998 00010 // 00011 #ifndef HAGFPHOLE_H 00012 #define HAGFPHOLE_H 00013 00014 #include "hamultipole.h" 00015 00016 class HaQCMod; 00017 00018 class HaGFphole 00019 // class to calculate Particle-Hole Propagator for 00020 // 00021 { 00022 public: 00023 00024 HaGFphole(); 00025 virtual ~HaGFphole(); 00026 00027 bool SetEnergy(const double NewEne); // Set Energy if Calc GF 00028 00029 protected: 00030 double Ene; 00031 HaQCMod* phost; 00032 00033 00034 }; 00035 00036 00037 00038 00039 00040 00041 00042 #endif /* !HAGFPHOLE_H */
1.3.6