Skip to content

Commit

Permalink
Fixing tau initializations
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Hank committed Feb 22, 2024
1 parent 533c696 commit 1d172d3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions xAODAnaHelpers/TauSelector.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ class TauSelector : public xAH::Algorithm
int m_numObjectPass; //!

// cutflow
TH1D* m_cutflowHist; //!
TH1D* m_cutflowHistW; //!
TH1D* m_cutflowHist = nullptr; //!
TH1D* m_cutflowHistW = nullptr; //!
int m_cutflow_bin; //!

bool m_isUsedBefore; //!
bool m_isUsedBefore = false; //!

// object cutflow
TH1D* m_tau_cutflowHist_1; //!
TH1D* m_tau_cutflowHist_2; //!
TH1D* m_tau_cutflowHist_1 = nullptr; //!
TH1D* m_tau_cutflowHist_2 = nullptr; //!

int m_tau_cutflow_all; //!
int m_tau_cutflow_selected; //!
Expand Down

0 comments on commit 1d172d3

Please sign in to comment.