| 52 |
|
#include "selection/SelectionCompiler.hpp" |
| 53 |
|
#include "selection/NameFinder.hpp" |
| 54 |
|
#include "selection/DistanceFinder.hpp" |
| 55 |
+ |
#include "selection/HullFinder.hpp" |
| 56 |
|
#include "selection/IndexFinder.hpp" |
| 57 |
|
#include "utils/OpenMDBitSet.hpp" |
| 58 |
|
#include "primitives/StuntDouble.hpp" |
| 130 |
|
OpenMDBitSet expression(const std::vector<Token>& tokens, int pc); |
| 131 |
|
|
| 132 |
|
OpenMDBitSet lookupValue(const std::string& variable); |
| 133 |
+ |
|
| 134 |
+ |
OpenMDBitSet hull(); |
| 135 |
|
|
| 136 |
|
void evalError(const std::string& message) { |
| 137 |
|
sprintf( painCave.errMsg, |
| 193 |
|
SimInfo* info; |
| 194 |
|
NameFinder nameFinder; |
| 195 |
|
DistanceFinder distanceFinder; |
| 196 |
+ |
HullFinder hullFinder; |
| 197 |
|
IndexFinder indexFinder; |
| 198 |
|
int nStuntDouble; //nGLOBALatoms + nGLOBALrigidbodies |
| 199 |
|
|