Skip to content

Commit fe5f473

Browse files
authored
Update onTheFlyDetectorGeometryProvider.cxx
1 parent 38ec383 commit fe5f473

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ struct OnTheFlyDetectorGeometryProvider {
3636
{
3737
ccdb->setURL("http://alice-ccdb.cern.ch");
3838
ccdb->setTimestamp(-1);
39-
}
40-
void run(o2::framework::ProcessingContext& pc)
41-
{
4239
o2::fastsim::GeometryContainer geometryContainer; // Checking that the geometry files can be accessed and loaded
4340
LOG(info) << "On-the-fly detector geometry provider running.";
4441
if (detectorConfiguration.value.empty()) {
@@ -78,15 +75,11 @@ struct OnTheFlyDetectorGeometryProvider {
7875
LOG(fatal) << "Inconsistent magnetic field values between configurations 0 and " << icfg << ": " << mMagneticField << " vs " << cfgBfield;
7976
}
8077
}
81-
82-
pc.services().get<o2::framework::ControlService>().endOfStream();
83-
pc.services().get<o2::framework::ControlService>().readyToQuit(o2::framework::QuitRequest::Me);
8478
}
8579

86-
void processDummy(o2::aod::McCollisions const&)
80+
void process(o2::aod::McCollisions const&)
8781
{
8882
}
89-
PROCESS_SWITCH(OnTheFlyDetectorGeometryProvider, processDummy, "process dummy", false);
9083
};
9184

9285
// #define VERIFY_ALICE3

0 commit comments

Comments
 (0)