mirror of
https://github.com/sesps/SPS_SABRE_EventBuilder.git
synced 2024-11-22 10:08:50 -05:00
Fix bug where merged dir was not set
This commit is contained in:
parent
c4557c2b26
commit
4886c497a3
|
@ -58,6 +58,7 @@ namespace EventBuilder {
|
|||
m_analyzedDir = m_workspace + "analyzed/";
|
||||
m_histogramDir = m_workspace + "histograms/";
|
||||
m_cutDir = m_workspace + "cuts/";
|
||||
m_mergedDir = m_workspace + "merged/";
|
||||
|
||||
//Check all subdirectories. Terminate if any of them are bad
|
||||
m_isValid = CheckSubDirectory(m_binaryDir);
|
||||
|
@ -79,6 +80,9 @@ namespace EventBuilder {
|
|||
if(!m_isValid)
|
||||
return;
|
||||
m_isValid = CheckSubDirectory(m_cutDir);
|
||||
if(!m_isValid)
|
||||
return;
|
||||
m_isValid = CheckSubDirectory(m_mergedDir);
|
||||
}
|
||||
|
||||
std::string EVBWorkspace::GetBinaryRun(int run)
|
||||
|
|
Loading…
Reference in New Issue
Block a user