--- trunk/OOPSE/libmdtools/Exclude.cpp 2003/03/26 21:23:00 410 +++ trunk/OOPSE/libmdtools/Exclude.cpp 2003/03/26 23:14:02 416 @@ -2,15 +2,16 @@ #include "Exclude.hpp" +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]; }