Skip to content

Commit 41edfd8

Browse files
sawankumawatchiarazampolli
authored andcommitted
added particle a2(1320) in the O2Database for the study of glueball
(cherry picked from commit 6b8ca30)
1 parent 8f9acd7 commit 41edfd8

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

DataFormats/simulation/include/SimulationDataFormat/O2DatabasePDG.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,10 @@ inline void O2DatabasePDG::addALICEParticles(TDatabasePDG* db)
490490
}
491491

492492
// glueball hunting
493+
ionCode = 115;
494+
if (!db->GetParticle(ionCode)) {
495+
db->AddParticle("a2_1320", "a2_1320", 1.3182, kFALSE, 0.1078, 0, "Resonance", ionCode);
496+
}
493497
ionCode = 10221;
494498
if (!db->GetParticle(ionCode)) {
495499
db->AddParticle("f0_1370", "f0_1370", 1.37, kFALSE, 0.200, 0, "Resonance", ionCode);

Steer/src/O2MCApplication.cxx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,8 @@ void addSpecialParticles()
360360
// Their life times are not known, so we set them to 1e-24
361361
// f0(1370) (PDG: width = 200-500 MeV) Spin/Parity might not be correct
362362
TVirtualMC::GetMC()->DefineParticle(10221, "f0_1370", kPTNeutron, 1.37, 0.0, 1e-24, "Hadron", 0.2, 1, 1, 1, 0, 0, 1, 0, 0, kTRUE);
363+
// a2(1320) (PDG: width = 107.8 MeV) (Spin/Parity might not be correct)
364+
TVirtualMC::GetMC()->DefineParticle(115, "a2_1320", kPTNeutron, 1.3182, 0.0, 1e-24, "Hadron", 0.1078, 1, 1, 1, 1, 0, 1, 0, 0, kTRUE);
363365
// f0(1500) (PDG: width = 112 MeV) Spin/Parity might not be correct
364366
TVirtualMC::GetMC()->DefineParticle(9030221, "f0_1500", kPTNeutron, 1.506, 0.0, 1e-24, "Hadron", 0.112, 0, 1, 1, 0, 0, 1, 0, 0, kTRUE);
365367
// f0(1710) (PDG: width = 139 MeV) Spin/Parity might not be correct
@@ -1166,6 +1168,7 @@ void addSpecialParticles()
11661168
TVirtualMC::GetMC()->SetDecayMode(335, bratio, mode); // f2(1525)
11671169
TVirtualMC::GetMC()->SetDecayMode(10331, bratio, mode); // f0(1710)
11681170
TVirtualMC::GetMC()->SetDecayMode(10221, bratio, mode); // f0(1370)
1171+
TVirtualMC::GetMC()->SetDecayMode(115, bratio, mode); // a2(1320)
11691172

11701173
// Define the 3-body phase space decay for the resonances: f1(1285), f1(1420)
11711174
for (Int_t kz = 0; kz < 6; kz++) {

0 commit comments

Comments
 (0)