Skip to content

Commit

Permalink
Bugfix in eic.cc
Browse files Browse the repository at this point in the history
Added Love's bug fix directly. Oher changes are needed. Need to check corner cases and add real error messages/code breaks to this. Please do this in develop first.
  • Loading branch information
sjdkay authored Aug 17, 2023
1 parent 6a5d6d1 commit 903f6d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eic_evgen/eic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ vector<vector<vector<vector<double>>>> ReadCrossSectionPar(TString particle, TSt
sigL_ParamFile = "../src/eic_evgen/CrossSection_Params/KPlusLambda_Param_sigL";
sigT_ParamFile = "../src/eic_evgen/CrossSection_Params/KPlusLambda_Param_sigT"; // Shouldn't really have a relative path, should look at setting a DEMPGen variable and doing this in a better way later
}
else if (particle == "K+" && hadron == "Sigma"){
else if (particle == "K+" && hadron == "Sigma0"){
cout << "Add K+/Sigma case here" << endl;
sigL_ParamFile = "../src/eic_evgen/CrossSection_Params/KPlusSigma_Param_sigL";
sigT_ParamFile = "../src/eic_evgen/CrossSection_Params/KPlusSigma_Param_sigT";
Expand Down

0 comments on commit 903f6d5

Please sign in to comment.