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";
@@ -1555,6 +1566,9 @@ class VarManager : public TObject
1555
1566
staticint fgCalibrationType; // 0 - no calibration, 1 - calibration vs (TPCncls,pIN,eta) typically for pp, 2 - calibration vs (eta,nPV,nLong,tLong) typically for PbPb
1556
1567
staticbool fgUseInterpolatedCalibration; // use interpolated calibration histograms (default: true)
1557
1568
1569
+
staticint fgEfficiencyType; // type of efficiency correction to apply
1570
+
static TObject* fgEfficiencyHist; // histogram for efficiency correction
0 commit comments