From 55f693546ffe3d583375a5768ccc04b86b92e8f3 Mon Sep 17 00:00:00 2001 From: adrien-matta <a.matta@surrey.ac.uk> Date: Sat, 13 Jun 2015 11:39:11 +0100 Subject: [PATCH] * Adding online option to NPOnline --- NPLib/Core/NPOptionManager.cxx | 7 ++++++- NPLib/Core/NPOptionManager.h | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/NPLib/Core/NPOptionManager.cxx b/NPLib/Core/NPOptionManager.cxx index 1b41946d4..cfdd9b14c 100644 --- a/NPLib/Core/NPOptionManager.cxx +++ b/NPLib/Core/NPOptionManager.cxx @@ -65,6 +65,7 @@ void NPOptionManager::ReadTheInputArgument(int argc, char** argv){ fInputPhysicalTreeOption = false; fGenerateHistoOption = false ; fPROOFMode = false; + fOnline = false; for (int i = 0; i < argc; i++) { string argument = argv[i]; @@ -121,6 +122,9 @@ void NPOptionManager::ReadTheInputArgument(int argc, char** argv){ else if (argument == "--last-res") fLastResFile = true ; else if (argument == "--last-any") fLastAnyFile = true ; + + else if (argument == "--online") {fOnline = true ;fGenerateHistoOption=true;} + //else ; } @@ -281,7 +285,7 @@ void NPOptionManager::SendErrorAndExit(const char* type) const{ else if (stype == "DetectorConfiguration") { cout << endl; cout << "*********************************** Error ***********************************" << endl; - cout << "* No detector geometry file found in $NPTool/Inputs/EventGenerator or local directories *" << endl; + cout << "* No detector geometry file found in $NPTool/Inputs/DetectorConfiguration or local directories *" << endl; cout << "*****************************************************************************************" << endl; cout << endl; exit(1); @@ -319,6 +323,7 @@ void NPOptionManager::DisplayHelp(){ cout << "\t --last-phy\t \t \t \tIgnore the list of Run to treat if any and analysed the last Physics file" << endl ; cout << "\t --last-res\t \t \t \tIgnore the list of Run to treat if any and analysed the last Result file" << endl ; cout << "\t --last-any\t \t \t \tIgnore the list of Run to treat if any and analysed the last root file with a non standard Tree name" << endl ; + cout << "\t --online \t \t \t \tStart the spectra server" << endl ; cout << endl << endl ; // exit current program diff --git a/NPLib/Core/NPOptionManager.h b/NPLib/Core/NPOptionManager.h index 599fae3e2..dea38d73b 100644 --- a/NPLib/Core/NPOptionManager.h +++ b/NPLib/Core/NPOptionManager.h @@ -95,6 +95,7 @@ class NPOptionManager{ bool GetInputPhysicalTreeOption() {return fInputPhysicalTreeOption;} bool GetGenerateHistoOption() {return fGenerateHistoOption;} bool GetCheckHistoOption() {return fCheckHistoOption;} + bool GetOnline() {return fOnline;} bool GetPROOF() {return fPROOFMode;} int GetVerboseLevel() {return fVerboseLevel;} int GetNumberOfEntryToAnalyse() {return fNumberOfEntryToAnalyse;} @@ -125,6 +126,7 @@ class NPOptionManager{ bool fInputPhysicalTreeOption; bool fGenerateHistoOption; bool fCheckHistoOption; + bool fOnline; // true if spectra server is started bool fPROOFMode; // if true, the system run in a pROOF environment bool fLastSimFile; bool fLastPhyFile; -- GitLab