Skip to content

Commit 014f20f

Browse files
mfasDasawenzel
authored andcommitted
[O2-379] Using run2/3 geometry in digitizer workflow
The digitizer workflow was using by mistake the run1 geometry with 10 supermodules (without DCAL) while the simulation was using the run2/3 geometry. For the moment it is hard coded - to be changed when it is clear how to dynamically handle this according to the run numbers.
1 parent c446f2f commit 014f20f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Steer/DigitizerWorkflow/src/EMCALDigitizerSpec.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,9 @@ DataProcessorSpec getEMCALDigitizerSpec(int channel)
154154
if (!gGeoManager) {
155155
o2::Base::GeometryManager::loadGeometry();
156156
}
157-
auto geom = o2::EMCAL::Geometry::GetInstance("EMCAL_COMPLETE", "Geant4", "EMV-EMCAL");
157+
// run 3 geometry == run 2 geometry for EMCAL
158+
// to be adapted with run numbers at a later stage
159+
auto geom = o2::EMCAL::Geometry::GetInstance("EMCAL_COMPLETE12SMV1_DCAL_8SM", "Geant4", "EMV-EMCAL");
158160
// init digitizer
159161
digitizer->setGeometry(geom);
160162
digitizer->init();

0 commit comments

Comments
 (0)