--- trunk/OOPSE/libmdtools/Exclude.cpp 2003/03/26 21:23:00 410 +++ trunk/OOPSE/libmdtools/Exclude.cpp 2003/03/27 22:16:27 431 @@ -1,16 +1,21 @@ +#include #include + #include "Exclude.hpp" +int Exclude::nExcludes; +int* Exclude::exPairs; - 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; + std::cerr << "nExcludes = " << nExcludes << "\n"; exPairs = new int[nExcludes*2]; }