Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[TDF] Remove now unused TDataFrameImpl::GetTmpBranchValue
  • Loading branch information
eguiraud committed Mar 19, 2017
commit f8d1fbb2fc6600fd224ad7ab03efdb7a512ca35d
1 change: 0 additions & 1 deletion tree/treeplayer/inc/ROOT/TDFNodes.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ public:
TTree * GetTree() const;
TDataFrameBranchBase *GetBookedBranch(const std::string &name) const;
const std::map<std::string, TmpBranchBasePtr_t> &GetBookedBranches() const { return fBookedBranches; }
void *GetTmpBranchValue(const std::string &branch, unsigned int slot);
::TDirectory *GetDirectory() const;
std::string GetTreeName() const;
void Book(const ActionBasePtr_t &actionPtr);
Expand Down
5 changes: 0 additions & 5 deletions tree/treeplayer/src/TDFNodes.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,6 @@ TDataFrameBranchBase *TDataFrameImpl::GetBookedBranch(const std::string &name) c
return it == fBookedBranches.end() ? nullptr : it->second.get();
}

void *TDataFrameImpl::GetTmpBranchValue(const std::string &branch, unsigned int slot)
{
return fBookedBranches.at(branch)->GetValuePtr(slot);
}

TDirectory *TDataFrameImpl::GetDirectory() const
{
return fDirPtr;
Expand Down