99// granted to it by virtue of its status as an Intergovernmental Organization
1010// or submit itself to any jurisdiction.
1111
12- #ifndef COMMON_TOOLS_TRACKPROPAGATIONFUNCTIONS_H_
13- #define COMMON_TOOLS_TRACKPROPAGATIONFUNCTIONS_H_
12+ // / \file TrackPropagationModule.h
13+ // / \brief track propagation module functionality to be used in tasks
14+ // / \author ALICE
15+
16+ #ifndef COMMON_TOOLS_TRACKPROPAGATIONMODULE_H_
17+ #define COMMON_TOOLS_TRACKPROPAGATIONMODULE_H_
1418
1519#include < cstdlib>
1620#include < cmath>
@@ -36,7 +40,7 @@ namespace o2
3640namespace common
3741{
3842
39- struct trackPropagationProducts : o2::framework::ProducesGroup {
43+ struct TrackPropagationProducts : o2::framework::ProducesGroup {
4044 o2::framework::Produces<aod::StoredTracks> tracksParPropagated;
4145 o2::framework::Produces<aod::TracksExtension> tracksParExtensionPropagated;
4246 o2::framework::Produces<aod::StoredTracksCov> tracksParCovPropagated;
@@ -46,7 +50,7 @@ struct trackPropagationProducts : o2::framework::ProducesGroup {
4650 o2::framework::Produces<aod::TrackTunerTable> tunertable;
4751};
4852
49- struct trackPropagationConfigurables : o2::framework::ConfigurableGroup {
53+ struct TrackPropagationConfigurables : o2::framework::ConfigurableGroup {
5054 std::string prefix = " trackPropagation" ;
5155 o2::framework::Configurable<float > minPropagationRadius{" minPropagationDistance" , o2::constants::geom::XTPCInnerRef + 0.1 , " Only tracks which are at a smaller radius will be propagated, defaults to TPC inner wall" };
5256 // for TrackTuner only (MC smearing)
@@ -136,7 +140,7 @@ class TrackPropagationModule
136140 }
137141 }
138142
139- for (auto & track : tracks) {
143+ for (const auto & track : tracks) {
140144 if (fillTracksCov) {
141145 if (fillTracksDCA || fillTracksDCACov) {
142146 mDcaInfoCov .set (999 , 999 , 999 , 999 , 999 );
@@ -250,4 +254,4 @@ class TrackPropagationModule
250254} // namespace common
251255} // namespace o2
252256
253- #endif // COMMON_TOOLS_TRACKPROPAGATIONFUNCTIONS_H_
257+ #endif // COMMON_TOOLS_TRACKPROPAGATIONMODULE_H_
0 commit comments