X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/fbbe6f07bc8720030541b7319acb02c9233cd622..31dc8788f9711670917daaa5cc544d0d87ec3afc:/hypercache.cpp diff --git a/hypercache.cpp b/hypercache.cpp index 8fcc609..7e0f0e5 100644 --- a/hypercache.cpp +++ b/hypercache.cpp @@ -1,10 +1,11 @@ #include "hypercache.h" -hypercache::defaults *hypercache::Defaults = NULL; configcache *hypercache::O = NULL; configcache *hypercache::C = NULL; +vector hypercache::delayedParaAdd; +vector hypercache::delayedParaSet; -void hypercache::initCache(configcache *cache, +void hypercache::initCache(configcache **cache, const string& cacheid, const int& nequi, const int& nskip, const string& datadir, char **configmem, const int& configMemSize, const int& cachemode, writeout *out_a) { @@ -13,15 +14,7 @@ void hypercache::initCache(configcache *cache, if (O == NULL || C == NULL) allInitBefore = false; - cache = new configcache(cacheid, nequi, nskip, datadir, configmem, configMemSize, cachemode, out_a); - - if (Defaults == NULL) { - Defaults = new defaults; - Defaults->nequi = nequi; - Defaults->nskip = nskip; - Defaults->datadir = datadir; - Defaults->out = out_a; - } + *cache = new configcache(cacheid, nequi, nskip, datadir, configmem, configMemSize, cachemode, out_a); if (O != NULL && C != NULL && !allInitBefore) { for (vector::iterator parit=delayedParaAdd.begin(); parit != delayedParaAdd.end(); ++parit) { @@ -35,17 +28,6 @@ void hypercache::initCache(configcache *cache, } } -void hypercache::initCache(configcache *cache, const string& subdir, - const string& cacheid, char **configmem, const int& configMemSize, const int& cachemode) { - if (Defaults == NULL) { - cerr << "Defaults were not initialized prior to short initialization!" << endl; - exit(1); - } - - initCache(cache, cacheid, Defaults->nequi, Defaults->nskip, Defaults->datadir + "/" + subdir, - configmem, configMemSize, cachemode, Defaults->out); -} - void hypercache::addPara(const string& parid, const double& val) { if (O == NULL || C == NULL) { para newpara; @@ -71,3 +53,8 @@ void hypercache::setPara(const string& parid, const double& val) { C->setPara(parid, val); } } + +void hypercache::finalize() { + delete C; + delete O; +}