Skip to content
Snippets Groups Projects
Commit 2d12ff46 authored by Riccardo Longo's avatar Riccardo Longo
Browse files

Debug variable established for DataReader

parent 5a43fb43
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,7 @@ class DataReader{ ...@@ -45,6 +45,7 @@ class DataReader{
void LoadAlignmentFile(std::string _inFile = std::getenv("JZCaPA") + std::string("/Utils/Alignment_2018.xml")); void LoadAlignmentFile(std::string _inFile = std::getenv("JZCaPA") + std::string("/Utils/Alignment_2018.xml"));
void LoadConfigurationFile(std::string _inFile = std::getenv("JZCaPA") + std::string("/Utils/ConfigFile2018.xml")); void LoadConfigurationFile(std::string _inFile = std::getenv("JZCaPA") + std::string("/Utils/ConfigFile2018.xml"));
void SetDebugMode() { m_debug = true; }
Detector* GetDetector( std::string _detName ); Detector* GetDetector( std::string _detName );
...@@ -90,6 +91,9 @@ class DataReader{ ...@@ -90,6 +91,9 @@ class DataReader{
//XML parser //XML parser
XMLSettingsReader *m_XMLparser; XMLSettingsReader *m_XMLparser;
//DebugVariable
bool m_debug = false;
}; };
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment