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
int VarManager::fgCalibrationType = 0; // 0 - no calibration, 1 - calibration vs (TPCncls,pIN,eta) typically for pp, 2 - calibration vs (eta,nPV,nLong,tLong) typically for PbPb
values[kPairWeight] = 1.0 / (values[kPairEfficiency] > 0 ? values[kPairEfficiency] : 1.0); // set the weight as the inverse of the efficiency, but avoid division by zero
430
+
} else {
431
+
LOG(warning) << "FillEfficiency: unknown efficiency type " << fgEfficiencyType << ", using default efficiency = 1";
@@ -1547,6 +1558,9 @@ class VarManager : public TObject
1547
1558
staticint fgCalibrationType; // 0 - no calibration, 1 - calibration vs (TPCncls,pIN,eta) typically for pp, 2 - calibration vs (eta,nPV,nLong,tLong) typically for PbPb
1548
1559
staticbool fgUseInterpolatedCalibration; // use interpolated calibration histograms (default: true)
1549
1560
1561
+
staticint fgEfficiencyType; // type of efficiency correction to apply
1562
+
static TObject* fgEfficiencyHist; // histogram for efficiency correction
0 commit comments