Skip to content

Commit 14cb661

Browse files
committed
Lambda_QCD declarations to match JETSCAPE 3.6.1
matching the Lambda_QCD declarations as changed in JETSCAPE 3.6.1 in classes specific to X-SCAPE.
1 parent f1ea687 commit 14cb661

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/jet/ISRRotation.cc

+1
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,7 @@ void ISRRotation::AddRemenant(Parton &Out,int label){
471471
int NHardScatterings = ini->pTHat.size();
472472
double Pz = (Rem.pz() >=0 ? 1.0:-1.0);
473473

474+
Lambda_QCD = GetXMLElementDouble({"Eloss","lambdaQCD"});
474475
Rem.reset_momentum(0.25 * Lambda_QCD, 0.25 * Lambda_QCD,Pz,0.0);
475476
Rem.set_color(Out.anti_color());
476477
Rem.set_anti_color(Out.color());

src/jet/ISRRotation.h

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ class ISRRotation : public JetEnergyLossModule<ISRRotation>
6262
std::array<double, 2> pT; double LatestPartonNewPz;
6363
double s0 = 0.2, sP0;
6464
double TotalMomentumFraction;
65+
double Lambda_QCD;
6566

6667
std::string Fpath = "ISR-PT.dat";
6768
std::ofstream *File;

src/jet/iMATTER.cc

+1
Original file line numberDiff line numberDiff line change
@@ -1568,6 +1568,7 @@ double iMATTER::PDF(int pid, double z, double t){
15681568
double iMATTER::alpha_s(double q2) {
15691569
double a, L2, q24, c_nf;
15701570

1571+
Lambda_QCD = GetXMLElementDouble({"Eloss","lambdaQCD"});
15711572
L2 = std::pow(Lambda_QCD, 2);
15721573

15731574
q24 = q2 / 4.0;

src/jet/iMATTER.h

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ class iMATTER : public JetEnergyLossModule<iMATTER>
122122
int LabelOfTheShower, NPartonPerShower = 100000, MAX_COLOR;
123123
const double z_min_factor = 0.94; // this limits the parent momentum to be P_A/z_min_factor
124124
double TotalMomentumFraction, TotalMomentum;
125+
double Lambda_QCD;
125126

126127
Parton Parent,Sibling,Current;
127128
int Current_Status = 1e8, Current_Label = -1;

0 commit comments

Comments
 (0)