1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
// $Id: global.h,v 1.3 2003/12/01 07:35:11 oliver Exp $
//
#include <BALL/STRUCTURE/fragmentDB.h>
#include <BALL/SOLVATION/poissonBoltzmann.h>
#include <BALL/STRUCTURE/defaultProcessors.h>
#include <BALL/MOLMEC/COMMON/radiusRuleProcessor.h>
#include <BALL/MOLMEC/COMMON/chargeRuleProcessor.h>
using namespace BALL;
// a pointer to the fragment data base (a pointer since we do
// not need it every time an want to save the loading time)
extern FragmentDB* frag_db;
// the system that holds everything
extern System S;
// flags:
// the three main options:
// true, if a single point calculation is requested
extern bool energy_calculation;
// true, if an energy minimization is requested
extern bool energy_minimization;
// true, if the residue checker ist to be invoked
extern bool check_structures;
// true, if a selection string was given
extern bool use_selection;
// true, if timing information and final options should be printed
extern bool verbose;
// true, if the names should be normalized upon read
extern bool normalize_names;
// true, if the bonds should be built upon read
extern bool build_bonds;
// the selection string
extern String selection;
// the optimizer gradient criterion
extern double max_gradient;
// the maximum number of iterations
extern Size max_iterations;
// the filename of the force field parameter file
extern String FF_filename;
// the filename of the output file
extern String out_filename;
//
extern bool sd_minimizer;
// The energy limit for warnings.
extern double energy_limit;
|