Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef _RD_GASTEIGERCHARGES_H
00011 #define _RD_GASTEIGERCHARGES_H
00012
00013 #include <vector>
00014
00015 namespace RDKit {
00016 class ROMol;
00017 void computeGasteigerCharges(const ROMol *mol, int nIter=12,
00018 bool throwOnParamFailure=false);
00019 void computeGasteigerCharges(const ROMol &mol, int nIter=12,
00020 bool throwOnParamFailure=false);
00021 void computeGasteigerCharges(const ROMol &mol,std::vector<double> &charges,
00022 int nIter=12,bool throwOnParamFailure=false);
00023 }
00024
00025 #endif
00026
00027