Skip to content

Commit

Permalink
Fixing tau initializations (#1680)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Hank <mhank@login02.af.uchicago.edu>
  • Loading branch information
mdhank and Michael Hank committed Feb 23, 2024
1 parent 3ea6bae commit 9448e70
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 9448e70

Please sign in to comment.