Skip to content

Commit f8e960e

Browse files
Update kaonIsospinFluctuations.cxx
1 parent 6b682ec commit f8e960e

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2403,9 +2403,9 @@ struct KaonIsospinFluctuations {
24032403
if (!vetoIdOthersTOF<kEl>(track)) {
24042404
return false;
24052405
}
2406-
static const float kNSigmaRadHighP = getCfg<float>(cfgIdCut.pidConfigSetting, kEl, kNSigmaRadHighP);
2406+
static const float nSigmaRadHighP = getCfg<float>(cfgIdCut.pidConfigSetting, kEl, kNSigmaRadHighP);
24072407
const float sumSq = track.tpcNSigmaEl() * track.tpcNSigmaEl() + track.tofNSigmaEl() * track.tofNSigmaEl();
2408-
return sumSq < kNSigmaRadHighP;
2408+
return sumSq < nSigmaRadHighP;
24092409
}
24102410

24112411
//______________________________Identification Functions________________________________________________________________
@@ -3546,44 +3546,44 @@ struct KaonIsospinFluctuations {
35463546
static const bool fillPostSelDau = getCfg<bool>(cfgPrimVtxParticleCuts, row, kPrimFillPostSelDau);
35473547

35483548
static LorentzVector vecMother;
3549-
uint16_t flagBit = 0;
3549+
// uint16_t flagBit = 0;
35503550

35513551
// Mass window check & vector assignment
35523552
if constexpr (particleMode == Phi1020) {
35533553
if (!(massLow < mother.mPhi1020() && mother.mPhi1020() < massHigh))
35543554
return;
35553555
BITSET(primVtxCndtTag, BIT_IS_PHI_1020);
3556-
flagBit = 1 << BIT_IS_PHI_1020;
3556+
// flagBit = 1 << BIT_IS_PHI_1020;
35573557
vecMother = LorentzVector(mother.px(), mother.py(), mother.pz(), mother.mPhi1020());
35583558
} else if constexpr (particleMode == JPsiToEE) {
35593559
if (!(massLow < mother.mJPsiToEE() && mother.mJPsiToEE() < massHigh))
35603560
return;
35613561
BITSET(primVtxCndtTag, BIT_IS_JPSI_TO_EE);
3562-
flagBit = 1 << BIT_IS_JPSI_TO_EE;
3562+
// flagBit = 1 << BIT_IS_JPSI_TO_EE;
35633563
vecMother = LorentzVector(mother.px(), mother.py(), mother.pz(), mother.mJPsiToEE());
35643564
} else if constexpr (particleMode == JPsiToMuMu) {
35653565
if (!(massLow < mother.mJPsiToMuMu() && mother.mJPsiToMuMu() < massHigh))
35663566
return;
35673567
BITSET(primVtxCndtTag, BIT_IS_JPSI_TO_MUMU);
3568-
flagBit = 1 << BIT_IS_JPSI_TO_MUMU;
3568+
// flagBit = 1 << BIT_IS_JPSI_TO_MUMU;
35693569
vecMother = LorentzVector(mother.px(), mother.py(), mother.pz(), mother.mJPsiToMuMu());
35703570
} else if constexpr (particleMode == KStar892) {
35713571
if (!(massLow < mother.mKStar892() && mother.mKStar892() < massHigh))
35723572
return;
35733573
BITSET(primVtxCndtTag, BIT_IS_KSTAR_892);
3574-
flagBit = 1 << BIT_IS_KSTAR_892;
3574+
// flagBit = 1 << BIT_IS_KSTAR_892;
35753575
vecMother = LorentzVector(mother.px(), mother.py(), mother.pz(), mother.mKStar892());
35763576
} else if constexpr (particleMode == KStar892Bar) {
35773577
if (!(massLow < mother.mKStar892Bar() && mother.mKStar892Bar() < massHigh))
35783578
return;
35793579
BITSET(primVtxCndtTag, BIT_IS_KSTAR_892_BAR);
3580-
flagBit = 1 << BIT_IS_KSTAR_892_BAR;
3580+
// flagBit = 1 << BIT_IS_KSTAR_892_BAR;
35813581
vecMother = LorentzVector(mother.px(), mother.py(), mother.pz(), mother.mKStar892Bar());
35823582
} else if constexpr (particleMode == Rho770) {
35833583
if (!(massLow < mother.mRho770() && mother.mRho770() < massHigh))
35843584
return;
35853585
BITSET(primVtxCndtTag, BIT_IS_RHO_770);
3586-
flagBit = 1 << BIT_IS_RHO_770;
3586+
// flagBit = 1 << BIT_IS_RHO_770;
35873587
vecMother = LorentzVector(mother.px(), mother.py(), mother.pz(), mother.mRho770());
35883588
} else {
35893589
static_assert(particleMode == Phi1020 || particleMode == JPsiToEE || particleMode == JPsiToMuMu ||

0 commit comments

Comments
 (0)