00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef OST_MM_OBSERVER_HH
00021 #define OST_MM_OBSERVER_HH
00022
00023
00024 #include <boost/shared_ptr.hpp>
00025
00026 #include <ost/io/mol/io_profile.hh>
00027 #include <ost/io/mol/pdb_writer.hh>
00028 #include <ost/mol/entity_handle.hh>
00029 #include <ost/mol/coord_frame.hh>
00030 #include <ost/mol/coord_group.hh>
00031 #include <ost/mol/mm/state_extractor.hh>
00032 #include <ost/mol/mm/topology.hh>
00033 #include <ost/mol/mm/modeller.hh>
00034
00035 namespace OpenMM{
00036 class Context;
00037
00038
00039 }
00040
00041 namespace ost { namespace mol{ namespace mm{
00042
00043 class Observer;
00044 class TrajObserver;
00045 class TrajWriter;
00046 typedef boost::shared_ptr<Observer> ObserverPtr;
00047 typedef boost::shared_ptr<TrajObserver> TrajObserverPtr;
00048 typedef boost::shared_ptr<TrajWriter> TrajWriterPtr;
00049
00050
00051 class Observer{
00052 public:
00053
00054 virtual void Notify() = 0;
00055
00056 virtual void Init(boost::shared_ptr<OpenMM::Context> c,
00057 TopologyPtr top,
00058 ost::mol::EntityHandle& ent) = 0;
00059
00060 virtual int Rhythm() = 0;
00061
00062 };
00063
00064
00065 class TrajObserver : public Observer{
00066
00067 public:
00068
00069 TrajObserver(int rhythm): rhythm_(rhythm), registered_(false) { }
00070
00071 void Init(boost::shared_ptr<OpenMM::Context> c,
00072 TopologyPtr top,
00073 ost::mol::EntityHandle& ent);
00074
00075 void Notify();
00076
00077 int Rhythm() { return rhythm_; }
00078
00079 CoordGroupHandle GetTraj() { return c_group_; }
00080
00081 private:
00082
00083 ost::mol::CoordGroupHandle c_group_;
00084 boost::shared_ptr<OpenMM::Context> context_;
00085 int rhythm_;
00086 bool registered_;
00087 };
00088
00089 class TrajWriter : public Observer{
00090
00091
00092
00093 public:
00094
00095 TrajWriter(int rhythm, const String& pdb_filename, const String& dcd_filename): rhythm_(rhythm),
00096 pdb_filename_(pdb_filename),
00097 dcd_filename_(dcd_filename),
00098 stream_(),
00099 registered_(false),
00100 frames_(0) { }
00101
00102 void Init(boost::shared_ptr<OpenMM::Context> c,
00103 TopologyPtr top,
00104 ost::mol::EntityHandle& ent);
00105
00106 void Notify();
00107
00108 int Rhythm() { return rhythm_; }
00109
00110 void Finalize();
00111
00112 private:
00113
00114 TrajWriter(const TrajWriter& writer) { }
00115
00116
00117 boost::shared_ptr<OpenMM::Context> context_;
00118 int rhythm_;
00119 String pdb_filename_;
00120 String dcd_filename_;
00121 std::ofstream stream_;
00122 bool registered_;
00123 uint32_t frames_;
00124 std::vector<float> x;
00125 std::vector<float> y;
00126 std::vector<float> z;
00127 };
00128
00129
00130 }}}
00131
00132 #endif