X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/3c0ea1a85b09df3bb85839ba92831fca9e10a82f..0391c237272d90acfc769f4aeebe0554d47f74cb:/hypercache.cpp diff --git a/hypercache.cpp b/hypercache.cpp index fd2bbcb..26c8626 100644 --- a/hypercache.cpp +++ b/hypercache.cpp @@ -1,17 +1,19 @@ #include "hypercache.h" +#include +#include + configcache *hypercache::C = NULL; vector hypercache::delayedParaAdd; vector hypercache::delayedParaSet; string hypercache::activeCFile = ""; vector hypercache::parentConfigs; ostream* hypercache::log; -vector hypercache::Os; +vector hypercache::Os; int hypercache::NEQUI; int hypercache::NSKIP; int hypercache::nequileft; pair hypercache::mostEquilibratedConfig; -int hypercache::lastWrittenObsEquis; void hypercache::initCache(configcache **cache, const string& cacheid, const int& nequi, const int& nskip, const string& datadir, @@ -40,8 +42,8 @@ void hypercache::addPara(const string& parid, const double& val) { if (C != NULL) C->addPara(parid, val); - for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) - (*osit)->addPara(parid, val); + for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) + osit->c->addPara(parid, val); } void hypercache::setPara(const string& parid, const double& val) { @@ -53,16 +55,16 @@ void hypercache::setPara(const string& parid, const double& val) { if (C != NULL) C->setPara(parid, val); - for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) - (*osit)->setPara(parid, val); + for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) + osit->c->setPara(parid, val); nequileft = NEQUI; mostEquilibratedConfig.first = NEQUI; } void hypercache::finalize() { - for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) - delete *osit; + for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) + delete osit->c; delete C; } @@ -143,23 +145,23 @@ void hypercache::writeC() { } void hypercache::writeO(int obsid) { - if ( ( lastWrittenObsEquis + NSKIP != NEQUI-nequileft-NSKIP ) && Os[obsid]->isOutFileOpen() ) - Os[obsid]->finishOutFile(); + if ( ( Os[obsid].lastWrittenObsEquis + NSKIP != NEQUI-nequileft-NSKIP ) && Os[obsid].c->isOutFileOpen() ) + Os[obsid].c->finishOutFile(); if ( activeCFile != "" ) { unsigned long afilehash = configcache::hash(activeCFile); - Os[obsid]->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long), NEQUI-nequileft-NSKIP); + Os[obsid].c->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long), NEQUI-nequileft-NSKIP); } - Os[obsid]->writeConfig(NEQUI-nequileft-NSKIP); + Os[obsid].c->writeConfig(NEQUI-nequileft-NSKIP); - lastWrittenObsEquis = NEQUI-nequileft-NSKIP; + Os[obsid].lastWrittenObsEquis = NEQUI-nequileft-NSKIP; } void hypercache::readO(int obsid, bool *readNewObsConfig, int *nequiObsLeft) { - Os[obsid]->readConfig(readNewObsConfig, nequiObsLeft); + Os[obsid].c->readConfig(readNewObsConfig, nequiObsLeft); if ( *readNewObsConfig && *nequiObsLeft < 0 ) { - unsigned long *parentconfig = (unsigned long*)Os[obsid]->getHeader("concurrent_cfile"); + unsigned long *parentconfig = (unsigned long*)Os[obsid].c->getHeader("concurrent_cfile"); if ( parentconfig != NULL ) addParentConfig(parentconfig); }