00001
00002
00003
00004
00005 #ifndef BALL_STRUCTURE_UCK_H
00006 #define BALL_STRUCTURE_UCK_H
00007
00008 #ifndef BALL_DATATYPE_STRING_H
00009 #include <BALL/DATATYPE/string.h>
00010 #endif
00011
00012 #include <vector>
00013
00014 namespace BALL
00015 {
00016 class Molecule;
00017
00022 class BALL_EXPORT UCK
00023 {
00024 public:
00025
00028 typedef std::vector<std::pair<Size, Size> > PairVector;
00029 typedef std::vector<std::vector<Size> > SizeVector;
00031
00032
00033
00034 UCK();
00035
00036
00037
00038 UCK(const Molecule& mol, Size d=3);
00039
00040
00041
00042 UCK(UCK& uck);
00043
00044
00045
00046 virtual ~UCK();
00047
00048
00049
00050 void printUCK(std::ostream& outstr);
00051
00052 Size getDepth();
00053
00054 const String& getFormula() const;
00055
00056 const String& getUCK() const;
00057
00058 const String& getId() const;
00059
00060 float getWeight();
00061
00062 private:
00063
00064
00065
00066
00067
00068 String eraseDoubleLabels(const Size d, String x, String label);
00069
00070
00071
00072 void makeUCK(const Molecule& m);
00073
00074
00075
00076 void getGraph(std::vector<String>& v, PairVector& e, const Molecule& mol);
00077
00078
00079
00080
00081 void makePathMatrix(const PairVector& e, SizeVector& sp, const Size e_size);
00082
00083
00084
00085 void makePairs(const std::vector<String>& lambda_map, std::vector<String>& pairs, const std::vector<vector<Size> >& sp);
00086
00087
00088
00089 String lambda(String lambda_d, const PairVector& e, const std::vector<String>& v, Size pos, Size d);
00090
00091
00092
00093
00094 void createFinalString(const std::vector<String>& pairs);
00095
00096 Size depth_;
00097 String formula_;
00098 String uck_str_;
00099 String id_;
00100 float weight_;
00101 };
00102
00103 }
00104 #endif // BALL_STRUCTURE_UCK_H