Skip to content

Commit 7b78b46

Browse files
committed
ITS: do not query GRPECS anymore
Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch>
1 parent bf8a402 commit 7b78b46

3 files changed

Lines changed: 3 additions & 6 deletions

File tree

Detectors/ITSMFT/ITS/tracking/src/TrackingInterface.cxx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,6 @@ void ITSTrackingInterface::run(framework::ProcessingContext& pc)
125125

126126
std::uint32_t roFrame = 0;
127127

128-
bool continuous = o2::base::GRPGeomHelper::instance().getGRPECS()->isDetContinuousReadOut(o2::detectors::DetID::ITS);
129-
LOG(info) << "ITSTracker RO: continuous=" << continuous;
130-
131128
if (mOverrideBeamEstimation) {
132129
mTimeFrame->setBeamPosition(mMeanVertex->getX(),
133130
mMeanVertex->getY(),

Detectors/ITSMFT/ITS/workflow/src/ClustererSpec.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void ClustererDPL::updateTimeDependentParams(ProcessingContext& pc)
117117
pc.inputs().get<TopologyDictionary*>("cldict"); // just to trigger the finaliseCCDB
118118
pc.inputs().get<o2::itsmft::DPLAlpideParam<o2::detectors::DetID::ITS>*>("alppar");
119119
pc.inputs().get<o2::itsmft::ClustererParam<o2::detectors::DetID::ITS>*>("cluspar");
120-
mClusterer->setContinuousReadOut(o2::base::GRPGeomHelper::instance().getGRPECS()->isDetContinuousReadOut(o2::detectors::DetID::ITS));
120+
mClusterer->setContinuousReadOut(true);
121121
// settings for the fired pixel overflow masking
122122
const auto& alpParams = o2::itsmft::DPLAlpideParam<o2::detectors::DetID::ITS>::Instance();
123123
const auto& clParams = o2::itsmft::ClustererParam<o2::detectors::DetID::ITS>::Instance();
@@ -179,7 +179,7 @@ DataProcessorSpec getClustererSpec(bool useMC)
179179
inputs.emplace_back("cluspar", "ITS", "CLUSPARAM", 0, Lifetime::Condition, ccdbParamSpec("ITS/Config/ClustererParam"));
180180
inputs.emplace_back("alppar", "ITS", "ALPIDEPARAM", 0, Lifetime::Condition, ccdbParamSpec("ITS/Config/AlpideParam"));
181181
auto ggRequest = std::make_shared<o2::base::GRPGeomRequest>(false, // orbitResetTime
182-
true, // GRPECS=true
182+
false, // GRPECS=true
183183
false, // GRPLHCIF
184184
false, // GRPMagField
185185
false, // askMatLUT

Detectors/ITSMFT/ITS/workflow/src/TrackerSpec.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ DataProcessorSpec getTrackerSpec(bool useMC, bool useGeom, int trgType, Tracking
9393
inputs.emplace_back("itscldict", "ITS", "CLUSDICT", 0, Lifetime::Condition, ccdbParamSpec("ITS/Calib/ClusterDictionary"));
9494
inputs.emplace_back("itsalppar", "ITS", "ALPIDEPARAM", 0, Lifetime::Condition, ccdbParamSpec("ITS/Config/AlpideParam"));
9595
auto ggRequest = std::make_shared<o2::base::GRPGeomRequest>(false, // orbitResetTime
96-
true, // GRPECS=true
96+
false, // GRPECS=true
9797
false, // GRPLHCIF
9898
true, // GRPMagField
9999
true, // askMatLUT

0 commit comments

Comments
 (0)