00001
00002
00003
00004
00005
00006
00007
00008 #ifndef IMPATOM_MOL_2_H
00009 #define IMPATOM_MOL_2_H
00010
00011 #include "atom_config.h"
00012 #include "Hierarchy.h"
00013
00014 #include <IMP/Model.h>
00015 #include <IMP/Particle.h>
00016 #include <IMP/file.h>
00017
00018 IMPATOM_BEGIN_NAMESPACE
00019
00020
00021
00022
00023
00024 class IMPATOMEXPORT Mol2Selector {
00025 public:
00026 virtual bool operator()(const std::string& atom_line) const=0;
00027 virtual ~Mol2Selector();
00028 };
00029
00030
00031 class AllMol2Selector: public Mol2Selector {
00032 bool operator()(const std::string&) const {return true;}
00033 };
00034
00035
00036
00037 class IMPATOMEXPORT NonhydrogenMol2Selector : public Mol2Selector {
00038 public:
00039 bool operator() (const std::string& atom_line) const;
00040 };
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 IMPATOMEXPORT Hierarchy read_mol2(TextInput mol2_file,
00052 Model* model,
00053 const Mol2Selector& mol2sel
00054 = AllMol2Selector());
00055
00056 IMPATOMEXPORT void write_mol2(Hierarchy rhd,
00057 TextOutput file_name);
00058
00059
00060
00061 IMPATOM_END_NAMESPACE
00062
00063 #endif