Skip to content

Commit d37b5a3

Browse files
authored
new PIC cuts added
1 parent 5e95252 commit d37b5a3

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed

PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2-
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3-
// All rights not expressly granted are reserved.
2+
// See https://alice-o2.web.cern.ch/copyright for details of the copyright
3+
// holders. All rights not expressly granted are reserved.
44
//
55
// This software is distributed under the terms of the GNU General Public
66
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
@@ -11,24 +11,24 @@
1111

1212
/// \file nchCumulantsId.cxx
1313
/// \brief Event by Event conserved charges fluctuations
14-
/// it is meant to be a blank page for further developments.
15-
/// \author Pravata Panigrahi <pravata.panigrahi@cern.ch>:: Sadhana Dash (sadhana@phy.iitb.ac.in) and Rahul Verma (rahul.verma@iitb.ac.in)
14+
/// \author Pravata Panigrahi <pravata.panigrahi@cern.ch> :: Sadhana Dash(sadhana@phy.iitb.ac.in)
15+
1616
#include <algorithm>
1717
#include <vector>
1818

19-
#include "Framework/runDataProcessing.h"
20-
#include "Framework/AnalysisTask.h"
21-
#include "Framework/AnalysisDataModel.h"
2219
#include "Framework/ASoAHelpers.h"
20+
#include "Framework/AnalysisDataModel.h"
21+
#include "Framework/AnalysisTask.h"
2322
#include "Framework/HistogramRegistry.h"
2423
#include "Framework/HistogramSpec.h"
2524
#include "Framework/O2DatabasePDGPlugin.h"
25+
#include "Framework/runDataProcessing.h"
2626

27-
#include "Common/DataModel/TrackSelectionTables.h"
27+
#include "Common/DataModel/Centrality.h"
2828
#include "Common/DataModel/EventSelection.h"
29-
#include "Common/DataModel/PIDResponse.h"
3029
#include "Common/DataModel/Multiplicity.h"
31-
#include "Common/DataModel/Centrality.h"
30+
#include "Common/DataModel/PIDResponse.h"
31+
#include "Common/DataModel/TrackSelectionTables.h"
3232

3333
using namespace o2;
3434
using namespace o2::framework;
@@ -47,8 +47,6 @@ struct NchCumulantsId {
4747
Configurable<float> cfgCutDcaXY{"cfgCutDcaXY", 0.12, "cut for dcaXY"};
4848
Configurable<float> cfgCutDcaZ{"cfgCutDcaZ", 0.3, "cut for dcaZ"};
4949
Configurable<float> cfgCutEta{"cfgCutEta", 0.8, "cut for eta"};
50-
Configurable<float> cfgCutPtMax{"cfgCutPtMax", 3.0, "max cut for pT"};
51-
Configurable<float> cfgCutPtMin{"cfgCutPtMin", 0.15, "min cut for pT"};
5250

5351
// Configurables for particle Identification
5452
Configurable<bool> cfgId01CheckVetoCut{"cfgId01CheckVetoCut", false, "cfgId01CheckVetoCut"};
@@ -655,7 +653,7 @@ struct NchCumulantsId {
655653
Filter col = aod::evsel::sel8 == true;
656654
Filter colFilter = nabs(aod::collision::posZ) < cfgCutPosZ;
657655
Filter trackFilter = requireGlobalTrackInFilter();
658-
Filter trackPt = (aod::track::pt > cfgCutPtMin) && (aod::track::pt < cfgCutPtMax);
656+
Filter trackPt = (aod::track::pt > 0.15f) && (aod::track::pt < 2.0f);
659657
Filter trackDCAxy = nabs(aod::track::dcaXY) < cfgCutDcaXY;
660658
Filter trackDCAz = nabs(aod::track::dcaZ) < cfgCutDcaZ;
661659
Filter tracketa = nabs(aod::track::eta) < cfgCutEta;
@@ -749,9 +747,9 @@ struct NchCumulantsId {
749747
hist.fill(HIST("sparse1"), nCh, nP, nM, nPr, nAPr, nKa, nAKa, nT, col.centFT0M());
750748
hist.fill(HIST("sparse2"), nCh, nP, nM, nPi, nAPi, nKa, nAKa, nT, col.centFT0M());
751749

752-
}//collision ends
753-
}//process ends
754-
};//structure ends
750+
} // collision ends
751+
} // process ends
752+
}; // structure ends
755753

756754
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
757755
{

0 commit comments

Comments
 (0)