Public Methods | |
usage () | |
Constructor. More... | |
int | cite_feature (std::string const &feature) |
Increment usage count for the given feature; return error if not found. More... | |
int | cite_paper (std::string const &paper) |
Increment usage count for the given paper; return error if not found. More... | |
std::string | report (int flag) |
Generate a report for used features (0 = URL, 1 = BibTeX). More... | |
Protected Attributes | |
std::map< std::string, int > | feature_count_ |
Usage count for each feature. More... | |
std::map< std::string, int > | paper_count_ |
Usage count for each cited paper. More... | |
std::map< std::string, std::string > | paper_url_ |
URL for each paper. More... | |
std::map< std::string, std::string > | paper_bibtex_ |
BibTeX entry for each paper. More... | |
std::map< std::string, std::string > | feature_paper_map_ |
Map code features to the relevant papers. More... |
Definition at line 36 of file colvarmodule.C.
|
Constructor.
Definition at line 2269 of file colvarmodule.C. |
|
Increment usage count for the given feature; return error if not found.
Definition at line 2847 of file colvarmodule.C. Referenced by colvarmodule::cite_feature, and colvarmodule::colvarmodule. |
|
Increment usage count for the given paper; return error if not found.
Definition at line 2857 of file colvarmodule.C. |
|
Generate a report for used features (0 = URL, 1 = BibTeX).
Definition at line 2867 of file colvarmodule.C. Referenced by colvarmodule::feature_report. |
|
Usage count for each feature.
Definition at line 55 of file colvarmodule.C. |
|
Map code features to the relevant papers.
Definition at line 67 of file colvarmodule.C. |
|
BibTeX entry for each paper.
Definition at line 64 of file colvarmodule.C. |
|
Usage count for each cited paper.
Definition at line 58 of file colvarmodule.C. |
|
URL for each paper.
Definition at line 61 of file colvarmodule.C. |