Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion PWGHF/Utils/utilsEvSelHf.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,14 @@
o2::framework::ConfigurableAxis th2ConfigAxisOccupancy{"th2ConfigAxisOccupancy", {14, 0, 140000}, ""};

// histogram names
static constexpr char nameHistCollisions[] = "hCollisions";

Check warning on line 160 in PWGHF/Utils/utilsEvSelHf.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".
static constexpr char nameHistSelCollisionsCent[] = "hSelCollisionsCent";

Check warning on line 161 in PWGHF/Utils/utilsEvSelHf.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".
static constexpr char nameHistPosZBeforeEvSel[] = "hPosZBeforeEvSel";

Check warning on line 162 in PWGHF/Utils/utilsEvSelHf.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".
static constexpr char nameHistPosZAfterEvSel[] = "hPosZAfterEvSel";

Check warning on line 163 in PWGHF/Utils/utilsEvSelHf.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".
static constexpr char nameHistPosXAfterEvSel[] = "hPosXAfterEvSel";

Check warning on line 164 in PWGHF/Utils/utilsEvSelHf.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".
static constexpr char nameHistPosYAfterEvSel[] = "hPosYAfterEvSel";

Check warning on line 165 in PWGHF/Utils/utilsEvSelHf.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".
static constexpr char nameHistNumPvContributorsAfterSel[] = "hNumPvContributorsAfterSel";

Check warning on line 166 in PWGHF/Utils/utilsEvSelHf.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".
static constexpr char nameHistCollisionsCentOcc[] = "hCollisionsCentOcc";

Check warning on line 167 in PWGHF/Utils/utilsEvSelHf.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".

std::shared_ptr<TH1> hCollisions, hSelCollisionsCent, hPosZBeforeEvSel, hPosZAfterEvSel, hPosXAfterEvSel, hPosYAfterEvSel, hNumPvContributorsAfterSel;
std::shared_ptr<TH2> hCollisionsCentOcc;
Expand Down Expand Up @@ -343,9 +343,9 @@
float centralityMax{100.f}; // Maximum centrality

// histogram names
static constexpr char nameHistGenCollisionsCent[] = "hGenCollisionsCent";

Check warning on line 346 in PWGHF/Utils/utilsEvSelHf.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".
std::shared_ptr<TH1> hGenCollisionsCent;
static constexpr char nameHistRecCollisionsCentMc[] = "hRecCollisionsCentMc";

Check warning on line 348 in PWGHF/Utils/utilsEvSelHf.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".
std::shared_ptr<TH1> hRecCollisionsCentMc;
static constexpr char nameHistNSplitVertices[] = "hNSplitVertices";
std::shared_ptr<TH1> hNSplitVertices;
Expand Down Expand Up @@ -457,7 +457,6 @@
hRecCollisionsCentMc->Fill(mcCollision.centFT0M());
}
}

}
};
} // namespace o2::hf_evsel
Expand Down
Loading