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
Copy file name to clipboardExpand all lines: Common/TableProducer/qVectorsTable.cxx
+24-14Lines changed: 24 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,6 @@ struct qVectorsTable {
114
114
Configurable<bool> useCorrectionForRun{"useCorrectionForRun", true, "Get Qvector corrections based on run number instead of timestamp"};
115
115
Configurable<std::string> cfgGainEqPath{"cfgGainEqPath", "Users/j/junlee/Qvector/GainEq", "CCDB path for gain equalization constants"};
116
116
Configurable<std::string> cfgQvecCalibPath{"cfgQvecCalibPath", "Analysis/EventPlane/QVecCorrections", "CCDB path for Q-vector calibration constants"};
117
-
Configurable<std::string> cfgQvecEseCalibPath{"cfgQvecEseCalibPath", "Analysis/EventPlane/QVecEseCorrections", "CCDB path for EsE Q-vector calibration constants"};
118
117
119
118
Configurable<bool> cfgShiftCorr{"cfgShiftCorr", false, "configurable flag for shift correction"};
120
119
Configurable<std::string> cfgShiftPath{"cfgShiftPath", "", "CCDB path for shift correction"};
@@ -188,7 +187,8 @@ struct qVectorsTable {
188
187
189
188
std::vector<TH3F*> corrsQvecSp{};
190
189
std::vector<TH3F*> corrsQvecEse{};
191
-
std::vector<TProfile3D*> shiftProfile{};
190
+
std::vector<TProfile3D*> shiftProfileSp{};
191
+
std::vector<TProfile3D*> shiftProfileEse{};
192
192
193
193
// Deprecated, will be removed in future after transition time //
194
194
Configurable<bool> cfgUseBPos{"cfgUseBPos", false, "Initial value for using BPos. By default obtained from DataModel."};
@@ -312,27 +312,37 @@ struct qVectorsTable {
312
312
corrsQvecEse.clear();
313
313
for (std::size_t i = 0; i < cfgnMods->size(); i++) {
314
314
int ind = cfgnMods->at(i);
315
-
fullPath = cfgQvecEseCalibPath;
315
+
fullPath = cfgQvecCalibPath;
316
316
fullPath += "/eseq";
317
317
fullPath += std::to_string(ind);
318
318
auto modeCorrQvecEse = getForTsOrRun<TH3F>(fullPath, timestamp, runnumber);
0 commit comments