@@ -59,25 +59,34 @@ class stat_plot_tool {
5959
6060 // / @brief fill the cache
6161 // /
62+ // / @tparam track_candidate_backend_t the backend type for @c find_res
63+ // /
6264 // / @param cache the cache for statistics plots
6365 // / @param find_res track finding result
64- template <typename T>
65- void fill (stat_plot_cache& cache,
66- const edm::track_candidate<T>& find_res) const ;
66+ template <typename track_candidate_backend_t >
67+ void fill (
68+ stat_plot_cache& cache,
69+ const edm::track_candidate<track_candidate_backend_t >& find_res) const ;
6770
6871 // / @brief fill the cache
6972 // /
73+ // / @tparam track_fit_backend_t the backend type for @c fit_res
74+ // /
7075 // / @param cache the cache for statistics plots
7176 // / @param fit_res fitting information that contains statistics
72- template <typename T>
73- void fill (stat_plot_cache& cache, const edm::track_fit<T>& fit_res) const ;
77+ template <typename track_fit_backend_t >
78+ void fill (stat_plot_cache& cache,
79+ const edm::track_fit<track_fit_backend_t >& fit_res) const ;
7480
7581 // / @brief fill the cache
7682 // /
83+ // / @tparam track_state_backend_t the backend type for @c trk_state
84+ // /
7785 // / @param cache the cache for statistics plots
7886 // / @param trk_state track state at local measurements
79- template <typename T>
80- void fill (stat_plot_cache& cache, const edm::track_state<T>& trk_state,
87+ template <typename track_state_backend_t >
88+ void fill (stat_plot_cache& cache,
89+ const edm::track_state<track_state_backend_t >& trk_state,
8190 const measurement_collection_types::host& measurements) const ;
8291
8392 // / @brief fill the cache
0 commit comments