Skip to content

Commit b825aaa

Browse files
author
Yiping Wang
committed
remove unused code
1 parent e7ed8b0 commit b825aaa

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

MC/config/PWGDQ/EvtGen/GeneratorEvtGen.C

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,11 +356,9 @@ class GeneratorEvtGen : public T
356356
case kEvtBeautyUpgrade:
357357
SetDecayTable(Form("%s/BEAUTYUPGRADE.DEC", pathO2.Data()));
358358
break;
359-
// Yiping's test
360359
case kEvtBPsiJpsiPiPi:
361360
SetDecayTable(Form("%s/BTOPSITOJPSIPIPI.DEC", pathO2.Data()));
362361
break;
363-
// end Yiping's test
364362
}
365363
return;
366364
};

MC/config/PWGDQ/ini/tests/GeneratorHF_bbbar_PsiToJpsi_midy_triggerGap.C

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,8 @@ int External()
5353
}
5454
if(hasBeautyMoth){
5555
nSignalPsi2S++;
56-
std::cout << "Signal PDG: " << pdg << "\n";
5756
for (int j{track.getFirstDaughterTrackId()}; j <= track.getLastDaughterTrackId(); ++j) {
5857
auto pdgDau = tracks->at(j).GetPdgCode();
59-
std::cout << "Daughter " << j << " is: " << pdgDau << "\n";
6058
if(TMath::Abs(pdgDau) == checkPdgDecay[0] ) { nSignalJpsi++; if( std::abs(track.GetRapidity()) < rapidityWindow) nSignalJpsiWithinAcc++; idJpsi = j; }
6159
if(pdgDau == checkPdgDecay[1] ) { nSignalPionsPos++; if( std::abs(track.GetRapidity()) < rapidityWindow) nSignalPionsPosWithinAcc++; }
6260
if(pdgDau == checkPdgDecay[2] ) { nSignalPionsNeg++; if( std::abs(track.GetRapidity()) < rapidityWindow) nSignalPionsNegWithinAcc++; }
@@ -73,7 +71,6 @@ int External()
7371
// check for parent-child relations
7472
auto pdg0 = child0.GetPdgCode();
7573
auto pdg1 = child1.GetPdgCode();
76-
std::cout << "Lepton daughter particles of mother " << trackJpsi.GetPdgCode() << " are PDG0: " << pdg0 << " PDG1: " << pdg1 << "\n";
7774
if (std::abs(pdg0) == leptonPdg && std::abs(pdg1) == leptonPdg && pdg0 == -pdg1) {
7875
nLeptonPairs++;
7976
if (child0.getToBeDone() && child1.getToBeDone()) {

0 commit comments

Comments
 (0)