Skip to content
Snippets Groups Projects

Improvements to PWG_common_production

Merged Lukas Chlad requested to merge l.chlad/cbmroot:pwg_common_production into master
1 unresolved thread
2 files
+ 3
5
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -27,13 +27,11 @@ bool CheckOutFileName(TString fileName, Bool_t overwrite, const char* caller = _
void run_analysis_tree_maker_json_config(TString traPath = "test", TString rawPath = "", TString recPath = "",
TString unigenFile = "", TString outPath = "", bool overwrite = true,
std::string config = "", std::string tslength = "-1", int nEvents = 0)
std::string config = "", std::string tslength = "-1", bool is_event_base = false, int nEvents = 0)
{
const std::string system = "Au+Au"; // TODO can we read it automatically?
const float beam_mom = 12.;
bool is_event_base = false;
const float ts_length = std::stof(tslength);
if (ts_length < 0.) is_event_base = true;
// --- Logger settings ----------------------------------------------------
const TString logLevel = "INFO";
Loading