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: PWGLF/TableProducer/Common/zdcvector.cxx
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@
25
25
#include"Common/DataModel/Qvectors.h"
26
26
#include"Common/DataModel/TrackSelectionTables.h"
27
27
28
+
#include"Framework/Logger.h"
28
29
#include<CCDB/BasicCCDBManager.h>
29
30
#include<CCDB/CcdbApi.h>
30
31
#include<CommonConstants/PhysicsConstants.h>
@@ -53,7 +54,6 @@
53
54
#include<array>
54
55
#include<chrono>
55
56
#include<cmath>
56
-
#include<iostream>
57
57
#include<string>
58
58
#include<vector>
59
59
@@ -72,7 +72,6 @@ struct zdcvector {
72
72
// Configurables.
73
73
struct : ConfigurableGroup {
74
74
Configurable<std::string> cfgURL{"cfgURL", "http://alice-ccdb.cern.ch", "Address of the CCDB to browse"};
75
-
Configurable<int64_t> nolaterthan{"ccdb-no-later-than", std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count(), "Latest acceptable timestamp of creation for the object"};
76
75
} cfgCcdbParam;
77
76
78
77
// Enable access to the CCDB for the offset and correction constants and save them in dedicated variables.
Configurable<int> VzfineNbins{"VzfineNbins", 20, "Number of bins in Vz fine histograms"};
89
+
Configurable<int> vzFineNbins{"vzFineNbins", 20, "Number of bins in Vz fine histograms"};
91
90
Configurable<float> lfinebinVz{"lfinebinVz", -10.0, "lower bin value in Vz fine histograms"};
92
91
Configurable<float> hfinebinVz{"hfinebinVz", 10.0, "higher bin value in Vz fine histograms"};
93
-
Configurable<int> CentfineNbins{"CentfineNbins", 16, "Number of bins in cent fine histograms"};
92
+
Configurable<int> centFineNbins{"centFineNbins", 16, "Number of bins in cent fine histograms"};
94
93
Configurable<float> lfinebinCent{"lfinebinCent", 0.0, "lower bin value in cent fine histograms"};
95
94
Configurable<float> hfinebinCent{"hfinebinCent", 80.0, "higher bin value in cent fine histograms"};
96
95
} configbins;
97
96
98
97
Configurable<bool> followpub{"followpub", true, "flag to use alphaZDC"};
99
98
Configurable<bool> useGainCallib{"useGainCallib", false, "use gain calibration"};
100
99
Configurable<bool> useCallibvertex{"useCallibvertex", false, "use calibration for vxy"};
101
-
Configurable<std::string> ConfGainPath{"ConfGainPath", "Users/p/prottay/My/Object/NewPbPbpass4_10092024/gaincallib", "Path to gain calibration"};
102
-
Configurable<std::string> ConfGainPathvxy{"ConfGainPathvxy", "Users/p/prottay/My/Object/swapcoords/PbPbpass4_20112024/recentervert", "Path to gain calibration for vxy"};
100
+
Configurable<std::string> confGainPath{"confGainPath", "Users/p/prottay/My/Object/NewPbPbpass4_10092024/gaincallib", "Path to gain calibration"};
101
+
Configurable<std::string> confGainPathVxy{"confGainPathVxy", "Users/p/prottay/My/Object/swapcoords/PbPbpass4_20112024/recentervert", "Path to gain calibration for vxy"};
103
102
104
103
struct : ConfigurableGroup {
105
104
Configurable<bool> requireRCTFlagChecker{"requireRCTFlagChecker", true, "Check event quality in run condition table"};
0 commit comments