BALL  1.5.0
diffGridBasedScoring.h
Go to the documentation of this file.
1 // ----------------------------------------------------
2 // $Maintainer: Marcel Schumann $
3 // $Authors: Marcel Schumann $
4 // ----------------------------------------------------
5 
6 #ifndef BALL_SCORING_COMMON_DIFFGRIDBASEDSCORING_H
7 #define BALL_SCORING_COMMON_DIFFGRIDBASEDSCORING_H
8 
11 
12 
13 namespace BALL
14 {
16  {
17  public:
18  DiffGridBasedScoring(AtomContainer& receptor, AtomContainer& ligand, Options& options);
19 
20  DiffGridBasedScoring(AtomContainer& receptor, Vector3& hashgrid_origin, Options& options);
21 
22  ~DiffGridBasedScoring() = default;
23 
24  virtual void setLigand(AtomContainer* sys);
25 
27  void update();
28 
30  virtual double updateScore();
31 
32  void testOverlaps(Vector3& position, HashGrid3<Atom*>* hashg = nullptr);
33 
34  protected:
35  //ForceField* force_field_;
36 
39  void updatePrecalculatedScore(Size set);
40  };
41 }
42 
43 #endif // BALL_SCORING_COMMON_DIFFGRIDBASEDSCORING_H
BALL::Options
Definition: options.h:46
BALL_EXPORT
#define BALL_EXPORT
Definition: COMMON/global.h:50
forceField.h
BALL::TVector3< float >
BALL::AtomContainer
Definition: atomContainer.h:29
BALL_SIZE_TYPE
BALL
Definition: constants.h:12
BALL::GridBasedScoring
Definition: gridBasedScoring.h:21
BALL::HashGrid3
Three-dimensional Hash Grid Class.
Definition: hashGrid.h:38
gridBasedScoring.h
BALL::DiffGridBasedScoring
Definition: diffGridBasedScoring.h:15