Skip to content

Commit

Permalink
Specify separator explicitly. For some strings/collumns detection cod…
Browse files Browse the repository at this point in the history
…e is confused
  • Loading branch information
miranov25 committed Jan 18, 2017
1 parent a07d6f3 commit a7a0b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion STEER/STEERBase/AliSysInfo.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ void AliSysInfo::AddStamp(const char *sname, Int_t id0, Int_t id1, Int_t id2, In
TTree * AliSysInfo::MakeTree(const char *lname, const char * fout){
// char * lname = "syswatch.log"
TTree * tree = new TTree;
tree->ReadFile(lname);
tree->ReadFile(lname,"",'\t');
tree->SetAlias("deltaT","stampSec-stampOldSec");
tree->SetAlias("T","stampSec-first");
tree->SetAlias("deltaVM","(pI.fMemVirtual-pIOld.fMemVirtual)");
Expand Down

0 comments on commit a7a0b1e

Please sign in to comment.