Skip to content

Commit 0f34544

Browse files
authored
Merge branch 'AliceO2Group:master' into branch_skimscreation2
2 parents c930f6c + 4047552 commit 0f34544

3 files changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/mega-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
id: ml
3434
# You can override MegaLinter flavor used to have faster performances
3535
# More info at https://megalinter.github.io/flavors/
36-
uses: megalinter/megalinter@v5
36+
uses: oxsecurity/megalinter@v5
3737
env:
3838
# All available variables are described in documentation
3939
# https://megalinter.github.io/configuration/

DPG/Tasks/qaMatchEff.cxx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,17 @@ struct qaMatchEff {
4040
// Histogram configuration
4141
//
4242
// histo x axes limits
43-
Configurable<float> etaMin{"eta-min", -0.8f, "Lower limit in eta"};
44-
Configurable<float> etaMax{"eta-max", 0.8f, "Upper limit in eta"};
43+
Configurable<float> etaMin{"eta-min", -2.0f, "Lower limit in eta"};
44+
Configurable<float> etaMax{"eta-max", 2.0f, "Upper limit in eta"};
4545
Configurable<float> phiMin{"phi-min", 0.0f, "Lower limit in phi"};
4646
Configurable<float> phiMax{"phi-max", 1.0f * TwoPI, "Upper limit in phi"};
47-
Configurable<float> ptMin{"pt-min", 0.0f, "Lower limit in pT"};
48-
Configurable<float> ptMax{"pt-max", 15.f, "Upper limit in pT"};
4947
// histos bins
50-
Configurable<int> ptBins{"pt-bins", 16, "Number of pT bins"};
51-
Configurable<int> etaBins{"eta-bins", 16, "Number of eta bins"};
48+
Configurable<int> etaBins{"eta-bins", 40, "Number of eta bins"};
5249
Configurable<int> phiBins{"phi-bins", 18, "Number of phi bins"};
5350
// histo axes
5451
//
5552
// non uniform pt binning
56-
std::vector<double> ptBinning = {0.0, 0.5, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0};
53+
std::vector<double> ptBinning = {0.0, 0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0};
5754
AxisSpec axisPt{ptBinning, "#it{p}_{T} (GeV/#it{c})"};
5855
// const AxisSpec axisPt{ptBins, ptMin, ptMax, "#it{p}_{T} (GeV/#it{c})"};
5956
//

PWGLF/Tasks/LFNucleiBATask.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ struct LFNucleiBATask {
7474

7575
// trackQA
7676
histos.add<TH1>("tracks/h1Eta", "pseudoRapidity; #eta; counts", HistType::kTH1F, {{200, -1.0, 1.0}});
77-
histos.add<TH1>("tracks/h1VarPhi", "#phi; #phi; counts", HistType::kTH1F, {{80, -0.5, 7.5}});
78-
histos.add<TH2>("tracks/h2EtaVsPhi", "#eta (TOF) vs #phi; #eta; #phi", HistType::kTH2F, {{200, -1.0, 1.0}, {80, -0.5, 7.5}});
77+
histos.add<TH1>("tracks/h1VarPhi", "#phi; #phi; counts", HistType::kTH1F, {{63, 0.0, 6.3}});
78+
histos.add<TH2>("tracks/h2EtaVsPhi", "#eta vs #phi; #eta; #phi", HistType::kTH2F, {{200, -1.0, 1.0}, {63, 0.0, 6.3}});
7979
histos.add<TH1>("tracks/h1pT", "Track #it{p}_{T}; #it{p}_{T} (GeV/#it{c}); counts", HistType::kTH1F, {{1000, 0., 10}});
8080
histos.add<TH1>("tracks/h1p", "Track momentum; p (GeV/#it{c}); counts", HistType::kTH1F, {{1000, 0., 10.}});
8181

0 commit comments

Comments
 (0)