Skip to content

Commit e52612b

Browse files
authored
CCDB: https->http, geo aligned (AliceO2Group#811)
* https->http, geo aligned
1 parent 2841dd5 commit e52612b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

PWGLF/TableProducer/cascadebuilder.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,14 @@ struct cascadeBuilder {
107107
maxSnp = 0.85f; //could be changed later
108108
maxStep = 2.00f; //could be changed later
109109

110-
ccdb->setURL("https://alice-ccdb.cern.ch");
110+
ccdb->setURL("http://alice-ccdb.cern.ch");
111111
ccdb->setCaching(true);
112112
ccdb->setLocalObjectValidityChecking();
113113

114114
auto lut = o2::base::MatLayerCylSet::rectifyPtrFromFile(ccdb->get<o2::base::MatLayerCylSet>("GLO/Param/MatLUT"));
115115

116116
if (!o2::base::GeometryManager::isGeometryLoaded()) {
117-
ccdb->get<TGeoManager>("GLO/Config/Geometry");
117+
ccdb->get<TGeoManager>("GLO/Config/GeometryAligned");
118118
/* it seems this is needed at this level for the material LUT to work properly */
119119
/* but what happens if the run changes while doing the processing? */
120120
constexpr long run3grp_timestamp = (1619781650000 + 1619781529000) / 2;

PWGLF/TableProducer/lambdakzerobuilder.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,14 @@ struct lambdakzeroBuilder {
145145
maxSnp = 0.85f; //could be changed later
146146
maxStep = 2.00f; //could be changed later
147147

148-
ccdb->setURL("https://alice-ccdb.cern.ch");
148+
ccdb->setURL("http://alice-ccdb.cern.ch");
149149
ccdb->setCaching(true);
150150
ccdb->setLocalObjectValidityChecking();
151151

152152
auto lut = o2::base::MatLayerCylSet::rectifyPtrFromFile(ccdb->get<o2::base::MatLayerCylSet>("GLO/Param/MatLUT"));
153153

154154
if (!o2::base::GeometryManager::isGeometryLoaded()) {
155-
ccdb->get<TGeoManager>("GLO/Config/Geometry");
155+
ccdb->get<TGeoManager>("GLO/Config/GeometryAligned");
156156
/* it seems this is needed at this level for the material LUT to work properly */
157157
/* but what happens if the run changes while doing the processing? */
158158
constexpr long run3grp_timestamp = (1619781650000 + 1619781529000) / 2;

0 commit comments

Comments
 (0)