You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOGF(debug, "Loaded TPC track %i with time %f. Window from %f to %f", nTracksLoadedTPC, trkAttribs.mTime, trkAttribs.mTime - trkAttribs.mTimeSubMax, trkAttribs.mTime + trkAttribs.mTimeAddMax);
415
415
}
416
416
LOGF(info, "%i tracks are loaded into the TRD tracker. Out of those %i ITS-TPC tracks and %i TPC tracks", nTracksLoadedITSTPC + nTracksLoadedTPC, nTracksLoadedITSTPC, nTracksLoadedTPC);
417
-
417
+
418
418
// Load the FT0 triggered BCs if this is requested
419
419
420
420
if (mTrkMask[GTrackID::FT0]) { // pile-up tagging was requested
421
421
auto ft0recPoints = inputTracks.getFT0RecPoints();
422
422
uint32_t firstOrbit = 0;
423
423
for (size_t ft0id = 0; ft0id < ft0recPoints.size(); ft0id++) {
424
424
constauto& f0rec = ft0recPoints[ft0id];
425
-
if (ft0id == 0) firstOrbit = f0rec.getInteractionRecord().orbit;
425
+
if (ft0id == 0)
426
+
firstOrbit = f0rec.getInteractionRecord().orbit;
426
427
if (o2::ft0::InteractionTag::Instance().isSelected(f0rec)) {
// P(BC|L0,L1,...) proportional to P(BC)*P(L0,L1,...|BC), prop to P(BC)*P(L0|BC)*P(L1|BC)*... since for a given track and BC, charge in different layers are independent
127
126
// prop to P(BC) * P(BC|L0)/P(BC) * P(BC|L1)/P(BC) * ...
128
127
//
129
-
// P(BC) is the probability with no charge information: we start from this probability, and each tracklet adds new information on pileup probability
130
-
128
+
// P(BC) is the probability with no charge information: we start from this probability, and each tracklet adds new information on pileup probability
131
129
132
130
// basic probability, if we had no info on the charges
0 commit comments