File tree Expand file tree Collapse file tree 2 files changed +19
-7
lines changed
Expand file tree Collapse file tree 2 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -380,9 +380,9 @@ struct tpcPid {
380380 auto stop_network_eval = std::chrono::high_resolution_clock::now ();
381381 duration_network += std::chrono::duration<float , std::ratio<1 , 1000000000 >>(stop_network_eval - start_network_eval).count ();
382382
383- for (uint64_t k = 0 ; k < (in_batch_counter * output_dimensions); k += output_dimensions) {
383+ for (uint64_t i = 0 ; i < (in_batch_counter * output_dimensions); i += output_dimensions) {
384384 for (int j = 0 ; j < output_dimensions; j++) {
385- network_prediction[k + j + fill_shift] = output_network[k + j];
385+ network_prediction[i + j + fill_shift] = output_network[i + j];
386386 }
387387 }
388388 counter_track_props = 0 ;
Original file line number Diff line number Diff line change 1616#ifndef COMMON_TOOLS_TRACKPROPAGATIONMODULE_H_
1717#define COMMON_TOOLS_TRACKPROPAGATIONMODULE_H_
1818
19- #include " TableHelper.h"
20-
19+ #include " Common/Core/ TableHelper.h"
20+ # include " Common/DataModel/TrackSelectionTables.h "
2121#include " Common/Tools/TrackTuner.h"
2222
23- #include " Framework/AnalysisDataModel.h"
24- #include " Framework/Configurable.h"
25- #include " Framework/HistogramSpec.h"
23+ #include < CommonConstants/GeomConstants.h>
24+ #include < DetectorsBase/Propagator.h>
25+ #include < Framework/AnalysisDataModel.h>
26+ #include < Framework/AnalysisHelpers.h>
27+ #include < Framework/Configurable.h>
28+ #include < Framework/DataTypes.h>
29+ #include < Framework/HistogramRegistry.h>
30+ #include < Framework/HistogramSpec.h>
31+ #include < Framework/Logger.h>
32+ #include < ReconstructionDataFormats/DCA.h>
33+ #include < ReconstructionDataFormats/TrackParametrization.h>
34+ #include < ReconstructionDataFormats/TrackParametrizationWithError.h>
35+
36+ #include < TH1.h>
37+ #include < TH2.h>
2638
2739#include < array>
2840#include < cmath>
You can’t perform that action at this time.
0 commit comments