/* * Copyright (C) 2004-2005 by David J. Hardy. All rights reserved. * * result.h */ #ifndef RESULT_H #define RESULT_H #include "force/force.h" #ifdef __cplusplus extern "C" { #endif typedef struct Result_tag { double energy; double ke; ForceEnergy fe; /* use energy struct from force lib */ double temp; } Result; #ifdef __cplusplus } #endif #endif /* RESULT_H */