From 5c723a3095ba424d74644ce5430247c7c0faa1a4 Mon Sep 17 00:00:00 2001 From: cdean-github Date: Thu, 6 May 2021 11:27:40 -0400 Subject: [PATCH] Small cleaning to G4_FwdJets.C --- common/G4_FwdJets.C | 2 +- detectors/EICDetector/Fun4All_G4_EICDetector.C | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/G4_FwdJets.C b/common/G4_FwdJets.C index a95a54ab..23bb5dd9 100644 --- a/common/G4_FwdJets.C +++ b/common/G4_FwdJets.C @@ -126,7 +126,7 @@ void Jet_FwdReco() return; } -void Jet_FwdEval(const std::string &outfilename = "g4fwdjets_eval.root", const std::string &outfilepath = ".", const std::string &prepend = "") +void Jet_FwdEval(const std::string &outfilepath = ".", const std::string &prepend = "") { int verbosity = std::max(Enable::VERBOSITY, Enable::FWDJETS_VERBOSITY); Fun4AllServer *se = Fun4AllServer::instance(); diff --git a/detectors/EICDetector/Fun4All_G4_EICDetector.C b/detectors/EICDetector/Fun4All_G4_EICDetector.C index 3304c62f..b46a41a9 100644 --- a/detectors/EICDetector/Fun4All_G4_EICDetector.C +++ b/detectors/EICDetector/Fun4All_G4_EICDetector.C @@ -505,7 +505,7 @@ int Fun4All_G4_EICDetector( if (Enable::HCALOUT_EVAL) HCALOuter_Eval(outputroot + "_g4hcalout_eval.root"); if (Enable::FHCAL_EVAL) FHCAL_Eval(outputroot + "_g4fhcal_eval.root"); if (Enable::JETS_EVAL) Jet_Eval(outputroot + "_g4jet_eval.root"); - if (Enable::FWDJETS_EVAL) Jet_FwdEval(outputroot + "_g4fwdjet_eval.root", evalDir, evalPrepend); + if (Enable::FWDJETS_EVAL) Jet_FwdEval(evalDir, evalPrepend); } if (Enable::USER) UserAnalysisInit();