Skip to content

Commit

Permalink
Make member variables easier to spot via m_ prefix (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener authored Jun 20, 2024
1 parent 1e518b6 commit bde10dc
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 72 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
10 changes: 5 additions & 5 deletions source/include/TrueJet_Parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,10 @@ class TrueJet_Parser {
std::string _recoMCTruthLink{};
int _COUNT_FSR{};
private:
LCEvent* evt{};
double p4[4]{};
double p3[3]{};
IntVec* intvec{};
MCParticleVec* mcpartvec{};
LCEvent* m_evt{};
double m_p4[4]{};
double m_p3[3]{};
IntVec* m_intvec{};
MCParticleVec* m_mcpartvec{};
} ;
#endif
Loading

0 comments on commit bde10dc

Please sign in to comment.