File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,8 @@ struct HfTaskCharmHadronsV0FemtoDream {
6969 enum PairSign {
7070 PairNotDefined = 0 ,
7171 LikeSignPair = 1 ,
72- UnLikeSignPair = 2
72+ UnLikeSignPair = 2 ,
73+ ReflectedPair = 3
7374 };
7475 // decay channels
7576 enum DecayChannel { DplusToPiKPi = 0 ,
@@ -466,8 +467,10 @@ struct HfTaskCharmHadronsV0FemtoDream {
466467 int pairSign = 0 ;
467468 if (chargeV0 == p2.charge ()) {
468469 pairSign = LikeSignPair;
469- } else {
470+ } else if (chargeV0 == -p2. charge ()) {
470471 pairSign = UnLikeSignPair;
472+ } else {
473+ pairSign = ReflectedPair;
471474 }
472475
473476 int charmHadMc = 0 ;
@@ -554,8 +557,10 @@ struct HfTaskCharmHadronsV0FemtoDream {
554557 int pairSign = 0 ;
555558 if (chargeV0 == p2.charge ()) {
556559 pairSign = LikeSignPair;
557- } else {
560+ } else if (chargeV0 == -p2. charge ()) {
558561 pairSign = UnLikeSignPair;
562+ } else {
563+ pairSign = ReflectedPair;
559564 }
560565
561566 int charmHadMc = 0 ;
You can’t perform that action at this time.
0 commit comments