--- trunk/OOPSE/libmdtools/Exclude.cpp 2003/03/26 21:50:33 412 +++ trunk/OOPSE/libmdtools/Exclude.cpp 2003/03/27 22:16:27 431 @@ -1,9 +1,12 @@ +#include #include + #include "Exclude.hpp" +int Exclude::nExcludes; +int* Exclude::exPairs; - Exclude::Exclude( int theIndex ){ exI = theIndex*2; exJ = theIndex*2 + 1; @@ -12,6 +15,7 @@ void Exclude::createArray( int the_nExcludes ){ void Exclude::createArray( int the_nExcludes ){ nExcludes = the_nExcludes; + std::cerr << "nExcludes = " << nExcludes << "\n"; exPairs = new int[nExcludes*2]; }