From fc639485cbc998b358cfe059fa45dd58b8657ebe Mon Sep 17 00:00:00 2001 From: Chris Pinkenburg Date: Sat, 9 May 2026 16:23:07 -0400 Subject: [PATCH] add type 51: ets meson pt > 8GeV --- offline/framework/frog/CreateFileList.pl | 36 +++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/offline/framework/frog/CreateFileList.pl b/offline/framework/frog/CreateFileList.pl index 089e83e6c4..903fa28236 100755 --- a/offline/framework/frog/CreateFileList.pl +++ b/offline/framework/frog/CreateFileList.pl @@ -88,7 +88,8 @@ "47" => "Herwig Photonjet ptmin = 20 GeV", "48" => "JS pythia8 Jet ptmin = 8 GeV", "49" => "JS pythia8 Jet ptmin = 80 GeV", - "50" => "JS pythia8 Detroit eta ptmin = 3 GeV" + "50" => "JS pythia8 Detroit eta ptmin = 3 GeV", + "51" => "JS pythia8 Detroit eta ptmin = 8 GeV" ); my %pileupdesc = ( @@ -1496,6 +1497,39 @@ $pileupstring = $pp_pileupstring; &commonfiletypes(); } + elsif ($prodtype == 51) + { + $embedok = 1; + $filenamestring = "pythia8_Eta8"; + if (! defined $nopileup) + { + if (defined $embed) + { + if ($embed eq "pau") + { + $filenamestring = sprintf("%s_sHijing_pAu_0_10fm%s",$filenamestring, $pAu_pileupstring); + } + elsif ($embed eq "central") + { + $filenamestring = sprintf("%s_sHijing_0_488fm%s",$filenamestring, $AuAu_pileupstring); + } + elsif ($embed eq "oo") + { + $filenamestring = sprintf("%s_sHijing_OO_0_15fm%s",$filenamestring, $OO_pileupstring); + } + else + { + $filenamestring = sprintf("%s_sHijing_0_20fm%s",$filenamestring, $AuAu_pileupstring); + } + } + else + { + $filenamestring = sprintf("%s%s",$filenamestring,$pp_pileupstring); + } + } + $pileupstring = $pp_pileupstring; + &commonfiletypes(); + } else { print "no production type $prodtype\n";