@@ -82,6 +82,7 @@ struct SingleTrackQC {
8282 Configurable<bool > cfgUseDCAxy{" cfgUseDCAxy" , false , " flag to use DCAxy, instead of DCA3D" };
8383
8484 ConfigurableAxis ConfPtlBins{" ConfPtlBins" , {VARIABLE_WIDTH, 0.00 , 0.05 , 0.10 , 0.15 , 0.20 , 0.30 , 0.40 , 0.50 , 0.60 , 0.70 , 0.80 , 0.90 , 1.00 , 1.10 , 1.20 , 1.30 , 1.40 , 1.50 , 1.60 , 1.70 , 1.80 , 1.90 , 2.00 , 2.50 , 3.00 , 3.50 , 4.00 , 4.50 , 5.00 , 6.00 , 7.00 , 8.00 , 9.00 , 10.00 }, " pTl bins for output histograms" };
85+ ConfigurableAxis ConfDCABins{" ConfDCABins" , {VARIABLE_WIDTH, 0.0 , 0.1 , 0.2 , 0.3 , 0.4 , 0.5 , 0.6 , 0.7 , 0.8 , 0.9 , 1.0 , 1.1 , 1.2 , 1.3 , 1.4 , 1.5 , 1.6 , 1.7 , 1.8 , 1.9 , 2.0 , 2.5 , 3.0 , 3.5 , 4.0 , 4.5 , 5.0 , 6.0 , 7.0 , 8.0 , 9.0 , 10.0 }, " DCA bins for output histograms" };
8586
8687 EMEventCut fEMEventCut ;
8788 struct : ConfigurableGroup {
@@ -199,7 +200,7 @@ struct SingleTrackQC {
199200 if (cfgUseDCAxy) {
200201 dca_axis_title = " DCA_{e}^{XY} (#sigma)" ;
201202 }
202- const AxisSpec axis_dca{{ 0.0 , 0.1 , 0.2 , 0.3 , 0.4 , 0.5 , 0.6 , 0.7 , 0.8 , 0.9 , 1.0 , 1.1 , 1.2 , 1.3 , 1.4 , 1.5 , 1.6 , 1.7 , 1.8 , 1.9 , 2.0 , 2.5 , 3.0 , 3.5 , 4.0 , 4.5 , 5.0 , 6.0 , 7.0 , 8.0 , 9.0 , 10.0 } , dca_axis_title};
203+ const AxisSpec axis_dca{ConfDCABins , dca_axis_title};
203204
204205 // track info
205206 fRegistry .add (" Track/positive/hs" , " rec. single electron" , kTHnSparseD , {axis_pt, axis_eta, axis_phi, axis_dca}, true );
@@ -235,7 +236,7 @@ struct SingleTrackQC {
235236 const AxisSpec axis_pt{ConfPtlBins, " p_{T,#mu} (GeV/c)" };
236237 const AxisSpec axis_eta{25 , -4.5 , -2.0 , " #eta_{#mu}" };
237238 const AxisSpec axis_phi{36 , 0.0 , 2 * M_PI, " #varphi_{#mu} (rad.)" };
238- const AxisSpec axis_dca{{ 0.0 , 0.1 , 0.2 , 0.3 , 0.4 , 0.5 , 0.6 , 0.7 , 0.8 , 0.9 , 1.0 , 1.1 , 1.2 , 1.3 , 1.4 , 1.5 , 1.6 , 1.7 , 1.8 , 1.9 , 2.0 , 2.5 , 3.0 , 3.5 , 4.0 , 4.5 , 5.0 , 6.0 , 7.0 , 8.0 , 9.0 , 10.0 } , " DCA_{#mu}^{XY} (#sigma)" };
239+ const AxisSpec axis_dca{ConfDCABins , " DCA_{#mu}^{XY} (#sigma)" };
239240
240241 // track info
241242 fRegistry .add (" Track/positive/hs" , " rec. single muon" , kTHnSparseD , {axis_pt, axis_eta, axis_phi, axis_dca}, true );
0 commit comments