Skip to content
Snippets Groups Projects

Unified log to screen in reconstruction chain

Merged Volker Friese requested to merge v.friese/cbmroot:run into master
All threads resolved!

Files

+ 2
2
@@ -283,7 +283,7 @@ void run_reco(TString input = "", Int_t nTimeSlices = -1, Int_t firstTimeSlice =
// ------------------------------------------------------------------------
// ----------- QA for raw event builder -----------------------------------
if (eventBased) {
if (eventBased && useMC) {
CbmBuildEventsQA* evBuildQA = new CbmBuildEventsQA();
run->AddTask(evBuildQA);
}
@@ -372,7 +372,7 @@ void run_reco(TString input = "", Int_t nTimeSlices = -1, Int_t firstTimeSlice =
// ----- Local reconstruction in TOF ----------------------------------
if (useTof) {
CbmTofSimpClusterizer* tofCluster = new CbmTofSimpClusterizer("TOF Simple Clusterizer", 0);
CbmTofSimpClusterizer* tofCluster = new CbmTofSimpClusterizer("TofSimpClusterizer", 0);
tofCluster->SetOutputBranchPersistent("TofHit", kTRUE);
tofCluster->SetOutputBranchPersistent("TofDigiMatch", kTRUE);
run->AddTask(tofCluster);
Loading