From 6501593cb3dde6da6573c38263c05f8d7530d134 Mon Sep 17 00:00:00 2001 From: Stephan Friedrich Stiefelmaier Date: Tue, 27 Feb 2024 14:05:24 +0100 Subject: [PATCH] Update Hijing_Gamma002.C - reduce number of injected signals for PCM from 470 to 306 in 0-10% production - remove emcal injectors after discussion with Marvin -they aren't useful because of pcm injectors --- MC/CustomGenerators/PWGGA/Hijing_Gamma002.C | 24 +-------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/MC/CustomGenerators/PWGGA/Hijing_Gamma002.C b/MC/CustomGenerators/PWGGA/Hijing_Gamma002.C index ffc98767..d64d265a 100644 --- a/MC/CustomGenerators/PWGGA/Hijing_Gamma002.C +++ b/MC/CustomGenerators/PWGGA/Hijing_Gamma002.C @@ -26,7 +26,7 @@ GeneratorCustom() } // PCM - TFormula* neutralsF = new TFormula("neutrals", "max(1.,470.*(x<5.)+62.*(x>7.5)*(x<12.5))"); + TFormula* neutralsF = new TFormula("neutrals", "max(1.,306.*(x<5.)+62.*(x>7.5)*(x<12.5))"); Int_t ntimes = 1; if ( isEmbedding ) { @@ -50,27 +50,5 @@ GeneratorCustom() ctl->AddGenerator(pi0d, "Injector (pi0d)", 1.); ctl->AddGenerator(etaa, "Injector (etaa)", 1.); - // EMCAL - AliGenerator *pi0e = GeneratorInjector(1, 111, 0., 25., -0.7, 0.7, 80., 120.); // EMCal 1 - AliGenerator *pi0f = GeneratorInjector(1, 111, 0., 25., -0.7, 0.7, 120., 160.); // EMCal 2 - AliGenerator *pi0g = GeneratorInjector(1, 111, 0., 25., -0.7, 0.7, 160., 187.); // EMCal 3 - AliGenerator *pi0h = GeneratorInjector(1, 111, 0., 25., 0.22, 0.7, 260., 327.); // DCal one side PHOS - AliGenerator *pi0i = GeneratorInjector(1, 111, 0., 25., -0.7, -0.22, 260., 327.); // DCal other side PHOS - AliGenerator *etab = GeneratorInjector(1, 221, 0., 25., -0.7, 0.7, 80., 120.); // EMCal 1 - AliGenerator *etac = GeneratorInjector(1, 221, 0., 25., -0.7, 0.7, 120., 160); // EMCal 2 - AliGenerator *etad = GeneratorInjector(1, 221, 0., 25., -0.7, 0.7, 160., 187.); // EMCal 3 - AliGenerator *etae = GeneratorInjector(1, 221, 0., 25., 0.22, 0.7, 260., 327.); // DCal one side PHOS - AliGenerator *etaf = GeneratorInjector(1, 221, 0., 25., -0.7, -0.22, 260., 327.); // DCal other side PHOS - ctl->AddGenerator(pi0e, "Injector (pi0e)", 1.); - ctl->AddGenerator(pi0f, "Injector (pi0f)", 1.); - ctl->AddGenerator(pi0g, "Injector (pi0g)", 1.); - ctl->AddGenerator(pi0h, "Injector (pi0h)", 1.); - ctl->AddGenerator(pi0i, "Injector (pi0i)", 1.); - ctl->AddGenerator(etab, "Injector (etab)", 1.); - ctl->AddGenerator(etac, "Injector (etac)", 1.); - ctl->AddGenerator(etad, "Injector (etad)", 1.); - ctl->AddGenerator(etae, "Injector (etae)", 1.); - ctl->AddGenerator(etaf, "Injector (etaf)", 1.); - return ctl; }