--- trunk/OOPSE/libmdtools/Exclude.cpp 2003/03/26 21:23:00 410 +++ trunk/OOPSE/libmdtools/Exclude.cpp 2003/03/26 21:54:49 413 @@ -2,15 +2,17 @@ #include "Exclude.hpp" +int* Exclude::exPair +int Exclude::nExcludes; - Exclude::Exclude( int theIndex ){ exI = theIndex*2; exJ = theIndex*2 + 1; } -void Exclude::createArray( int nExcludes ){ - +void Exclude::createArray( int the_nExcludes ){ + + nExcludes = the_nExcludes; exPairs = new int[nExcludes*2]; }