Skip to content
Snippets Groups Projects
Commit 0eaddea8 authored by deserevi's avatar deserevi
Browse files

* Add comment symbol (%) support when reading input file in NPA

   - changes made in RootInput.cxx file
parent b13c2104
No related branches found
No related tags found
No related merge requests found
TTreeName TTreeName
SimulatedTree SimulatedTree
RootFileName RootFileName
../../Outputs/Simulation/mySimul_test.root
% ../../Outputs/Simulation/mySimul.root
../../Outputs/Simulation/mySimul.root ../../Outputs/Simulation/mySimul.root
...@@ -89,7 +89,12 @@ RootInput::RootInput(string configFileName) ...@@ -89,7 +89,12 @@ RootInput::RootInput(string configFileName)
while (!inputConfigFile.eof()) { while (!inputConfigFile.eof()) {
inputConfigFile >> dataBuffer; inputConfigFile >> dataBuffer;
if (!inputConfigFile.eof()) { // ignore comment Line
if (dataBuffer.compare(0, 1, "%") == 0) {
inputConfigFile.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
}
else if (!inputConfigFile.eof()) {
pRootChain->Add(dataBuffer.c_str()); pRootChain->Add(dataBuffer.c_str());
cout << "Adding file " << dataBuffer << " to TChain" << endl; cout << "Adding file " << dataBuffer << " to TChain" << endl;
} }
......
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