Skip to content

Commit

Permalink
Fixed particle prod and evaluators
Browse files Browse the repository at this point in the history
  • Loading branch information
cdean-github committed Dec 26, 2021
1 parent 76a86a4 commit 560130c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions detectors/EICDetector/Fun4All_G4_EICDetector.C
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ int Fun4All_G4_EICDetector(
const string &outputFile = "G4EICDetector.root",
const string &embed_input_file = "https://www.phenix.bnl.gov/WWW/publish/phnxbld/sPHENIX/files/sPHENIX_G4Hits_sHijing_9-11fm_00000_00010.root",
const int skip = 0,
const string &outdir = ".", const string particleType)
const string &outdir = ".", const string particleType = "e-")
{
//---------------
// Fun4All server
Expand Down Expand Up @@ -102,7 +102,7 @@ int Fun4All_G4_EICDetector(
// Input::SARTRE = true;

// Simple multi particle generator in eta/phi/pt ranges
//Input::SIMPLE = true;
Input::SIMPLE = true;
// Input::SIMPLE_NUMBER = 2; // if you need 2 of them
// Input::SIMPLE_VERBOSITY = 1;

Expand All @@ -119,7 +119,7 @@ int Fun4All_G4_EICDetector(
// And/Or read generated particles from file

// eic-smear output
Input::READEIC = true;
//Input::READEIC = true;
INPUTREADEIC::filename = inputFile;

// HepMC2 files
Expand Down
6 changes: 3 additions & 3 deletions detectors/EICDetector/Fun4All_runEvaluators.C
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ int Fun4All_runEvaluators(
Enable::FEMC_EVAL = true;
Enable::LFHCAL_EVAL = true;
Enable::EEMCH_EVAL = true;
Enable::EHCAL_EVAL = true;
Enable::EHCAL_EVAL = false;
Enable::FWDJETS_EVAL = false;
Enable::FFR_EVAL = true;

Expand All @@ -101,12 +101,12 @@ int Fun4All_runEvaluators(
Enable::FEMC = true;
Enable::LFHCAL = true;
Enable::EEMCH = true;
Enable::EHCAL = true;
Enable::EHCAL = false;

TRACKING::ProjectionNames = {"BECAL"
,"CTTL_0"
,"EEMC"
,"EHCAL"
//,"EHCAL"
,"ETTL_0"
,"ETTL_1"
,"FEMC"
Expand Down

0 comments on commit 560130c

Please sign in to comment.