From 2f0439e8b1b64372c710b8dc5d1a098ea949e2ae Mon Sep 17 00:00:00 2001 From: redford_s Date: Wed, 8 Mar 2017 15:55:43 +0100 Subject: [PATCH] Moved DB histo plots onto large storage to avoid filling up the project directory. --- JFMC_DirectBeamScan.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/JFMC_DirectBeamScan.cpp b/JFMC_DirectBeamScan.cpp index 1ff1947..7aecb4f 100644 --- a/JFMC_DirectBeamScan.cpp +++ b/JFMC_DirectBeamScan.cpp @@ -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++) {