X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/20acc11c8054200c02794f58e3cc63851b5627ff..66dd4bd348bacf6b43b59c2b349a913b722c6504:/hypercache.cpp?ds=sidebyside diff --git a/hypercache.cpp b/hypercache.cpp index 4ec6339..e6864ac 100644 --- a/hypercache.cpp +++ b/hypercache.cpp @@ -6,12 +6,11 @@ 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 +39,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 +52,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; } @@ -74,7 +73,7 @@ string hypercache::fileOfPath(const string& dressedfile) { bool hypercache::readC() { bool readAtLeastOneConfig; - C->readConfig(readAtLeastOneConfig, nequileft, &parentConfigs); + C->readConfig(&readAtLeastOneConfig, &nequileft, &parentConfigs); if ( nequileft < 0 && readAtLeastOneConfig ) activeCFile = fileOfPath(C->getInFileName()); @@ -93,7 +92,7 @@ bool hypercache::readC() { int nequileftReadConfig_ex; memcpy (tmpconfig, C->getConfigMem(), C->getConfigSize()); - C->readConfig(readnewconfig_ex, nequileftReadConfig_ex, NULL); + C->readConfig(&readnewconfig_ex, &nequileftReadConfig_ex, NULL); if (! readnewconfig_ex) { *log << "HYPERCACHE: No more excluded config-files for possible equilibration available." << endl << flush; @@ -118,7 +117,6 @@ bool hypercache::readC() { /* storing most equilibrated config */ if ( nequileft < mostEquilibratedConfig.first && readAtLeastOneConfig ) { - //*log << "HYPERCACHE: Storing a copy of so far most equilibrated config with nequileft = " << nequileft << endl << flush; mostEquilibratedConfig.first = nequileft; memcpy(mostEquilibratedConfig.second, C->getConfigMem(), C->getConfigSize()); } @@ -128,7 +126,6 @@ bool hypercache::readC() { *log << "HYPERCACHE: Injecting back most equilibrated stored config with nequileft = " << mostEquilibratedConfig.first << endl << flush; nequileft = mostEquilibratedConfig.first; memcpy(C->getConfigMem(), mostEquilibratedConfig.second, C->getConfigSize()); - //readAtLeastOneConfig = false; } return readAtLeastOneConfig; @@ -145,23 +142,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& readnewconfig, int& nequileft) { - Os[obsid]->readConfig(readnewconfig, nequileft); +void hypercache::readO(int obsid, bool *readNewObsConfig, int *nequiObsLeft) { + Os[obsid].c->readConfig(readNewObsConfig, nequiObsLeft); - if ( nequileft < 0 ) { - unsigned long *parentconfig = (unsigned long*)Os[obsid]->getHeader("concurrent_cfile"); + if ( *readNewObsConfig && *nequiObsLeft < 0 ) { + unsigned long *parentconfig = (unsigned long*)Os[obsid].c->getHeader("concurrent_cfile"); if ( parentconfig != NULL ) addParentConfig(parentconfig); }