Skip to content

Commit 98d51ce

Browse files
committed
Please consider the following formatting changes
1 parent 7badc90 commit 98d51ce

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

PWGCF/Femto3D/Tasks/femto3dPairTask.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ struct FemtoCorrelations {
5555
Configurable<bool> _requestVertexITSTPC{"requestVertexITSTPC", false, ""};
5656
Configurable<int> _requestVertexTOForTRDmatched{"requestVertexTOFmatched", 0, "0 -> no selectio; 1 -> vertex is matched to TOF or TRD; 2 -> matched to both;"};
5757
Configurable<bool> _requestNoCollInTimeRangeStandard{"requestNoCollInTimeRangeStandard", false, ""};
58-
Configurable<bool>_requestIsGoodITSLayersAll{"requestIsGoodITSLayersAll", false, "cut time intervals with dead ITS staves"};
58+
Configurable<bool> _requestIsGoodITSLayersAll{"requestIsGoodITSLayersAll", false, "cut time intervals with dead ITS staves"};
5959
Configurable<std::pair<float, float>> _IRcut{"IRcut", std::pair<float, float>{0.f, 100.f}, "[min., max.] IR range to keep events within"};
6060
Configurable<std::pair<int, int>> _OccupancyCut{"OccupancyCut", std::pair<int, int>{0, 10000}, "[min., max.] occupancy range to keep events within"};
6161

PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ struct FemtoCorrelationsMC {
5151
Configurable<bool> _requestVertexITSTPC{"requestVertexITSTPC", false, ""};
5252
Configurable<int> _requestVertexTOForTRDmatched{"requestVertexTOFmatched", 0, "0 -> no selectio; 1 -> vertex is matched to TOF or TRD; 2 -> matched to both;"};
5353
Configurable<bool> _requestNoCollInTimeRangeStandard{"requestNoCollInTimeRangeStandard", false, ""};
54-
Configurable<bool>_requestIsGoodITSLayersAll{"requestIsGoodITSLayersAll", false, "cut time intervals with dead ITS staves"};
54+
Configurable<bool> _requestIsGoodITSLayersAll{"requestIsGoodITSLayersAll", false, "cut time intervals with dead ITS staves"};
5555
Configurable<std::pair<float, float>> _IRcut{"IRcut", std::pair<float, float>{0.f, 100.f}, "[min., max.] IR range to keep events within"};
5656
Configurable<std::pair<int, int>> _OccupancyCut{"OccupancyCut", std::pair<int, int>{0, 10000}, "[min., max.] occupancy range to keep events within"};
5757

@@ -417,7 +417,7 @@ struct FemtoCorrelationsMC {
417417
continue;
418418
if (_requestIsGoodITSLayersAll && !collision.isGoodITSLayersAll())
419419
continue;
420-
420+
421421
if (selectedtracks_1.find(collision.globalIndex()) == selectedtracks_1.end()) {
422422
if (IsIdentical)
423423
continue;

PWGCF/Femto3D/Tasks/femto3dQA.cxx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ struct QAHistograms {
5252
Configurable<bool> _requestVertexITSTPC{"requestVertexITSTPC", false, ""};
5353
Configurable<int> _requestVertexTOForTRDmatched{"requestVertexTOFmatched", 0, "0 -> no selectio; 1 -> vertex is matched to TOF or TRD; 2 -> matched to both;"};
5454
Configurable<bool> _requestNoCollInTimeRangeStandard{"requestNoCollInTimeRangeStandard", false, ""};
55-
Configurable<bool>_requestIsGoodITSLayersAll{"requestIsGoodITSLayersAll", false, "cut time intervals with dead ITS staves"};
55+
Configurable<bool> _requestIsGoodITSLayersAll{"requestIsGoodITSLayersAll", false, "cut time intervals with dead ITS staves"};
5656
Configurable<std::pair<float, float>> _IRcut{"IRcut", std::pair<float, float>{0.f, 100.f}, "[min., max.] IR range to keep events within"};
5757
Configurable<std::pair<int, int>> _OccupancyCut{"OccupancyCut", std::pair<int, int>{0, 10000}, "[min., max.] occupancy range to keep events within"};
5858

@@ -250,9 +250,12 @@ struct QAHistograms {
250250
registry.fill(HIST("ITSchi2"), track.itsChi2NCl());
251251
registry.fill(HIST("TPCchi2"), track.tpcChi2NCl());
252252

253-
if (ITShisto) ITShisto->Fill(track.p(), o2::aod::singletrackselector::getITSNsigma(track, _particlePDG));
254-
if (TPChisto) TPChisto->Fill(track.p(), o2::aod::singletrackselector::getTPCNsigma(track, _particlePDG));
255-
if (TOFhisto) TOFhisto->Fill(track.p(), o2::aod::singletrackselector::getTOFNsigma(track, _particlePDG));
253+
if (ITShisto)
254+
ITShisto->Fill(track.p(), o2::aod::singletrackselector::getITSNsigma(track, _particlePDG));
255+
if (TPChisto)
256+
TPChisto->Fill(track.p(), o2::aod::singletrackselector::getTPCNsigma(track, _particlePDG));
257+
if (TOFhisto)
258+
TOFhisto->Fill(track.p(), o2::aod::singletrackselector::getTOFNsigma(track, _particlePDG));
256259

257260
if constexpr (FillExtra) {
258261
registry.fill(HIST("TPCSignal"), track.tpcInnerParam(), track.tpcSignal());

0 commit comments

Comments
 (0)