-
Notifications
You must be signed in to change notification settings - Fork 613
[PWGCF] add PID selection #13481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[PWGCF] add PID selection #13481
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,6 +29,7 @@ | |
| #include "Common/DataModel/FT0Corrected.h" | ||
| #include "Common/DataModel/Multiplicity.h" | ||
| #include "Common/DataModel/PIDResponse.h" | ||
| #include "Common/DataModel/PIDResponseITS.h" | ||
| #include "Common/DataModel/TrackSelectionTables.h" | ||
|
|
||
| #include "CommonConstants/MathConstants.h" | ||
|
|
@@ -44,6 +45,8 @@ | |
| #include "Framework/RunningWorkflowInfo.h" | ||
| #include "Framework/StepTHn.h" | ||
| #include "Framework/runDataProcessing.h" | ||
| #include "ReconstructionDataFormats/PID.h" | ||
| #include "ReconstructionDataFormats/Track.h" | ||
| #include <CCDB/BasicCCDBManager.h> | ||
|
|
||
| #include "TF1.h" | ||
|
|
@@ -59,9 +62,12 @@ using namespace o2::framework::expressions; | |
|
|
||
| // define the filtered collisions and tracks | ||
| #define O2_DEFINE_CONFIGURABLE(NAME, TYPE, DEFAULT, HELP) Configurable<TYPE> NAME{#NAME, DEFAULT, HELP}; | ||
| // template for labelled array | ||
| static constexpr float LongArrayFloat[3][20] = {{1.1, 1.2, 1.3, -1.1, -1.2, -1.3, 1.1, 1.2, 1.3, -1.1, -1.2, -1.3, 1.1, 1.2, 1.3, -1.1, -1.2, -1.3, 1.1, 1.2}, {2.1, 2.2, 2.3, -2.1, -2.2, -2.3, 1.1, 1.2, 1.3, -1.1, -1.2, -1.3, 1.1, 1.2, 1.3, -1.1, -1.2, -1.3, 1.1, 1.2}, {3.1, 3.2, 3.3, -3.1, -3.2, -3.3, 1.1, 1.2, 1.3, -1.1, -1.2, -1.3, 1.1, 1.2, 1.3, -1.1, -1.2, -1.3, 1.1, 1.2}}; | ||
|
|
||
| struct LongRangeDihadronCor { | ||
| Service<ccdb::BasicCCDBManager> ccdb; | ||
| o2::aod::ITSResponse itsResponse; | ||
|
|
||
| O2_DEFINE_CONFIGURABLE(cfgCutVtxZ, float, 10.0f, "Accepted z-vertex range") | ||
| O2_DEFINE_CONFIGURABLE(cfgCutPtMin, float, 0.2f, "minimum accepted track pT") | ||
|
|
@@ -130,6 +136,12 @@ struct LongRangeDihadronCor { | |
| TF1* fT0AV0AMean = nullptr; | ||
| TF1* fT0AV0ASigma = nullptr; | ||
| } cfgFuncParas; | ||
| struct : ConfigurableGroup { | ||
| O2_DEFINE_CONFIGURABLE(cfgUseItsPID, bool, true, "Use ITS PID for particle identification") | ||
| O2_DEFINE_CONFIGURABLE(cfgPIDParticle, int, 0, "1 = pion, 2 = kaon, 3 = proton, 4 = kshort, 5 = lambda, 6 = phi, 0 for no PID") | ||
| O2_DEFINE_CONFIGURABLE(cfgTofPtCut, float, 0.5f, "Minimum pt to use TOF N-sigma") | ||
| Configurable<LabeledArray<float>> nSigmas{"nSigmas", {LongArrayFloat[0], 3, 6, {"TPC", "TOF", "ITS"}, {"pos_pi", "pos_ka", "pos_pr", "neg_pi", "neg_ka", "neg_pr"}}, "Labeled array for n-sigma values for TPC, TOF, ITS for pions, kaons, protons (positive and negative)"}; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a bit misleading, |
||
| } cfgPIDConfig; | ||
|
|
||
| SliceCache cache; | ||
|
|
||
|
|
@@ -161,7 +173,7 @@ struct LongRangeDihadronCor { | |
| Filter collisionFilter = (nabs(aod::collision::posZ) < cfgCutVtxZ); | ||
| Filter trackFilter = (nabs(aod::track::eta) < cfgCutEta) && (aod::track::pt > cfgCutPtMin) && (aod::track::pt < cfgCutPtMax) && ((requireGlobalTrackInFilter()) || (aod::track::isGlobalTrackSDD == static_cast<uint8_t>(true))) && (aod::track::tpcChi2NCl < cfgCutChi2prTPCcls) && (nabs(aod::track::dcaZ) < cfgCutDCAz); | ||
| using FilteredCollisions = soa::Filtered<soa::Join<aod::Collisions, aod::EvSel, aod::CentFT0Cs, aod::CentFT0CVariant1s, aod::CentFT0Ms, aod::CentFV0As, aod::Mults>>; | ||
| using FilteredTracks = soa::Filtered<soa::Join<aod::Tracks, aod::TrackSelection, aod::TracksExtra, aod::TracksDCA>>; | ||
| using FilteredTracks = soa::Filtered<soa::Join<aod::Tracks, aod::TrackSelection, aod::TracksExtra, aod::TracksDCA, aod::pidTPCFullPi, aod::pidTPCFullKa, aod::pidTPCFullPr, aod::pidTOFbeta, aod::pidTOFFullPi, aod::pidTOFFullKa, aod::pidTOFFullPr>>; | ||
|
|
||
| // FT0 geometry | ||
| o2::ft0::Geometry ft0Det; | ||
|
|
@@ -201,6 +213,31 @@ struct LongRangeDihadronCor { | |
| kFT0A = 0, | ||
| kFT0C = 1 | ||
| }; | ||
| enum ParticleNsigma { | ||
| kPionUp = 0, | ||
| kKaonUp, | ||
| kProtonUp, | ||
| kPionLow, | ||
| kKaonLow, | ||
| kProtonLow | ||
| }; | ||
| enum PIDIndex { | ||
| kCharged = 0, | ||
| kPions, | ||
| kKaons, | ||
| kProtons, | ||
| kK0, | ||
| kLambda, | ||
| kPhi | ||
| }; | ||
| enum DetectorType { | ||
| kTPC = 0, | ||
| kTOF, | ||
| kITS | ||
| }; | ||
| std::array<float, 6> tofNsigmaCut; | ||
| std::array<float, 6> itsNsigmaCut; | ||
| std::array<float, 6> tpcNsigmaCut; | ||
|
|
||
| void init(InitContext&) | ||
| { | ||
|
|
@@ -218,6 +255,28 @@ struct LongRangeDihadronCor { | |
|
|
||
| LOGF(info, "Starting init"); | ||
|
|
||
| // filling tpc nSigmas array | ||
| tpcNsigmaCut[kPionUp] = cfgPIDConfig.nSigmas->getData()[kTPC][kPionUp]; | ||
| tpcNsigmaCut[kKaonUp] = cfgPIDConfig.nSigmas->getData()[kTPC][kKaonUp]; | ||
| tpcNsigmaCut[kProtonUp] = cfgPIDConfig.nSigmas->getData()[kTPC][kProtonUp]; | ||
| tpcNsigmaCut[kPionLow] = cfgPIDConfig.nSigmas->getData()[kTPC][kPionLow]; | ||
| tpcNsigmaCut[kKaonLow] = cfgPIDConfig.nSigmas->getData()[kTPC][kKaonLow]; | ||
| tpcNsigmaCut[kProtonLow] = cfgPIDConfig.nSigmas->getData()[kTPC][kProtonLow]; | ||
| // filling tof nSigmas array | ||
| tofNsigmaCut[kPionUp] = cfgPIDConfig.nSigmas->getData()[kTOF][kPionUp]; | ||
| tofNsigmaCut[kKaonUp] = cfgPIDConfig.nSigmas->getData()[kTOF][kKaonUp]; | ||
| tofNsigmaCut[kProtonUp] = cfgPIDConfig.nSigmas->getData()[kTOF][kProtonUp]; | ||
| tofNsigmaCut[kPionLow] = cfgPIDConfig.nSigmas->getData()[kTOF][kPionLow]; | ||
| tofNsigmaCut[kKaonLow] = cfgPIDConfig.nSigmas->getData()[kTOF][kKaonLow]; | ||
| tofNsigmaCut[kProtonLow] = cfgPIDConfig.nSigmas->getData()[kTOF][kProtonLow]; | ||
| // filling its nSigmas array | ||
| itsNsigmaCut[kPionUp] = cfgPIDConfig.nSigmas->getData()[kITS][kPionUp]; | ||
| itsNsigmaCut[kKaonUp] = cfgPIDConfig.nSigmas->getData()[kITS][kKaonUp]; | ||
| itsNsigmaCut[kProtonUp] = cfgPIDConfig.nSigmas->getData()[kITS][kProtonUp]; | ||
| itsNsigmaCut[kPionLow] = cfgPIDConfig.nSigmas->getData()[kITS][kPionLow]; | ||
| itsNsigmaCut[kKaonLow] = cfgPIDConfig.nSigmas->getData()[kITS][kKaonLow]; | ||
| itsNsigmaCut[kProtonLow] = cfgPIDConfig.nSigmas->getData()[kITS][kProtonLow]; | ||
|
|
||
| // Event Counter | ||
| if ((doprocessSameTpcFt0a || doprocessSameTpcFt0c || doprocessSameFt0aFt0c) && cfgUseAdditionalEventCut) { | ||
| registry.add("hEventCountSpecific", "Number of Event;; Count", {HistType::kTH1D, {{12, 0, 12}}}); | ||
|
|
@@ -410,6 +469,58 @@ struct LongRangeDihadronCor { | |
| return ((track.tpcNClsFound() >= cfgCutTPCclu) && (track.tpcNClsCrossedRows() >= cfgCutTPCCrossedRows) && (track.itsNCls() >= cfgCutITSclu)); | ||
| } | ||
|
|
||
| template <typename TTrack> | ||
| int getNsigmaPID(TTrack track) | ||
| { | ||
| // Computing Nsigma arrays for pion, kaon, and protons | ||
| std::array<float, 3> nSigmaTPC = {track.tpcNSigmaPi(), track.tpcNSigmaKa(), track.tpcNSigmaPr()}; | ||
| std::array<float, 3> nSigmaTOF = {track.tofNSigmaPi(), track.tofNSigmaKa(), track.tofNSigmaPr()}; | ||
| std::array<float, 3> nSigmaITS = {itsResponse.nSigmaITS<o2::track::PID::Pion>(track), itsResponse.nSigmaITS<o2::track::PID::Kaon>(track), itsResponse.nSigmaITS<o2::track::PID::Proton>(track)}; | ||
| int pid = -1; // -1 = not identified, 1 = pion, 2 = kaon, 3 = proton | ||
|
|
||
| std::array<float, 3> nSigmaToUse = cfgPIDConfig.cfgUseItsPID ? nSigmaITS : nSigmaTPC; // Choose which nSigma to use: TPC or ITS | ||
| std::array<float, 6> detectorNsigmaCut = cfgPIDConfig.cfgUseItsPID ? itsNsigmaCut : tpcNsigmaCut; // Choose which nSigma to use: TPC or ITS | ||
|
|
||
| bool isPion = false; | ||
| bool isKaon = false; | ||
| bool isProton = false; | ||
| bool isDetectedPion = nSigmaToUse[kPionUp] < detectorNsigmaCut[kPionUp] && nSigmaToUse[kPionUp] > detectorNsigmaCut[kPionLow]; | ||
| bool isDetectedKaon = nSigmaToUse[kKaonUp] < detectorNsigmaCut[kKaonUp] && nSigmaToUse[kKaonUp] > detectorNsigmaCut[kKaonLow]; | ||
| bool isDetectedProton = nSigmaToUse[kProtonUp] < detectorNsigmaCut[kProtonUp] && nSigmaToUse[kProtonUp] > detectorNsigmaCut[kProtonLow]; | ||
|
|
||
| bool isTofPion = nSigmaTOF[kPionUp] < tofNsigmaCut[kPionUp] && nSigmaTOF[kPionUp] > tofNsigmaCut[kPionLow]; | ||
| bool isTofKaon = nSigmaTOF[kKaonUp] < tofNsigmaCut[kKaonUp] && nSigmaTOF[kKaonUp] > tofNsigmaCut[kKaonLow]; | ||
| bool isTofProton = nSigmaTOF[kProtonUp] < tofNsigmaCut[kProtonUp] && nSigmaTOF[kProtonUp] > tofNsigmaCut[kProtonLow]; | ||
|
|
||
| if (track.pt() > cfgPIDConfig.cfgTofPtCut && !track.hasTOF()) { | ||
| return -1; | ||
| } else if (track.pt() > cfgPIDConfig.cfgTofPtCut && track.hasTOF()) { | ||
| isPion = isTofPion && isDetectedPion; | ||
| isKaon = isTofKaon && isDetectedKaon; | ||
| isProton = isTofProton && isDetectedProton; | ||
| } else { | ||
| isPion = isDetectedPion; | ||
| isKaon = isDetectedKaon; | ||
| isProton = isDetectedProton; | ||
| } | ||
|
|
||
| if ((isPion && isKaon) || (isPion && isProton) || (isKaon && isProton)) { | ||
| return -1; // more than one particle satisfy the criteria | ||
| } | ||
|
|
||
| if (isPion) { | ||
| pid = kPions; | ||
| } else if (isKaon) { | ||
| pid = kKaons; | ||
| } else if (isProton) { | ||
| pid = kProtons; | ||
| } else { | ||
| return -1; // no particle satisfies the criteria | ||
| } | ||
|
|
||
| return pid; // -1 = not identified, 1 = pion, 2 = kaon, 3 = proton | ||
| } | ||
|
|
||
| void loadAlignParam(uint64_t timestamp) | ||
| { | ||
| offsetFT0 = ccdb->getForTimeStamp<std::vector<o2::detectors::AlignParam>>("FT0/Calib/Align", timestamp); | ||
|
|
@@ -558,6 +669,8 @@ struct LongRangeDihadronCor { | |
|
|
||
| if (!trackSelected(track1)) | ||
| continue; | ||
| if (cfgPIDConfig.cfgPIDParticle && getNsigmaPID(track1) != cfgPIDConfig.cfgPIDParticle) | ||
| continue; // if PID is selected, check if the track has the right PID | ||
| if (!getEfficiencyCorrection(triggerWeight, track1.eta(), track1.pt(), posZ)) | ||
| continue; | ||
| if (system == SameEvent) { | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why
[3][20]if the actual configurable is[3][6]?