BALL  1.4.79
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
rescorer.h
Go to the documentation of this file.
1 // -*- Mode: C++; tab-width: 2; -*-
2 // vi: set ts=2:
3 //
4 // $id$
5 
6 #ifndef BALL_SCORING_COMMON_RESCORER_H
7 #define BALL_SCORING_COMMON_RESCORER_H
8 
9 #ifndef BALL_COMMON_H
10 # include <BALL/common.h>
11 #endif
12 
18 #include <BALL/DATATYPE/string.h>
19 
20 namespace BALL
21 {
22 
26  {
27 
28  public:
29 
30  // clone method
32 
33  // default constructor
34  Rescorer();
35 
36  // copy ctor
37  Rescorer(const Rescorer& rescorer);
38 
39  // destructor
40  virtual ~Rescorer();
41 
42  // assignment operator
43  Rescorer& operator = (const Rescorer& rescorer);
44 
45  // runs a rescoring
46  static int runRescoring(CommandlineParser& par, bool simple_rescoring, bool train);
47 
48  private:
49 
50  static void processMultiMoleculeFile(ScoringFunction* scoring_function, StructurePreparer* sp, String par_file, Rescoring* rescoring, bool train, double min_dock_score, String dock_score_label, GenericMolFile* input, GenericMolFile* output, double output_score_threshold, bool ignore_top);
51 
52  };
53 
54 }
55 
56 #endif // BALL_SCORING_COMMON_RESCORER_H
#define BALL_CREATE(name)
Definition: create.h:62
#define BALL_EXPORT
Definition: COMMON/global.h:50