psolPot
index


PSolPot - solvent PREs as structural restraints
 
  The algorithm used to compute solvent PREs is described in
 
   Zhou Gong, C.D. Schwieters and Chun Tang, ``Theory and
   practice of using solvent paramagnetic relaxation enhancement
   to characterize protein conformational dynamics,'' Methods,
   148, 48-56 (2018) PMID: 29656079
 
 
Constructor:
 
  PSolPot(instanceName,
          selection,
          radii,
          restraints="")
 
   Return a PSolPot object with the given instance name. The selection
   argument is a string or atomSel.AtomSel object, while radii is
   an array of atomic radii to use for each atom in selection. Restraint
   assignments can be specified in the restraints argument.
 
 
Methods:
 
  selection()           - return the selection given in the constructor.
 
  addRestraints(string) - add restraints given in the string argument
 
  findImportantAtoms()  - for each restraint, determine which atoms contribute
                          significantly to the integrand.
 
  correlation()         - return the correlation between calculated and
                          observed solvent PREs.
 
  rms()                 - return root mean square deviation between calculated
                          and observed solvent PRE.
 
  qFactor()             - return the quality factor:
                                 rms / < obs^2 >
 
  violations()          - return the number of violated restraints.
 
  numRestraints()       - return the number of restraints.
 
  info()                - return an informational string.
 
  showRestraints(violated) - return string with info on restraints. If the
                             argument is True, only report on violated
                             restraints.
 
  showViolations()      - return an string with info on each restraint.
                          if showAllRestraints==True this will be all
                          restraints, otherwise it reports only on violated
                          restraints.
 
  surfInstance() - return the associated surf.Surf object.
  tessellation() - return the associated surfTessellation.SurfTessellation
                   object.
 
  restraints() - return a list of PsolRestraint objects- described below.
 
  retessellateIfNecessary(force=False)
                        - Regenerate the surface-describing triangles if the
                          atoms have moved more than surfTess.moveTol() since
                          the last tessellation. If force=True, always
                          retessellate. This function returns True if the
                          tessellation is performed, else False.
 
  kForOpt()  -   prefactor coefficient used in tauc optimization. May be
                 redundant.
 
 
  //
  // parameters specific for PSol
  //
 
  radii         - vector of atomic radii, of size len(selection()).
  radiusNoise   - small value added to each atomic radius to try to avoid
                  numerical instabilities. Further, if a bad tessellation
                  is detected, a different random value between
                  0 and radiusNoise is used. [10^{-8}]
  probeRadius   - solute radius, used to generate tessellated surface
                  for surface integration. [5.4 angstrom]
  radiusOffset  - amount added to VdW radii given in radii for use in
                  generating the tessellated surface  [5.4 angstrom].
  rmin         -  min distance from surface to nuclear center. The
                  value actually used depends on physicalAtoms(). If the
                  later is True the actual rmin used is the larger of rmin and
                  radii[i]+radiusOffset-centerOffset [0.8 angstrom].
  physicalAtoms-  a boolean value. Please see the docs for the rmin
                  accessor. [True]
  centerOffset -  center offset of solute - for off-center paramagnetic
                  center [0. angstrom]
 
 
 
  targetType    - Whether energy term targets differences in observed and
                  calculated solvent PRE, or the correlation of observed to
                  calculated: "gamma" or "correlation". ["correlation"]
  potType       - energy form for the energy term: "soft" or "hard" ["hard].
  rlxType       - specification of relaxation type: "r2dd" or "r1dd".
                  This is used in computation of the constant prefactor, 
                  and has no effect for correlation target type.  ["r2dd"]
  funType       - takes a value of "square" or "harmonic". The former value 
                  results in zero energy in a range of obs()+/-err().
                  ["harmonic"]
  sclType       - controls how the restraint energy is scaled: "none" for no
                  scaling (weight=1), "sigma" for 1/err^2 scaling, and 
                  obs/obs_max/err^2 for "obsig" ["const"]
 
  showAllRestraints - boolean. See the entry for the showViolations() method.
 
  hardExp       - exponential for hard potType [2].
  rSwitch       - parameters
  softExp       - for
  asympSlope    - soft potType.
  weightMax     - maximum restraint scale factor for sigma or obsig sclType.
 
  tauc          - tauc [ns]
  freqI         - nuclear frequency  [MHz]
  sqn           -  electron spin quantum number
  gfac          - g-factor
  gammaI        - gyromagnetic ratio [10^7 Ts-1]
  rho0          - conc. of paramagnetic solute [mM]
 
  coeff         - constant PRE prefactor. If setCoeff is called with a
                  negative prefactor, it is computed via the appropriate 
                  expression given below, otherwise it is set to the given 
                  value. 
 
  atomContribThreshold - ratio used in findImportantAtoms. For each restraint,
                         only atoms whose sums add up to this ratio of the
                         total for each calculated solvent PRE value are
                         used in energy and gradient calculations.
 
  fixTauc  - If True, fix tau_c. If False, parameters for tau_c optimization
             should be specified - this feature is not well tested.
 
             Parameters for tauc optimization
  tcmax    -  max of tauc [ns]
  tcmin    -  min of tauc [ns]
  toAtom   - pseudo-atoms for tauc optimization
  taAtom 
  tbAtom
 
  verbose  - set to True for verbose output [False].
 
 
 
Class PSolRestraint
 
Accessors:
 
  obs    - observed solvent PRE value
  err    - error in observed solvent PRE value
  weight - per-restraint energy scale factor - this is set via the 
           pot.setCoeff method and depends on the value of pot.sclType.
           See above. [ This should be setable with pot.sclType="none", but
           isn't yet. ]
 
 
Members/Methods:
 
  calcd()              - the calculated solventPRE value.
 
  minDist(ensIndex=-1) - the minimum distance of the first atom in the
                         selection to the tessellated surace. The optional
                         argument is used for ensembleSimulation
                         calculations to access the minimum distance for
                         each ensemeble member. An ensIndex of -1 will return
                         the shortest distance over the ensemble.
                        
  name()               - This should be a unique (within this term)
                         restraint name. It is currently the selection
                         string book-ended by parentheses.
 
  sel()                - The atomSel.AtomSel selection for this
                         restraint.
                         
  comment()            - return any per-restraint comment specified in the
                         input restraint list.
 
  importantAtoms       - list of indices of atoms making significant
                         constributions to the restraint's
                         corresponding sPRE value. The indices are into
                         the atomSelAtomSel pot->selection().
 
  missingAtomFactor    - For this restraint, the inverse of the fraction
                         of the sPRE value contributed by all surface 
                         contributions of atoms in importantAtoms relative
                         to the contribution of all atoms.
 
  triSpeedupFactor     - The ratio of the number of triangles corresponding 
                         to those of importantAtoms to the total number of
                         triangles.
  
  itgIr6()             - The computed value of the volume integral, without
                         multiplication by missingAtomFactor.
 
  // ensemble info
  //  double deviation(); FIX ??
 
Currently, support for non-stereospecifically assigned protons (mostly 
involving glycine HA atoms) is not supported.
 
 
We use the expression for solvent PRE given by 
 
 \gamma = k \int dv r^{-6}
 
where $r$ is the distance between the paramagnetic center of the
co-solute and the target nucleus, and the integral is over all space
accessible to the co-solute molecule. We approximate this expression
as
 
 \gamma = k/9 \sum_i a_i n_i \cdot r_i |r_i|^{-6}
 
with the sum over all vertices of all triangles of a tessellated
molecular surface, $a_i$ the area of triangle $i$,  $r_i$ a vector
from vertex $i$ to the target nucleus, and $n_i$ an outward-facing
unit surface normal vector. In this implementation, the sum is over
those atoms (importantAtoms) whose sums provide atomContribThreshold
of the total of the sum.
 
The prefactor, for correlation targetType, the energy does not depend
on the value of $k$. For gamma targetType, $k$ can be allowed to float
between tcmin and tcmax using psuedo-atoms toAtom, taAtom and tbAtom.
 
If not set explicitly, the prefactor is given by:
 
 for rlxType = R2DD
  coeff = Na \rho_0 \tau_c (4 + 3/(1+(\omega\tau_c)^2) +
                            13 / (1+(\omega_e\tau_c)^2))
 for rlxType = R1DD
  coeff = Na \rho_0 \tau_c ( 3/(1+(\omega\tau_c)^2) +
                             7/(1+(\omega_e\tau_c)^2))
  
  where Na is Avogadro's number, \rho_0 is the concentration of
  solute, \omega is the Larmor frequency and \omega_e is the electron
  spin characteristic frequency. 
 
The value of \rho_0 is frequently not known, so uncertainty is rolled
into the value of \tau_c, if optimized. Most typically, correlation
targetType is used, and then least squared used to determine the
appropriate prefactor, which is then set.
 
 
 
 
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 4.0.2
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.

 
Classes
       
builtins.object
CDSList_PSolRestraint
EnsemblePot
PSolPot_LetterClass
Modified
ModifiedBase
PSolPot
Restraint_PSolPot
PSolRestraint
VarEnsWeights
rc_EnsemblePot
rc_ptr_PSolRestraint

 
class CDSList_PSolRestraint(builtins.object)
    CDSList_PSolRestraint(*args)
 

 
  Methods defined here:
__delitem__(self, *args, **kwargs) -> 'void'
__getitem__(self, *args) -> 'CDSList< CDS::rc_ptr< PSolRestraint > >'
__getslice__(self, *args, **kwargs) -> 'CDSList< CDS::rc_ptr< PSolRestraint > >'
__init__(self, *args)
Initialize self.  See help(type(self)) for accurate signature.
__len__(self, *args, **kwargs) -> 'int'
__repr__ = _swig_repr(self)
__setitem__(self, *args, **kwargs) -> 'void'
append(self, *args, **kwargs) -> 'void'
help(self, *args, **kwargs) -> 'String'
remove(self, *args, **kwargs) -> 'void'
removeAll(self, *args, **kwargs) -> 'void'

Static methods defined here:
__swig_destroy__ = delete_CDSList_PSolRestraint(...)

Data descriptors defined here:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)
thisown

 
The membership flag

 
class EnsemblePot(builtins.object)
    EnsemblePot(*args, **kwargs)
 

 
  Methods defined here:
__init__(self, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__repr__ = _swig_repr(self)
addEnsWeights(self, *args, **kwargs) -> 'void'
calcEnergy(self, *args, **kwargs) -> 'float_type'
calcEnergyAndDerivs(self, *args, **kwargs) -> 'float_type'
calcWDerivs(self, *args, **kwargs) -> 'bool const'
clearEnsWeights(self, *args, **kwargs) -> 'void'
energyMaybeDerivs0(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs1(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs2(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs3(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs4(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivsPost(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivsPre(self, *args, **kwargs) -> 'float_type'
ensWeight(self, *args, **kwargs) -> 'float_type'
ensWeights(self, *args, **kwargs) -> 'CDSList< float_type >'
ensWeightsInfo(self, *args, **kwargs) -> 'String'
getEnsWeights(self, *args, **kwargs) -> 'CDSList< VarEnsWeights > &'
setCalcWDerivs(self, *args, **kwargs) -> 'void'
setEnsWeights(self, *args, **kwargs) -> 'void'
setUseSimEnsWeights(self, *args, **kwargs) -> 'void'
simulation(self, *args) -> 'EnsembleSimulationBase const *'
updateEnsWeights(self, *args, **kwargs) -> 'void'
useSimEnsWeights(self, *args, **kwargs) -> 'bool const'

Static methods defined here:
__swig_destroy__ = delete_EnsemblePot(...)

Data descriptors defined here:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)
thisown

 
The membership flag

 
class Modified(builtins.object)
    Modified(*args, **kwargs)
 

 
  Methods defined here:
__call__(self, *args, **kwargs) -> 'int'
Call self as a function.
__init__(self, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__repr__ = _swig_repr(self)
asString(self, *args, **kwargs) -> 'String'
clear(self, *args, **kwargs) -> 'void'
set(self, *args, **kwargs) -> 'void'
update(self, *args, **kwargs) -> 'void'
value(self, *args, **kwargs) -> 'int'

Static methods defined here:
__swig_destroy__ = delete_Modified(...)

Data descriptors defined here:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)
thisown

 
The membership flag

Data and other attributes defined here:
MOD_SELF = 1
MOD_SIMULATION = 2

 
class ModifiedBase(builtins.object)
    ModifiedBase(*args, **kwargs)
 

 
  Methods defined here:
__init__(self, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__repr__ = _swig_repr(self)
registerTo(self, *args, **kwargs) -> 'void'
unRegister(self, *args, **kwargs) -> 'void'
updateValues(self, *args, **kwargs) -> 'void'

Static methods defined here:
__swig_destroy__ = delete_ModifiedBase(...)

Data descriptors defined here:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)
modified

 
registeredSimulations

 
thisown

 
The membership flag

 
class PSolPot_LetterClass(EnsemblePot)
    PSolPot_LetterClass(*args, **kwargs)
 

 
 
Method resolution order:
PSolPot_LetterClass
EnsemblePot
builtins.object

Methods defined here:
AveSqObs(self, *args, **kwargs) -> 'double'
__init__(self, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__repr__ = _swig_repr(self)
addRestraints(self, *args, **kwargs) -> 'void'
asympSlope(self, *args, **kwargs) -> 'float_type const'
atomContribThreshold(self, *args, **kwargs) -> 'float_type const'
centerOffset(self, *args, **kwargs) -> 'float_type const'
coeff(self, *args, **kwargs) -> 'double'
correlation(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs0(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs1(self, *args, **kwargs) -> 'float_type'
findImportantAtoms(self, *args, **kwargs) -> 'void'
fixTauc(self, *args, **kwargs) -> 'bool const'
freqI(self, *args, **kwargs) -> 'float_type const'
funType(self, *args, **kwargs) -> 'PSolPot::PSolFunType'
gammaI(self, *args, **kwargs) -> 'float_type const'
gfac(self, *args, **kwargs) -> 'float_type const'
hardExp(self, *args, **kwargs) -> 'float_type const'
info(self, *args, **kwargs) -> 'String'
kForOpt(self, *args, **kwargs) -> 'double'
mScale(self, *args, **kwargs) -> 'float_type const'
numRestraints(self, *args, **kwargs) -> 'int'
physicalAtoms(self, *args, **kwargs) -> 'bool const'
potType(self, *args, **kwargs) -> 'PSolPot::PSolPotType'
probeRadius(self, *args, **kwargs) -> 'float_type const'
pyXplorHelp(self, *args, **kwargs) -> 'String'
qFactor(self, *args, **kwargs) -> 'double'
rSwitch(self, *args, **kwargs) -> 'float_type const'
radii(self, *args, **kwargs) -> 'CDSVector< float_type > const'
radiusNoise(self, *args, **kwargs) -> 'float_type const'
radiusOffset(self, *args, **kwargs) -> 'float_type const'
restraints(self, *args, **kwargs) -> 'CDSList< CDS::rc_ptr< PSolRestraint > >'
retessellateIfNecessary(self, *args, **kwargs) -> 'bool'
rho0(self, *args, **kwargs) -> 'float_type const'
rlxType(self, *args, **kwargs) -> 'PSolPot::PSolRlxType'
rmin(self, *args, **kwargs) -> 'float_type const'
rms(self, *args, **kwargs) -> 'double'
sclType(self, *args, **kwargs) -> 'PSolPot::PSolSclType'
selection(self, *args, **kwargs) -> 'AtomSel const &'
setAsympSlope(self, *args, **kwargs) -> 'void'
setAtomContribThreshold(self, *args, **kwargs) -> 'void'
setCenterOffset(self, *args, **kwargs) -> 'void'
setCoeff(self, *args, **kwargs) -> 'void'
setFixTauc(self, *args, **kwargs) -> 'void'
setFreqI(self, *args, **kwargs) -> 'void'
setFunType(self, *args, **kwargs) -> 'void'
setGammaI(self, *args, **kwargs) -> 'void'
setGfac(self, *args, **kwargs) -> 'void'
setHardExp(self, *args, **kwargs) -> 'void'
setMScale(self, *args, **kwargs) -> 'void'
setPhysicalAtoms(self, *args, **kwargs) -> 'void'
setPotType(self, *args, **kwargs) -> 'void'
setProbeRadius(self, *args, **kwargs) -> 'void'
setRSwitch(self, *args, **kwargs) -> 'void'
setRadii(self, *args, **kwargs) -> 'void'
setRadiusNoise(self, *args, **kwargs) -> 'void'
setRadiusOffset(self, *args, **kwargs) -> 'void'
setRho0(self, *args, **kwargs) -> 'void'
setRlxType(self, *args, **kwargs) -> 'void'
setRmin(self, *args, **kwargs) -> 'void'
setSclType(self, *args, **kwargs) -> 'void'
setShowAllRestraints(self, *args, **kwargs) -> 'void'
setSoftExp(self, *args, **kwargs) -> 'void'
setSqn(self, *args, **kwargs) -> 'void'
setTaAtom(self, *args, **kwargs) -> 'void'
setTargetType(self, *args, **kwargs) -> 'void'
setTauC(self, *args, **kwargs) -> 'void'
setTbAtom(self, *args, **kwargs) -> 'void'
setTcMax(self, *args, **kwargs) -> 'void'
setTcMin(self, *args, **kwargs) -> 'void'
setToAtom(self, *args, **kwargs) -> 'void'
setVerbose(self, *args, **kwargs) -> 'void'
setWeightMax(self, *args, **kwargs) -> 'void'
showAllRestraints(self, *args, **kwargs) -> 'bool const'
showRestraints(self, *args, **kwargs) -> 'String'
showViolations(self, *args, **kwargs) -> 'String'
softExp(self, *args, **kwargs) -> 'float_type const'
sqn(self, *args, **kwargs) -> 'float_type const'
surfInstance(self, *args, **kwargs) -> 'Surf *'
taAtom(self, *args, **kwargs) -> 'Atom const'
targetType(self, *args, **kwargs) -> 'PSolPot::PSolTargetType const'
tauc(self, *args, **kwargs) -> 'float_type const'
tbAtom(self, *args, **kwargs) -> 'Atom const'
tcmax(self, *args, **kwargs) -> 'float_type const'
tcmin(self, *args, **kwargs) -> 'float_type const'
tessellation(self, *args, **kwargs) -> 'SurfTessellation *'
toAtom(self, *args, **kwargs) -> 'Atom const'
updateRadii(self, *args, **kwargs) -> 'void'
verbose(self, *args, **kwargs) -> 'bool const'
violations(self, *args, **kwargs) -> 'float_type'
weightMax(self, *args, **kwargs) -> 'float_type const'

Static methods defined here:
__swig_destroy__ = delete_PSolPot_LetterClass(...)

Data descriptors defined here:
thisown

 
The membership flag

Data and other attributes defined here:
CONST = 0
CORRELATION = 1
GAMMA = 0
HARD = 1
HARMONIC = 1
OBSIG = 2
R1DD = 1
R2DD = 0
SIGMA = 1
SOFT = 0
SQUARE = 0

Methods inherited from EnsemblePot:
addEnsWeights(self, *args, **kwargs) -> 'void'
calcEnergy(self, *args, **kwargs) -> 'float_type'
calcEnergyAndDerivs(self, *args, **kwargs) -> 'float_type'
calcWDerivs(self, *args, **kwargs) -> 'bool const'
clearEnsWeights(self, *args, **kwargs) -> 'void'
energyMaybeDerivs2(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs3(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs4(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivsPost(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivsPre(self, *args, **kwargs) -> 'float_type'
ensWeight(self, *args, **kwargs) -> 'float_type'
ensWeights(self, *args, **kwargs) -> 'CDSList< float_type >'
ensWeightsInfo(self, *args, **kwargs) -> 'String'
getEnsWeights(self, *args, **kwargs) -> 'CDSList< VarEnsWeights > &'
setCalcWDerivs(self, *args, **kwargs) -> 'void'
setEnsWeights(self, *args, **kwargs) -> 'void'
setUseSimEnsWeights(self, *args, **kwargs) -> 'void'
simulation(self, *args) -> 'EnsembleSimulationBase const *'
updateEnsWeights(self, *args, **kwargs) -> 'void'
useSimEnsWeights(self, *args, **kwargs) -> 'bool const'

Data descriptors inherited from EnsemblePot:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)

 
class PSolRestraint(Restraint_PSolPot)
    PSolRestraint(*args, **kwargs)
 

 
 
Method resolution order:
PSolRestraint
Restraint_PSolPot
builtins.object

Methods defined here:
__eq__(self, *args, **kwargs) -> 'void'
Return self==value.
__init__(self, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__repr__ = _swig_repr(self)
asString(self, *args, **kwargs) -> 'String'
calcContrib(self, *args, **kwargs) -> 'void'
calcDiff(self, *args, **kwargs) -> 'void'
calcEderivClock(self, *args, **kwargs) -> 'void'
calcGandGderiv(self, *args, **kwargs) -> 'float_type'
calcd(self, *args, **kwargs) -> 'float_type'
comment(self, *args, **kwargs) -> 'String'
deriv(self, *args, **kwargs) -> 'void'
difAB(self, *args, **kwargs) -> 'double'
dtdp(self, *args, **kwargs) -> 'void'
energy(self, *args, **kwargs) -> 'double'
err(self, *args, **kwargs) -> 'float_type const'
gB(self, *args, **kwargs) -> 'double'
gBSigma(self, *args, **kwargs) -> 'double'
gammaB(self, *args, **kwargs) -> 'double'
itgIr6(self, *args, **kwargs) -> 'double'
kdfsb(self, *args, **kwargs) -> 'double'
largeCalc(self, *args, **kwargs) -> 'double'
largeObs(self, *args, **kwargs) -> 'double'
minDist(self, *args, **kwargs) -> 'float_type'
name(self, *args, **kwargs) -> 'String'
obs(self, *args, **kwargs) -> 'float_type const'
ok(self, *args, **kwargs) -> 'int'
sel(self, *args, **kwargs) -> 'AtomSel const &'
setClockDeriv(self, *args, **kwargs) -> 'void'
setErr(self, *args, **kwargs) -> 'void'
setObs(self, *args, **kwargs) -> 'void'
setWeight(self, *args, **kwargs) -> 'void'
smallCalc(self, *args, **kwargs) -> 'double'
smallObs(self, *args, **kwargs) -> 'double'
status(self, *args, **kwargs) -> 'PSolRestraint::Status'
sumAB(self, *args, **kwargs) -> 'double'
sumCalc(self, *args, **kwargs) -> 'double'
sumObs(self, *args, **kwargs) -> 'double'
surfaceIntegration(self, *args, **kwargs) -> 'float_type'
weight(self, *args, **kwargs) -> 'float_type const'

Static methods defined here:
__swig_destroy__ = delete_PSolRestraint(...)

Data descriptors defined here:
importantAtoms

 
missingAtomFactor

 
sel1

 
thisown

 
The membership flag
triSpeedupFactor

 

Data and other attributes defined here:
GREATER = 1
INSIDE = 2
LESS = 0
__hash__ = None

Methods inherited from Restraint_PSolPot:
diff(self, *args, **kwargs) -> 'float_type'
setName(self, *args, **kwargs) -> 'void'
violated(self, *args, **kwargs) -> 'bool'

Data descriptors inherited from Restraint_PSolPot:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)

 
class Restraint_PSolPot(builtins.object)
    Restraint_PSolPot(*args, **kwargs)
 

 
  Methods defined here:
__init__(self, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__repr__ = _swig_repr(self)
diff(self, *args, **kwargs) -> 'float_type'
name(self, *args, **kwargs) -> 'String const'
setName(self, *args, **kwargs) -> 'void'
violated(self, *args, **kwargs) -> 'bool'

Static methods defined here:
__swig_destroy__ = delete_Restraint_PSolPot(...)

Data descriptors defined here:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)
thisown

 
The membership flag

 
class VarEnsWeights(builtins.object)
    VarEnsWeights(*args, **kwargs)
 

 
  Methods defined here:
__init__(self, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__repr__ = _swig_repr(self)

Static methods defined here:
__swig_destroy__ = delete_VarEnsWeights(...)

Data descriptors defined here:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)
ensWeights

 
mult

 
thisown

 
The membership flag

 
class rc_EnsemblePot(builtins.object)
    rc_EnsemblePot(*args, **kwargs)
 

 
  Methods defined here:
__init__(self, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__repr__ = _swig_repr(self)

Static methods defined here:
__swig_destroy__ = delete_rc_EnsemblePot(...)

Data descriptors defined here:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)
thisown

 
The membership flag

 
class rc_ptr_PSolRestraint(builtins.object)
    rc_ptr_PSolRestraint(*args)
 

 
  Methods defined here:
__deref__(self, *args, **kwargs) -> 'PSolRestraint *'
__eq__(self, *args, **kwargs) -> 'void'
Return self==value.
__init__(self, *args)
Initialize self.  See help(type(self)) for accurate signature.
__ref__(self, *args, **kwargs) -> 'PSolRestraint &'
__repr__ = _swig_repr(self)
asString(self, *args, **kwargs) -> 'String'
calcContrib(self, *args, **kwargs) -> 'void'
calcDiff(self, *args, **kwargs) -> 'void'
calcEderivClock(self, *args, **kwargs) -> 'void'
calcGandGderiv(self, *args, **kwargs) -> 'float_type'
calcd(self, *args, **kwargs) -> 'float_type'
comment(self, *args, **kwargs) -> 'String'
count(self, *args, **kwargs) -> 'int'
decr(self, *args, **kwargs) -> 'void'
deriv(self, *args, **kwargs) -> 'void'
difAB(self, *args, **kwargs) -> 'double'
diff(self, *args, **kwargs) -> 'float_type'
dtdp(self, *args, **kwargs) -> 'void'
energy(self, *args, **kwargs) -> 'double'
err(self, *args, **kwargs) -> 'float_type const'
forceDelete(self, *args, **kwargs) -> 'void'
gB(self, *args, **kwargs) -> 'double'
gBSigma(self, *args, **kwargs) -> 'double'
gammaB(self, *args, **kwargs) -> 'double'
incr(self, *args, **kwargs) -> 'void'
itgIr6(self, *args, **kwargs) -> 'double'
kdfsb(self, *args, **kwargs) -> 'double'
largeCalc(self, *args, **kwargs) -> 'double'
largeObs(self, *args, **kwargs) -> 'double'
minDist(self, *args, **kwargs) -> 'float_type'
name(self, *args, **kwargs) -> 'String'
obs(self, *args, **kwargs) -> 'float_type const'
ok(self, *args, **kwargs) -> 'int'
ptr(self, *args, **kwargs) -> 'PSolRestraint *'
release(self, *args, **kwargs) -> 'PSolRestraint *'
reset(self, *args, **kwargs) -> 'void'
sel(self, *args, **kwargs) -> 'AtomSel const &'
setClockDeriv(self, *args, **kwargs) -> 'void'
setErr(self, *args, **kwargs) -> 'void'
setName(self, *args, **kwargs) -> 'void'
setObs(self, *args, **kwargs) -> 'void'
setWeight(self, *args, **kwargs) -> 'void'
smallCalc(self, *args, **kwargs) -> 'double'
smallObs(self, *args, **kwargs) -> 'double'
status(self, *args, **kwargs) -> 'PSolRestraint::Status'
sumAB(self, *args, **kwargs) -> 'double'
sumCalc(self, *args, **kwargs) -> 'double'
sumObs(self, *args, **kwargs) -> 'double'
surfaceIntegration(self, *args, **kwargs) -> 'float_type'
violated(self, *args, **kwargs) -> 'bool'
weight(self, *args, **kwargs) -> 'float_type const'

Static methods defined here:
__swig_destroy__ = delete_rc_ptr_PSolRestraint(...)

Data descriptors defined here:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)
importantAtoms

 
missingAtomFactor

 
sel1

 
thisown

 
The membership flag
triSpeedupFactor

 

Data and other attributes defined here:
__hash__ = None

 
realPSolPot = class PSolPot(builtins.object)
    realPSolPot(*args)
 

 
  Methods defined here:
AveSqObs(self, *args, **kwargs) -> 'double'
__deref__(self, *args, **kwargs) -> 'PSolPot *'
__init__(self, *args)
__oldinit__ = __init__(self, *args, **kwargs)
__ref__(self, *args, **kwargs) -> 'PSolPot &'
__repr__ = _swig_repr(self)
addEnsWeights(self, *args, **kwargs) -> 'void'
addRestraints(self, *args, **kwargs) -> 'void'
asympSlope(self, *args, **kwargs) -> 'float_type const'
atomContribThreshold(self, *args, **kwargs) -> 'float_type const'
calcEnergy(self, *args, **kwargs) -> 'float_type'
calcEnergyAndDerivs(self, *args, **kwargs) -> 'float_type'
calcWDerivs(self, *args, **kwargs) -> 'bool const'
centerOffset(self, *args, **kwargs) -> 'float_type const'
clearEnsWeights(self, *args, **kwargs) -> 'void'
coeff(self, *args, **kwargs) -> 'double'
correlation(self, *args, **kwargs) -> 'float_type'
decrRefCnt(self, *args, **kwargs) -> 'void'
energyMaybeDerivs0(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs1(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs2(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs3(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivs4(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivsPost(self, *args, **kwargs) -> 'float_type'
energyMaybeDerivsPre(self, *args, **kwargs) -> 'float_type'
ensWeight(self, *args, **kwargs) -> 'float_type'
ensWeights(self, *args, **kwargs) -> 'CDSList< float_type >'
ensWeightsInfo(self, *args, **kwargs) -> 'String'
findImportantAtoms(self, *args, **kwargs) -> 'void'
fixTauc(self, *args, **kwargs) -> 'bool const'
freqI(self, *args, **kwargs) -> 'float_type const'
funType(self, *args, **kwargs) -> 'PSolPot::PSolFunType'
gammaI(self, *args, **kwargs) -> 'float_type const'
getEnsWeights(self, *args, **kwargs) -> 'CDSList< VarEnsWeights > &'
gfac(self, *args, **kwargs) -> 'float_type const'
hardExp(self, *args, **kwargs) -> 'float_type const'
incrRefCnt(self, *args, **kwargs) -> 'void'
info(self, *args, **kwargs) -> 'String'
instanceData(self, *args, **kwargs) -> 'PyObject *'
instanceName(self, *args, **kwargs) -> 'char const *'
kForOpt(self, *args, **kwargs) -> 'double'
mScale(self, *args, **kwargs) -> 'float_type const'
numRestraints(self, *args, **kwargs) -> 'int'
physicalAtoms(self, *args, **kwargs) -> 'bool const'
potName(self, *args, **kwargs) -> 'char const *'
potType(self, *args, **kwargs) -> 'PSolPot::PSolPotType'
probeRadius(self, *args, **kwargs) -> 'float_type const'
pyXplorHelp(self, *args, **kwargs) -> 'String'
qFactor(self, *args, **kwargs) -> 'double'
rSwitch(self, *args, **kwargs) -> 'float_type const'
radii(self, *args, **kwargs) -> 'CDSVector< float_type > const'
radiusNoise(self, *args, **kwargs) -> 'float_type const'
radiusOffset(self, *args, **kwargs) -> 'float_type const'
refCnt(self, *args, **kwargs) -> 'int'
registerInstanceData(self, *args, **kwargs) -> 'void'
registerTo(self, *args, **kwargs) -> 'void'
resetInstanceName(self, *args, **kwargs) -> 'void'
resetPotName(self, *args, **kwargs) -> 'void'
restraints(self, *args, **kwargs) -> 'CDSList< CDS::rc_ptr< PSolRestraint > >'
retessellateIfNecessary(self, *args, **kwargs) -> 'bool'
rho0(self, *args, **kwargs) -> 'float_type const'
rlxType(self, *args, **kwargs) -> 'PSolPot::PSolRlxType'
rmin(self, *args, **kwargs) -> 'float_type const'
rms(self, *args, **kwargs) -> 'double'
scale(self, *args, **kwargs) -> 'float_type const'
sclType(self, *args, **kwargs) -> 'PSolPot::PSolSclType'
selection(self, *args, **kwargs) -> 'AtomSel const &'
setAsympSlope(self, *args, **kwargs) -> 'void'
setAtomContribThreshold(self, *args, **kwargs) -> 'void'
setCalcWDerivs(self, *args, **kwargs) -> 'void'
setCenterOffset(self, *args, **kwargs) -> 'void'
setCoeff(self, *args, **kwargs) -> 'void'
setEnsWeights(self, *args, **kwargs) -> 'void'
setFixTauc(self, *args, **kwargs) -> 'void'
setFreqI(self, *args, **kwargs) -> 'void'
setFunType(self, *args, **kwargs) -> 'void'
setGammaI(self, *args, **kwargs) -> 'void'
setGfac(self, *args, **kwargs) -> 'void'
setHardExp(self, *args, **kwargs) -> 'void'
setMScale(self, *args, **kwargs) -> 'void'
setPhysicalAtoms(self, *args, **kwargs) -> 'void'
setPotType(self, *args, **kwargs) -> 'void'
setProbeRadius(self, *args, **kwargs) -> 'void'
setRSwitch(self, *args, **kwargs) -> 'void'
setRadii(self, *args, **kwargs) -> 'void'
setRadiusNoise(self, *args, **kwargs) -> 'void'
setRadiusOffset(self, *args, **kwargs) -> 'void'
setRho0(self, *args, **kwargs) -> 'void'
setRlxType(self, *args, **kwargs) -> 'void'
setRmin(self, *args, **kwargs) -> 'void'
setScale(self, *args, **kwargs) -> 'void'
setSclType(self, *args, **kwargs) -> 'void'
setShowAllRestraints(self, *args, **kwargs) -> 'void'
setSoftExp(self, *args, **kwargs) -> 'void'
setSqn(self, *args, **kwargs) -> 'void'
setTaAtom(self, *args, **kwargs) -> 'void'
setTargetType(self, *args, **kwargs) -> 'void'
setTauC(self, *args, **kwargs) -> 'void'
setTbAtom(self, *args, **kwargs) -> 'void'
setTcMax(self, *args, **kwargs) -> 'void'
setTcMin(self, *args, **kwargs) -> 'void'
setThreshold(self, *args, **kwargs) -> 'void'
setToAtom(self, *args, **kwargs) -> 'void'
setUseSimEnsWeights(self, *args, **kwargs) -> 'void'
setVerbose(self, *args, **kwargs) -> 'void'
setWeightMax(self, *args, **kwargs) -> 'void'
showAllRestraints(self, *args, **kwargs) -> 'bool const'
showRestraints(self, *args, **kwargs) -> 'String'
showViolations(self, *args, **kwargs) -> 'String'
simulation(self, *args) -> 'EnsembleSimulationBase const *'
softExp(self, *args, **kwargs) -> 'float_type const'
sqn(self, *args, **kwargs) -> 'float_type const'
surfInstance(self, *args, **kwargs) -> 'Surf *'
taAtom(self, *args, **kwargs) -> 'Atom const'
targetType(self, *args, **kwargs) -> 'PSolPot::PSolTargetType const'
tauc(self, *args, **kwargs) -> 'float_type const'
tbAtom(self, *args, **kwargs) -> 'Atom const'
tcmax(self, *args, **kwargs) -> 'float_type const'
tcmin(self, *args, **kwargs) -> 'float_type const'
tessellation(self, *args, **kwargs) -> 'SurfTessellation *'
threshold(self, *args, **kwargs) -> 'float_type const'
toAtom(self, *args, **kwargs) -> 'Atom const'
unRegister(self, *args, **kwargs) -> 'void'
updateDelta(self, *args, **kwargs) -> 'void'
updateEnsWeights(self, *args, **kwargs) -> 'void'
updateRadii(self, *args, **kwargs) -> 'void'
updateValues(self, *args, **kwargs) -> 'void'
useSimEnsWeights(self, *args, **kwargs) -> 'bool const'
verbose(self, *args, **kwargs) -> 'bool const'
violations(self, *args, **kwargs) -> 'float_type'
weightMax(self, *args, **kwargs) -> 'float_type const'

Static methods defined here:
__swig_destroy__ = delete_PSolPot(...)

Data descriptors defined here:
__dict__

 
dictionary for instance variables (if defined)
__weakref__

 
list of weak references to the object (if defined)
instanceDataCleanup

 
instanceDataCreate

 
instanceData_

 
modified

 
registeredSimulations

 
thisown

 
The membership flag

 
Functions
       
PSolPot(*args)
pyXplorHelp(*args) -> 'String'

 
Data
        __CDSVector_hh__ = 1