blob: d7a6441a365e9eda3b7eaef7e2bf85682cc865cd [file] [log] [blame]
/*************************************************************************/
/* */
/* Copyright (c) 1994 Stanford University */
/* */
/* All rights reserved. */
/* */
/* Permission is given to use, copy, and modify this software for any */
/* non-commercial purpose as long as this copyright notice is not */
/* removed. All other uses, including redistribution in whole or in */
/* part, are forbidden without prior written permission. */
/* */
/* This software is provided with absolutely no warranty and no */
/* support. */
/* */
/*************************************************************************/
/* This file contains the declaration of the GlobalMemory
structure and the maximum number of molecules allowed
by the program. */
#define MAXLCKS 4096
struct GlobalMemory {
LOCKDEC(IOLock)
LOCKDEC(IndexLock)
LOCKDEC(IntrafVirLock)
LOCKDEC(InterfVirLock)
LOCKDEC(FXLock)
LOCKDEC(FYLock)
LOCKDEC(FZLock)
LOCKDEC(KinetiSumLock)
LOCKDEC(PotengSumLock)
ALOCKDEC(MolLock, MAXLCKS)
BARDEC(start)
BARDEC(InterfBar)
BARDEC(PotengBar)
int Index;
double VIR;
double SUM[3];
double POTA, POTR, POTRF;
unsigned long createstart,createend,computestart,computeend;
unsigned long trackstart, trackend, tracktime;
unsigned long intrastart, intraend, intratime;
unsigned long interstart, interend, intertime;
};
extern struct GlobalMemory *gl;