Skip to content

Commit

Permalink
Force decay of f0(1500) (#1487)
Browse files Browse the repository at this point in the history
* Apply decayer

---------

Co-authored-by: Bong-Hwi Lim <[email protected]>
  • Loading branch information
gconesab and BongHwi authored Jul 7, 2023
1 parent e41bea1 commit f473c65
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion EVGEN/AliDecayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ typedef enum
kHadronicDWithV0,kHadronicDWithout4BodiesWithV0,kAllEM,
kLcpKpi, kLcpK0S, kHFYellowReport, kHadronicDPionicD0, kHadronicDWithV0PionicD0, kHadronicDWithout4BodiesPionicD0,
kHadronicDWithout4BodiesWithV0PionicD0,kHadronicDPionicD0pure,kHadronicDPionicD0K,kHadronicDPionicD0pi, kLcpK0SBDTsig, kEtaPrime,kEtaPrimeGammaGamma,
kXic0Semileptonic,kHadronicDWithout4BodiesDsPhiPi, kLcLpi, kOmegac0Semileptonic, kOmegac0ToXiPi
kXic0Semileptonic,kHadronicDWithout4BodiesDsPhiPi, kLcLpi, kOmegac0Semileptonic, kOmegac0ToXiPi, kF0F1K0s, kF1K0sK
} Decay_t;
#endif

Expand Down
35 changes: 35 additions & 0 deletions PYTHIA6/AliPythia6/AliDecayerPythia.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,12 @@ void AliDecayerPythia::ForceDecay()
case kLambda:
ForceLambda();
break;
case kF0F1K0s:
ForceF0F1();
break;
case kF1K0sK:
ForceF1K0sK();
break;
case kAll:
break;
case kNoDecay:
Expand Down Expand Up @@ -682,6 +688,35 @@ void AliDecayerPythia::Lu1Ent(Int_t flag, Int_t idpart,

}

void AliDecayerPythia::ForceF0F1()
{
// force decay mode of f0(1500) to K0s K0s
const Int_t prod[2]={310,-310};
Int_t mult[2]={1,1};
ForceParticleDecay(9030221,prod,mult,2,1);
// force decay of f2(1525) to K0s K0s
ForceParticleDecay(335,prod,mult,2,1);
// force decay of f2(1270) to K0s K0s
ForceParticleDecay(225,prod,mult,2,1);
// force decay of f0(1370) to K0s K0s
ForceParticleDecay(10221,prod,mult,2,1);
// force decay of f1(1285) to K0s, anti-K, pi+
const Int_t prod2[3]={310,-321,211};
Int_t mult2[3]={1,1,1};
ForceParticleDecay(20223,prod2,mult2,3,1);
// force decay of f1(1420) to K0s, anti-K, pi+
ForceParticleDecay(20333,prod2,mult2,3,1);
}

void AliDecayerPythia::ForceF1K0sK()
{
// force decay of f1(1285) to K0s, K, pi-
const Int_t prod[3]={310,321,-211};
Int_t mult[3]={1,1,1};
ForceParticleDecay(20223,prod,mult,3,1);
// force decay of f1(1420) to K0s, K, pi-
ForceParticleDecay(20333,prod,mult,3,1);
}


Int_t AliDecayerPythia::CountProducts(Int_t channel, Int_t particle)
Expand Down
2 changes: 2 additions & 0 deletions PYTHIA6/AliPythia6/AliDecayerPythia.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ public AliDecayer
void SwitchOffHeavyFlavour();
void ForceBeautyUpgrade();
void ForceHFYellowReport();
void ForceF0F1();
void ForceF1K0sK();
Float_t GetBraPart(Int_t kf);
void Copy(TObject &decayer) const;

Expand Down

0 comments on commit f473c65

Please sign in to comment.