|
25 | 25 |
|
26 | 26 | #include "GeometryContainer.h" |
27 | 27 |
|
28 | | -#include "ALICE3/Core/DelphesO2TrackSmearer.h" |
| 28 | +#include "ALICE3/Core/FlatTrackSmearer.h" |
29 | 29 | #include "ALICE3/Core/DetLayer.h" |
30 | 30 | #include "ALICE3/Core/FastTracker.h" |
31 | 31 | #include "ALICE3/Core/TrackUtilities.h" |
@@ -346,7 +346,7 @@ struct OnTheFlyTracker { |
346 | 346 | o2::base::Propagator::MatCorrType matCorr = o2::base::Propagator::MatCorrType::USEMatCorrNONE; |
347 | 347 |
|
348 | 348 | // Track smearer array, one per geometry |
349 | | - std::vector<std::unique_ptr<o2::delphes::DelphesO2TrackSmearer>> mSmearer; |
| 349 | + std::vector<std::unique_ptr<o2::delphes::TrackSmearer>> mSmearer; |
350 | 350 |
|
351 | 351 | // For processing and vertexing |
352 | 352 | std::vector<TrackAlice3> tracksAlice3; |
@@ -376,7 +376,7 @@ struct OnTheFlyTracker { |
376 | 376 | mMagneticField = mGeoContainer.getFloatValue(0, "global", "magneticfield"); |
377 | 377 | for (int icfg = 0; icfg < nGeometries; ++icfg) { |
378 | 378 | const std::string histPath = "Configuration_" + std::to_string(icfg) + "/"; |
379 | | - mSmearer.emplace_back(std::make_unique<o2::delphes::DelphesO2TrackSmearer>()); |
| 379 | + mSmearer.emplace_back(std::make_unique<o2::delphes::TrackSmearer>()); |
380 | 380 | mSmearer[icfg]->setCcdbManager(ccdb.operator->()); |
381 | 381 | std::map<std::string, std::string> globalConfiguration = mGeoContainer.getConfiguration(icfg, "global"); |
382 | 382 | if (enablePrimarySmearing) { |
|
0 commit comments