Skip to content
Snippets Groups Projects
Commit 814e2931 authored by Peter Berta's avatar Peter Berta
Browse files

Merge branch 'jojungge-22.0-patch-15974' into '22.0'

Cherry pick 55883

See merge request atlas/athena!55921
parents aa898754 6b0feb32
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,8 @@ public:
bool initialized() const;
/// Returns the underlying TTree object
const TTree* tree() const;
TTree* tree();
/// Returns the data dependencies needed by the MuonTesterBranch
std::vector<DataDependency> data_dependencies() override final;
......
......@@ -47,6 +47,7 @@ MuonTesterBranch::MuonTesterBranch(TTree* tree, const std::string& br_name) : m_
std::string MuonTesterBranch::name() const { return m_name; }
bool MuonTesterBranch::initialized() const { return m_init; }
const TTree* MuonTesterBranch::tree() const { return m_tree; }
TTree* MuonTesterBranch::tree() { return m_tree; }
std::string MuonTesterBranch::eraseWhiteSpaces(const std::string& In) {
std::string out = In;
......
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