Skip to content

Commit 939e2a2

Browse files
committed
fix T0 part
1 parent 1ead442 commit 939e2a2

2 files changed

Lines changed: 6 additions & 104 deletions

File tree

macro/analyzeHits.C

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
#include "TOFSimulation/Detector.h"
77
#include "EMCALBase/Hit.h"
88
#include "TRDSimulation/Detector.h" // For TRD Hit
9-
#include "FITSimulation/Detector.h" // for Fit Hit
9+
#include "T0Simulation/Detector.h" // for Fit Hit
10+
#include "V0Simulation/Hit.h"
1011
#include "HMPIDBase/Hit.h"
1112
#include "TPCSimulation/Point.h"
1213
#include "PHOSBase/Hit.h"
@@ -219,10 +220,10 @@ void analyzePHS(TTree* reftree)
219220
refresult.print();
220221
}
221222

222-
void analyzeFIT(TTree* reftree)
223+
void analyzeT0(TTree* reftree)
223224
{
224-
auto refresult = analyse<o2::fit::HitType, HitStats<o2::fit::HitType>>(reftree, "FITHit");
225-
std::cout << gPrefix << " FIT ";
225+
auto refresult = analyse<o2::fit::HitType, HitStats<o2::fit::HitType>>(reftree, "T0Hit");
226+
std::cout << gPrefix << " T0 ";
226227
refresult.print();
227228
}
228229

@@ -268,6 +269,6 @@ void analyzeHits(const char* filename = "o2sim.root", const char* prefix = "")
268269
analyzeEMC(reftree);
269270
analyzeTRD(reftree);
270271
analyzePHS(reftree);
271-
analyzeFIT(reftree);
272+
analyzeT0(reftree);
272273
analyzeHMP(reftree);
273274
}

macro/run_digi_fit.C

Lines changed: 0 additions & 99 deletions
This file was deleted.

0 commit comments

Comments
 (0)