File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed
Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff 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 };
Original file line number Diff line number Diff 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 ()) {
You can’t perform that action at this time.
0 commit comments