Files
pymol-open-source/layer2/SideChainHelper.h
Thomas Holder 9f53f30e47 segi, resn, name of arbitrary length; settings in iterate/alter
* support segi, resn and name of arbitrary string length
* expose settings to iterate/alter via "s.<name>"
* Python 3 compatibility for champ module
* apbs_tools: apply fixes from Pymol-script-repo
2015-12-14 19:11:12 +00:00

24 lines
592 B
C

/*
* This file contains source code for the PyMOL computer program
* Copyright (c) Schrodinger, LLC.
*/
#pragma once
#include "PyMOLGlobals.h"
#include "ObjectMolecule.h"
#include "CoordSet.h"
#include "AtomInfo.h"
void SideChainHelperMarkNonCartoonBonded(bool * marked,
const ObjectMolecule * obj,
const CoordSet * cs,
bool cartoon_side_chain_helper,
bool ribbon_side_chain_helper);
bool SideChainHelperFilterBond(PyMOLGlobals * G,
const bool *marked,
const AtomInfoType *ati1,
const AtomInfoType *ati2,
int b1, int b2, int na_mode, int *c1, int *c2);