@@ -129,9 +129,9 @@ struct tableDiffWake {
129129
130130 HistogramRegistry histos{" histos" , {}, OutputObjHandlingPolicy::AnalysisObject};
131131 Configurable<int > nBinsPt{" nBinsPt" , 100 , " N bins in pT histo" };
132- Configurable<double > ptThresh{" pT_thresh " , 20.0 , " pT threshold" };
133- Configurable<float > centMax{" cent_max " , 10 , " centrality" };
134- Configurable<float > zVertCut{" z_vert_cut " , 10.0 , " z_vertex cut" };
132+ Configurable<double > ptThresh{" ptThresh " , 20.0 , " pT threshold" };
133+ Configurable<float > centMax{" centMax " , 10 , " centrality" };
134+ Configurable<float > zVertCut{" zVertCut " , 10.0 , " z_vertex cut" };
135135
136136 Produces<o2::aod::TableCol> testcol;
137137 Produces<o2::aod::TableTrack> testtrack;
@@ -147,10 +147,10 @@ struct tableDiffWake {
147147 histos.add (" pTHistogram" , " pTHistogram" , kTH1F , {axispT});
148148 }
149149
150- using bcs = aod::BCs;
150+ using Bcs = aod::BCs;
151151 void process (soa::Join<aod::Collisions, aod::EvSels, aod::CentFT0Cs, aod::TPCMults, aod::QvectorFT0Cs>::iterator const & col,
152152 soa::Join<aod::TracksIU, aod::TracksExtra, aod::TracksDCA, aod::TrackSelection> const & tracks,
153- bcs const &)
153+ Bcs const &)
154154 {
155155 const float maxMomentum = 173.0 ;
156156
@@ -167,7 +167,7 @@ struct tableDiffWake {
167167 return ;
168168
169169 // ------ Get Run number ---------------------
170- auto bc = col.bc_as <bcs >();
170+ auto bc = col.bc_as <Bcs >();
171171 int run = bc.runNumber ();
172172 // ------------ EP ---------------------------
173173 double ep2 = 0.0 ;
0 commit comments