Moved DB histo plots onto large storage to avoid filling up the project directory.

This commit is contained in:
redford_s
2017-03-08 15:55:43 +01:00
parent f174f22d47
commit 2f0439e8b1
+2 -3
View File
@@ -291,7 +291,7 @@ int main(int argc, char* argv[]) {
// save histograms
sprintf(savename,"data/M%s/DB_histos_M%s.root", module_str.c_str(), module_str.c_str());
sprintf(savename,"/mnt/pcmoench_jungfrau_data/jungfrau_ana_sophie/M%s_CalibAna/DB_histos_M%s.root", module_str.c_str(), module_str.c_str());
TFile* saved_file = new TFile((const char *)(savename),"RECREATE");
for (int i = 0; i < npoints; i++) {
@@ -304,8 +304,7 @@ int main(int argc, char* argv[]) {
} else {
// load histos
cout << "LOADING HISTOS" << endl;
sprintf(savename,"data/M%s/DB_histos_M%s.root", module_str.c_str(), module_str.c_str());
sprintf(savename,"/mnt/pcmoench_jungfrau_data/jungfrau_ana_sophie/M%s_CalibAna/DB_histos_M%s.root", module_str.c_str(), module_str.c_str());
TFile* saved_file = new TFile((const char *)(savename),"READ");
for (int i = 0; i < npoints; i++) {