Skip to content

Commit

Permalink
Fix header guards
Browse files Browse the repository at this point in the history
  • Loading branch information
vkucera committed Nov 15, 2023
1 parent 86b206f commit 95d847d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions exec/utilitiesAli.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

// AliPhysics utilities

#ifndef EXEC_UTILS_ALI_H_
#define EXEC_UTILS_ALI_H_
#ifndef EXEC_UTILITIES_ALI_H_
#define EXEC_UTILITIES_ALI_H_

TChain* CreateLocalChain(const char* txtfile, const char* type = "esd", int nfiles = -1)
{
Expand Down Expand Up @@ -50,4 +50,4 @@ TChain* CreateLocalChain(const char* txtfile, const char* type = "esd", int nfil
return chain;
}

#endif // EXEC_UTILS_ALI_H_
#endif // EXEC_UTILITIES_ALI_H_
6 changes: 3 additions & 3 deletions exec/utilitiesPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

// Plotting utilities

#ifndef EXEC_UTILS_PLOT_H_
#define EXEC_UTILS_PLOT_H_
#ifndef EXEC_UTILITIES_PLOT_H_
#define EXEC_UTILITIES_PLOT_H_

void SetCanvas(TCanvas* can, int nPadsX, int nPadsY)
{
Expand Down Expand Up @@ -58,4 +58,4 @@ void SetHistogramStyle(TH1* his, Int_t colour = 1, Int_t markerStyle = 1, Float_
his->SetMarkerSize(markerSize);
}

#endif // EXEC_UTILS_PLOT_H_
#endif // EXEC_UTILITIES_PLOT_H_
6 changes: 3 additions & 3 deletions exec/utilitiesValidation.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

// Validation utilities

#ifndef EXEC_UTILS_VALIDATION_H_
#define EXEC_UTILS_VALIDATION_H_
#ifndef EXEC_UTILITIES_VALIDATION_H_
#define EXEC_UTILITIES_VALIDATION_H_

#include <tuple>
#include <vector>
Expand Down Expand Up @@ -197,4 +197,4 @@ Int_t MakePlots(const VecSpecVecSpec& vecSpecVecSpec,
return 0;
}

#endif // EXEC_UTILS_VALIDATION_H_
#endif // EXEC_UTILITIES_VALIDATION_H_

0 comments on commit 95d847d

Please sign in to comment.