-void hypercache::setPara(const string& parid, const double& val) {
- if (O == NULL || C == NULL) {
- para newpara;
- newpara.parid = parid;
- newpara.val = val;
- delayedParaSet.push_back(newpara);
+string hypercache::fileOfPath(const string& dressedfile) {
+ return dressedfile.substr(dressedfile.find_last_of("\\/")+1);
+}
+
+void hypercache::readC(bool& readnewconfig, int& nequileft) {
+ C->readConfig(readnewconfig, nequileft, &parentConfigs);
+
+ if ( nequileft < 0 )
+ activeCFile = fileOfPath(C->getInFileName());
+ else
+ activeCFile = "";
+}
+
+void hypercache::writeC(int actnequi) {
+ C->writeConfig(actnequi);
+ activeCFile = fileOfPath( C->getOutFileName().substr( 0, C->getOutFileName().length()-4 ) );
+}
+
+void hypercache::writeO(int obsid, int actnequi) {
+ if ( activeCFile != "" ) {
+ unsigned long afilehash = configcache::hash(activeCFile);
+ Os[obsid]->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long), actnequi);